Mercurial > mplayer.hg
changeset 27556:ff8cabc7f18f
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 it is a trivial change".
author | michael |
---|---|
date | Fri, 12 Sep 2008 17:28:36 +0000 |
parents | bf2638aa89b4 |
children | a594051dc796 |
files | libswscale/swscale_template.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libswscale/swscale_template.c Fri Sep 12 16:46:38 2008 +0000 +++ b/libswscale/swscale_template.c Fri Sep 12 17:28:36 2008 +0000 @@ -2675,7 +2675,7 @@ 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; }