diff options
author | Alan Curry <pacman@world.std.com> | 2006-02-16 12:52:09 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-02-16 12:52:09 +0000 |
commit | 999bbe8367d2688cfec6aa766b3d96a53be9b6cd (patch) | |
tree | 00ae806f181f544782b532230f1dfd3d51841e3d | |
parent | db8a64cba0ae8ae9d0d7c0b8a7801996ed2c958e (diff) | |
download | ffmpeg-999bbe8367d2688cfec6aa766b3d96a53be9b6cd.tar.gz |
make swscale-example compile patch by (Alan Curry <pacman TheWorld com>)
Originally committed as revision 17632 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
-rw-r--r-- | postproc/swscale-example.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/postproc/swscale-example.c b/postproc/swscale-example.c index 15a3545f3c..f8e0ef4e8e 100644 --- a/postproc/swscale-example.c +++ b/postproc/swscale-example.c @@ -90,9 +90,9 @@ static void doTest(uint8_t *ref[3], int refStride[3], int w, int h, int srcForma out[i]= (uint8_t*) malloc(refStride[i]*h); } - srcContext= sws_getContext(w, h, IMGFMT_YV12, srcW, srcH, srcFormat, flags, NULL, NULL); - dstContext= sws_getContext(srcW, srcH, srcFormat, dstW, dstH, dstFormat, flags, NULL, NULL); - outContext= sws_getContext(dstW, dstH, dstFormat, w, h, IMGFMT_YV12, flags, NULL, NULL); + srcContext= sws_getContext(w, h, IMGFMT_YV12, srcW, srcH, srcFormat, flags, NULL, NULL, NULL); + dstContext= sws_getContext(srcW, srcH, srcFormat, dstW, dstH, dstFormat, flags, NULL, NULL, NULL); + outContext= sws_getContext(dstW, dstH, dstFormat, w, h, IMGFMT_YV12, flags, NULL, NULL, NULL); if(srcContext==NULL ||dstContext==NULL ||outContext==NULL){ printf("Failed allocating swsContext\n"); goto end; @@ -139,7 +139,7 @@ static void doTest(uint8_t *ref[3], int refStride[3], int w, int h, int srcForma } } -void mp_msg_c( int x, const char *format, ... ){ +void mp_msg( int x, int y, const char *format, ... ){ va_list va; va_start(va, format); vfprintf(stderr, format, va); @@ -192,7 +192,7 @@ int main(int argc, char **argv){ int x, y; struct SwsContext *sws; - sws= sws_getContext(W/12, H/12, IMGFMT_BGR32, W, H, IMGFMT_YV12, 2, NULL, NULL); + sws= sws_getContext(W/12, H/12, IMGFMT_BGR32, W, H, IMGFMT_YV12, 2, NULL, NULL, NULL); for(y=0; y<H; y++){ for(x=0; x<W*4; x++){ |