summaryrefslogtreecommitdiffstats
path: root/libswscale
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-09-12 17:51:13 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-09-12 17:51:13 +0000
commit02da3e1bf989b494bbf92903a1655e585658fb0b (patch)
tree0d85be01b9a879cc87a91b344fbe3faf800ea463 /libswscale
parentd28a3ad668d982b0bb09fd6bf12c59b923f856e2 (diff)
downloadmpv-02da3e1bf989b494bbf92903a1655e585658fb0b.tar.bz2
mpv-02da3e1bf989b494bbf92903a1655e585658fb0b.tar.xz
Add support for PIX_FMT_YUV440P.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27589 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/swscale.c2
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 \