Commit f1084cb0 authored by Ramiro Polla's avatar Ramiro Polla

swscale-test: always use bilinear scaler to get output for SSD

Originally committed as revision 32256 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
parent efec9ac8
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment