diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-12 17:51:13 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-12 17:51:13 +0000 |
commit | 6c80eb1626cb2007072400a79c0505f4a17eabe6 (patch) | |
tree | a57afee2ec5e63a486d4e0d9ffb4def3835858e3 /libswscale/swscale.c | |
parent | 4bb9adcff1be7ccbb6b8fab40cd68b3808544edc (diff) | |
download | ffmpeg-6c80eb1626cb2007072400a79c0505f4a17eabe6.tar.gz |
Add support for PIX_FMT_YUV440P.
Originally committed as revision 27589 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r-- | libswscale/swscale.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index c938306cad..b0ce120cfd 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -116,6 +116,7 @@ unsigned swscale_version(void) || (x)==PIX_FMT_RGB555 \ || (x)==PIX_FMT_GRAY8 \ || (x)==PIX_FMT_YUV410P \ + || (x)==PIX_FMT_YUV440P \ || (x)==PIX_FMT_GRAY16BE \ || (x)==PIX_FMT_GRAY16LE \ || (x)==PIX_FMT_YUV444P \ @@ -145,6 +146,7 @@ unsigned swscale_version(void) || (x)==PIX_FMT_GRAY16LE \ || (x)==PIX_FMT_GRAY8 \ || (x)==PIX_FMT_YUV410P \ + || (x)==PIX_FMT_YUV440P \ ) #define isPacked(x) ( \ (x)==PIX_FMT_PAL8 \ |