diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-02-15 17:29:01 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-02-15 17:29:01 +0000 |
commit | 9902f4e2e49e9bfb915df477beb1a17e70b6d0ff (patch) | |
tree | 2592fd6132e4db3288a85a5ca5189f86ba817ce6 /postproc | |
parent | 4e61e21c32f8fcaae7834ea0fee058cc53206427 (diff) | |
download | ffmpeg-9902f4e2e49e9bfb915df477beb1a17e70b6d0ff.tar.gz |
1000l
Originally committed as revision 9435 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/swscale_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postproc/swscale_template.c b/postproc/swscale_template.c index bbb1d9f120..b108fb1529 100644 --- a/postproc/swscale_template.c +++ b/postproc/swscale_template.c @@ -1696,7 +1696,7 @@ static inline void RENAME(bgr24ToY)(uint8_t *dst, uint8_t *src, int width) int g= src[i*3+1]; int r= src[i*3+2]; - dst[i]= ((RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1)) )>>RGB2YUV_SHIFT) + dst[i]= ((RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1)) )>>RGB2YUV_SHIFT); } #endif } |