Browse Source

looks better

Originally committed as revision 3731 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
tags/v0.5
Johannes Feigl 24 years ago
parent
commit
51fdf2de1b
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      postproc/swscale_template.c

+ 4
- 4
postproc/swscale_template.c View File

@@ -2213,13 +2213,13 @@ if(firstTime)
char *dither= ""; char *dither= "";
#endif #endif
if(sws_flags==SWS_FAST_BILINEAR) if(sws_flags==SWS_FAST_BILINEAR)
fprintf(stderr, "SwScaler: FAST_BILINEAR scaler ");
fprintf(stderr, "\nSwScaler: FAST_BILINEAR scaler ");
else if(sws_flags==SWS_BILINEAR) else if(sws_flags==SWS_BILINEAR)
fprintf(stderr, "SwScaler: BILINEAR scaler ");
fprintf(stderr, "\nSwScaler: BILINEAR scaler ");
else if(sws_flags==SWS_BICUBIC) else if(sws_flags==SWS_BICUBIC)
fprintf(stderr, "SwScaler: BICUBIC scaler ");
fprintf(stderr, "\nSwScaler: BICUBIC scaler ");
else else
fprintf(stderr, "SwScaler: ehh flags invalid?! ");
fprintf(stderr, "\nSwScaler: ehh flags invalid?! ");


if(dstbpp==15) if(dstbpp==15)
fprintf(stderr, "with%s BGR15 output ", dither); fprintf(stderr, "with%s BGR15 output ", dither);


Loading…
Cancel
Save