Commit bc84636c authored by michael's avatar michael

dithering info wasnt displayed


git-svn-id: file:///var/local/repositories/mplayer/trunk/postproc@3346 b3059339-0415-0410-9bf9-f77b7e298cf2
parent 0ff956a1
...@@ -2364,8 +2364,8 @@ if(!canMMX2BeUsed && lumXInc <= 0x10000 && (srcW&15)==0 && sws_flags==SWS_FAST_B ...@@ -2364,8 +2364,8 @@ if(!canMMX2BeUsed && lumXInc <= 0x10000 && (srcW&15)==0 && sws_flags==SWS_FAST_B
if(firstTime) if(firstTime)
{ {
#ifdef DITHER1X #if defined (DITHER1XBPP) && defined (HAVE_MMX)
char *dither= "dithered"; char *dither= " dithered";
#else #else
char *dither= ""; char *dither= "";
#endif #endif
...@@ -2379,9 +2379,9 @@ if(firstTime) ...@@ -2379,9 +2379,9 @@ if(firstTime)
fprintf(stderr, "SwScaler: ehh flags invalid?! "); fprintf(stderr, "SwScaler: ehh flags invalid?! ");
if(dstbpp==15) if(dstbpp==15)
fprintf(stderr, "with %s BGR15 output ", dither); fprintf(stderr, "with%s BGR15 output ", dither);
else if(dstbpp==16) else if(dstbpp==16)
fprintf(stderr, "with %s BGR16 output ", dither); fprintf(stderr, "with%s BGR16 output ", dither);
else if(dstbpp==24) else if(dstbpp==24)
fprintf(stderr, "with BGR24 output "); fprintf(stderr, "with BGR24 output ");
else if(dstbpp==32) else if(dstbpp==32)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment