From f1084cb0cd439369f7e07974aebad71386a72ab6 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Thu, 16 Sep 2010 00:41:08 +0000 Subject: swscale-test: always use bilinear scaler to get output for SSD Originally committed as revision 32256 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale --- libswscale/swscale-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswscale/swscale-test.c b/libswscale/swscale-test.c index 1ea240d..3562e98 100644 --- a/libswscale/swscale-test.c +++ b/libswscale/swscale-test.c @@ -194,7 +194,7 @@ static int doTest(uint8_t *ref[4], int refStride[4], int w, int h, 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, -- cgit v1.1