diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2001-12-06 01:23:23 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2001-12-06 01:23:23 +0000 |
commit | f014740a85fa359eb37b4c2c1b897aa0520d79cc (patch) | |
tree | 0655fb57a3c9d420f001189bd005d22982ebe053 | |
parent | c1b0bfb477b274ebd6160d8771b1b41de5aaa1c9 (diff) | |
download | ffmpeg-f014740a85fa359eb37b4c2c1b897aa0520d79cc.tar.gz |
dithering info wasnt displayed
Originally committed as revision 3346 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
-rw-r--r-- | postproc/swscale_template.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/postproc/swscale_template.c b/postproc/swscale_template.c index be0962495e..6191d672f0 100644 --- a/postproc/swscale_template.c +++ b/postproc/swscale_template.c @@ -2364,8 +2364,8 @@ if(!canMMX2BeUsed && lumXInc <= 0x10000 && (srcW&15)==0 && sws_flags==SWS_FAST_B if(firstTime) { -#ifdef DITHER1X - char *dither= "dithered"; +#if defined (DITHER1XBPP) && defined (HAVE_MMX) + char *dither= " dithered"; #else char *dither= ""; #endif @@ -2379,9 +2379,9 @@ if(firstTime) fprintf(stderr, "SwScaler: ehh flags invalid?! "); if(dstbpp==15) - fprintf(stderr, "with %s BGR15 output ", dither); + fprintf(stderr, "with%s BGR15 output ", dither); else if(dstbpp==16) - fprintf(stderr, "with %s BGR16 output ", dither); + fprintf(stderr, "with%s BGR16 output ", dither); else if(dstbpp==24) fprintf(stderr, "with BGR24 output "); else if(dstbpp==32) |