summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-06 01:23:23 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-06 01:23:23 +0000
commit0342b107bcc3195dddba13fb291fd27834c7d618 (patch)
treefa2f0e97ac0725fb1c177d3e68f0dd21a9d98d46 /postproc
parentd8651ac9ff6c9fb670fa6c3f73c651fdc81b9dc0 (diff)
downloadmpv-0342b107bcc3195dddba13fb291fd27834c7d618.tar.bz2
mpv-0342b107bcc3195dddba13fb291fd27834c7d618.tar.xz
dithering info wasnt displayed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3346 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/swscale_template.c8
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)