changeset 32172:28fcee4c83ad

swscale-test: always use bilinear scaler to get output for SSD
author ramiro
date Thu, 16 Sep 2010 00:41:08 +0000
parents d15f1bca9ae0
children 2a28dda68bbc
files libswscale/swscale-test.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libswscale/swscale-test.c	Wed Sep 15 19:52:37 2010 +0000
+++ b/libswscale/swscale-test.c	Thu Sep 16 00:41:08 2010 +0000
@@ -194,7 +194,7 @@
                 goto end;
             }
         }
-        outContext= sws_getContext(dstW, dstH, dstFormat, w, h, PIX_FMT_YUVA420P, flags, NULL, NULL, NULL);
+        outContext= sws_getContext(dstW, dstH, dstFormat, w, h, PIX_FMT_YUVA420P, SWS_BILINEAR, NULL, NULL, NULL);
         if (!outContext) {
             fprintf(stderr, "Failed to get %s ---> %s\n",
                     av_pix_fmt_descriptors[dstFormat].name,