Browse Source

swscale-example: Use SWS_BILINEAR instead of hardcoded value.

Originally committed as revision 29547 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.6
Ramiro Polla 16 years ago
parent
commit
7da35acdab
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libswscale/swscale-example.c

+ 1
- 1
libswscale/swscale-example.c View File

@@ -225,7 +225,7 @@ int main(int argc, char **argv)
struct SwsContext *sws;
AVLFG rand;

sws= sws_getContext(W/12, H/12, PIX_FMT_RGB32, W, H, PIX_FMT_YUVA420P, 2, NULL, NULL, NULL);
sws= sws_getContext(W/12, H/12, PIX_FMT_RGB32, W, H, PIX_FMT_YUVA420P, SWS_BILINEAR, NULL, NULL, NULL);

av_lfg_init(&rand, 1);



Loading…
Cancel
Save