diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2010-09-16 00:41:08 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2010-09-16 00:41:08 +0000 |
commit | f1084cb0cd439369f7e07974aebad71386a72ab6 (patch) | |
tree | 89068c56674ca2f83322a5d8ecc67f8ff397d927 /libswscale | |
parent | efec9ac8a9a05e309e8f46f74a24e0278fc7a997 (diff) | |
download | ffmpeg-f1084cb0cd439369f7e07974aebad71386a72ab6.tar.gz |
swscale-test: always use bilinear scaler to get output for SSD
Originally committed as revision 32256 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale-test.c b/libswscale/swscale-test.c index 1ea240d387..3562e9827d 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, |