diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-12 18:05:57 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-12 18:05:57 +0000 |
commit | 78454dfc017af59f92ad30fc46e25a5a846f90c1 (patch) | |
tree | f87901b71e26de0f3adefe5b863b5dbdaa000554 /libswscale | |
parent | 6c80eb1626cb2007072400a79c0505f4a17eabe6 (diff) | |
download | ffmpeg-78454dfc017af59f92ad30fc46e25a5a846f90c1.tar.gz |
Fix another 1000l bug in the mono input code.
Originally committed as revision 27590 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale_template.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/swscale_template.c b/libswscale/swscale_template.c index 1dec7b8751..bccead88df 100644 --- a/libswscale/swscale_template.c +++ b/libswscale/swscale_template.c @@ -2148,8 +2148,8 @@ static inline void RENAME(mono2Y)(uint8_t *dst, uint8_t *src, long width, int fo int i, j; for (i=0; i<width/8; i++){ int d= format == PIX_FMT_MONOBLACK ? src[i] : ~src[i]; - for(j=7; j>=0; j--) - dst[i]= ((d>>j)&1)*255; + for(j=0; j<8; j++) + dst[8*i+j]= ((d>>(7-j))&1)*255; } } |