comparison postproc/swscale_template.c @ 3345:20065c9b0f09

dithering info wasnt displayed
author michael
date Thu, 06 Dec 2001 01:23:23 +0000
parents e87c59969d17
children 64121e8a43f5
comparison
equal deleted inserted replaced
3344:e87c59969d17 3345:20065c9b0f09
2362 } 2362 }
2363 #endif 2363 #endif
2364 2364
2365 if(firstTime) 2365 if(firstTime)
2366 { 2366 {
2367 #ifdef DITHER1X 2367 #if defined (DITHER1XBPP) && defined (HAVE_MMX)
2368 char *dither= "dithered"; 2368 char *dither= " dithered";
2369 #else 2369 #else
2370 char *dither= ""; 2370 char *dither= "";
2371 #endif 2371 #endif
2372 if(sws_flags==SWS_FAST_BILINEAR) 2372 if(sws_flags==SWS_FAST_BILINEAR)
2373 fprintf(stderr, "SwScaler: FAST_BILINEAR scaler "); 2373 fprintf(stderr, "SwScaler: FAST_BILINEAR scaler ");
2377 fprintf(stderr, "SwScaler: BICUBIC scaler "); 2377 fprintf(stderr, "SwScaler: BICUBIC scaler ");
2378 else 2378 else
2379 fprintf(stderr, "SwScaler: ehh flags invalid?! "); 2379 fprintf(stderr, "SwScaler: ehh flags invalid?! ");
2380 2380
2381 if(dstbpp==15) 2381 if(dstbpp==15)
2382 fprintf(stderr, "with %s BGR15 output ", dither); 2382 fprintf(stderr, "with%s BGR15 output ", dither);
2383 else if(dstbpp==16) 2383 else if(dstbpp==16)
2384 fprintf(stderr, "with %s BGR16 output ", dither); 2384 fprintf(stderr, "with%s BGR16 output ", dither);
2385 else if(dstbpp==24) 2385 else if(dstbpp==24)
2386 fprintf(stderr, "with BGR24 output "); 2386 fprintf(stderr, "with BGR24 output ");
2387 else if(dstbpp==32) 2387 else if(dstbpp==32)
2388 fprintf(stderr, "with BGR32 output "); 2388 fprintf(stderr, "with BGR32 output ");
2389 else if(dstbpp==12) 2389 else if(dstbpp==12)