diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-01-30 15:21:08 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-01-30 15:21:08 +0000 |
commit | 6c7506de1ce7a25579f9c0bbdd2b6cd933310508 (patch) | |
tree | 303288ef5e2d47d8c1b31e7fcf09654a2c2535bb /postproc/swscale.h | |
parent | 4b6388d1f57a0eb6945d1e9c157e48a7a0101892 (diff) | |
download | ffmpeg-6c7506de1ce7a25579f9c0bbdd2b6cd933310508.tar.gz |
YV12 like formats support (I420/IYUV)
bugfixes related to vo_x11 resizeing
Originally committed as revision 4420 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale.h')
-rw-r--r-- | postproc/swscale.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/postproc/swscale.h b/postproc/swscale.h index 6ddd5ae44a..755d07e07e 100644 --- a/postproc/swscale.h +++ b/postproc/swscale.h @@ -103,6 +103,7 @@ void SwScale_Init(); void freeSwsContext(SwsContext *swsContext); +SwsContext *getSwsContextFromCmdLine(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat); SwsContext *getSwsContext(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter); |