diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-12 17:28:36 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-12 17:28:36 +0000 |
commit | 4bb9adcff1be7ccbb6b8fab40cd68b3808544edc (patch) | |
tree | 0bd6510b4dba1d0100d487305415fcb179a5cb48 | |
parent | 3d05e078ee40074a205118f9e48033cfaf390fe7 (diff) | |
download | ffmpeg-4bb9adcff1be7ccbb6b8fab40cd68b3808544edc.tar.gz |
10000l PIX_FMT_MONOWHITE check was really a || 1.
Thats what happens when one does not do the full set of tests before each commit
and just quickly goes over the diff thinking, "hey its a trivial change".
Originally committed as revision 27588 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale_template.c b/libswscale/swscale_template.c index 3ff9c2bbe2..1dec7b8751 100644 --- a/libswscale/swscale_template.c +++ b/libswscale/swscale_template.c @@ -2675,7 +2675,7 @@ inline static void RENAME(hcscale)(SwsContext *c, uint16_t *dst, long dstWidth, src1= formatConvBuffer; src2= formatConvBuffer+VOFW; } - else if (isGray(srcFormat) || srcFormat==PIX_FMT_MONOBLACK || PIX_FMT_MONOWHITE) + else if (isGray(srcFormat) || srcFormat==PIX_FMT_MONOBLACK || srcFormat==PIX_FMT_MONOWHITE) { return; } |