100l in YUVA_IN macro: missing () caused horrible artefacts in blend_subrect

when subrect y was odd.

Originally committed as revision 10027 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2007-08-09 18:58:35 +00:00
parent 0a8cd69607
commit 57cf99f2b7
1 changed files with 1 additions and 1 deletions

View File

@ -407,7 +407,7 @@ void fill_border(VideoState *s, int x, int y, int w, int h, int color)
#define YUVA_IN(y, u, v, a, s, pal)\
{\
unsigned int val = ((const uint32_t *)(pal))[*(const uint8_t*)s];\
unsigned int val = ((const uint32_t *)(pal))[*(const uint8_t*)(s)];\
a = (val >> 24) & 0xff;\
y = (val >> 16) & 0xff;\
u = (val >> 8) & 0xff;\