diff --git a/libswscale/swscale-example.c b/libswscale/swscale-example.c index 1402d44a17..8637b9f7ff 100644 --- a/libswscale/swscale-example.c +++ b/libswscale/swscale-example.c @@ -183,9 +183,8 @@ end: static void selfTest(uint8_t *ref[4], int refStride[4], int w, int h) { const int flags[] = { SWS_FAST_BILINEAR, -// SWS_BILINEAR, SWS_BICUBIC, -// SWS_X , SWS_POINT , SWS_AREA, 0 }; - 0 }; + SWS_BILINEAR, SWS_BICUBIC, + SWS_X , SWS_POINT , SWS_AREA, 0 }; const int srcW = w; const int srcH = h; const int dstW[] = { srcW - srcW/3, srcW, srcW + srcW/3, 0 };