diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-11 14:47:18 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-11 14:47:18 +0000 |
commit | e09d7eef375918fd4218ffb7e0d5c182b3038cb3 (patch) | |
tree | 8f869cbbddbce89baccc60024e744fb08c6c5a0c /libswscale/swscale_template.c | |
parent | 8e7ba004edd5c50fba81f457f5630d8bc290089f (diff) | |
download | ffmpeg-e09d7eef375918fd4218ffb7e0d5c182b3038cb3.tar.gz |
Fix typo that lead to averaging of the same pixel in rgb24ToUV_half().
Originally committed as revision 27582 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale_template.c')
-rw-r--r-- | libswscale/swscale_template.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/swscale_template.c b/libswscale/swscale_template.c index a52dfd55d9..c7f278bb89 100644 --- a/libswscale/swscale_template.c +++ b/libswscale/swscale_template.c @@ -2109,9 +2109,9 @@ static inline void RENAME(rgb24ToUV_half)(uint8_t *dstU, uint8_t *dstV, uint8_t assert(src1==src2); for (i=0; i<width; i++) { - int r= src1[6*i + 0] + src1[6*i + 0]; - int g= src1[6*i + 1] + src1[6*i + 1]; - int b= src1[6*i + 2] + src1[6*i + 2]; + int r= src1[6*i + 0] + src1[6*i + 3]; + int g= src1[6*i + 1] + src1[6*i + 4]; + int b= src1[6*i + 2] + src1[6*i + 5]; dstU[i]= (RU*r + GU*g + BU*b + (257<<RGB2YUV_SHIFT))>>(RGB2YUV_SHIFT+1); dstV[i]= (RV*r + GV*g + BV*b + (257<<RGB2YUV_SHIFT))>>(RGB2YUV_SHIFT+1); |