projects
/
mplayer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3fe4db
)
Remove extraneous braces.
author
greg
<greg@b3059339-0415-0410-9bf9-f77b7e298cf2>
Sun, 8 Mar 2009 15:30:40 +0000
(15:30 +0000)
committer
greg
<greg@b3059339-0415-0410-9bf9-f77b7e298cf2>
Sun, 8 Mar 2009 15:30:40 +0000
(15:30 +0000)
git-svn-id: svn://git.mplayerhq.hu/mplayer/trunk@28892
b3059339
-0415-0410-9bf9-
f77b7e298cf2
libass/ass_render.c
patch
|
blob
|
history
diff --git
a/libass/ass_render.c
b/libass/ass_render.c
index
b46bc9e
..
dec08e5
100644
(file)
--- a/
libass/ass_render.c
+++ b/
libass/ass_render.c
@@
-446,12
+446,12
@@
static void render_overlap(ass_image_t** last_tail, ass_image_t** tail, bitmap_h
bottom = ((ay+ah) < (by+bh)) ? (ay+ah) : (by+bh);
if ((right <= left) || (bottom <= top))
return;
- old_left = left-
(ax)
;
- old_top = top-
(ay)
;
+ old_left = left-
ax
;
+ old_top = top-
ay
;
w = right-left;
h = bottom-top;
- cur_left = left-
(bx)
;
- cur_top = top-
(by)
;
+ cur_left = left-
bx
;
+ cur_top = top-
by
;
// Query cache
memcpy(&hk.a, last_hash, sizeof(*last_hash));