Mercurial > mplayer.hg
changeset 3345:20065c9b0f09
dithering info wasnt displayed
author | michael |
---|---|
date | Thu, 06 Dec 2001 01:23:23 +0000 |
parents | e87c59969d17 |
children | 54b89f7c055c |
files | postproc/swscale_template.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/postproc/swscale_template.c Thu Dec 06 00:10:42 2001 +0000 +++ b/postproc/swscale_template.c Thu Dec 06 01:23:23 2001 +0000 @@ -2364,8 +2364,8 @@ if(firstTime) { -#ifdef DITHER1X - char *dither= "dithered"; +#if defined (DITHER1XBPP) && defined (HAVE_MMX) + char *dither= " dithered"; #else char *dither= ""; #endif @@ -2379,9 +2379,9 @@ 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)