diff options
author | Cédric Schieli <cschieli@gmail.com> | 2009-03-07 09:37:25 +0000 |
---|---|---|
committer | Cédric Schieli <cschieli@gmail.com> | 2009-03-07 09:37:25 +0000 |
commit | 9621f2f5404aa967afe8d895af52101c32b58f88 (patch) | |
tree | e369487f05e79d9972b3f7f2d77979998226943f /libswscale/swscale_internal.h | |
parent | 7d87e2ceacc551dc1510282824c97ea457fd655d (diff) | |
download | ffmpeg-9621f2f5404aa967afe8d895af52101c32b58f88.tar.gz |
YUVA420P is a planar YUV format
Originally committed as revision 28867 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index cdf3754d14..13b9609060 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -228,6 +228,7 @@ const char *sws_format_name(int format); #define isPlanarYUV(x) ( \ (x)==PIX_FMT_YUV410P \ || (x)==PIX_FMT_YUV420P \ + || (x)==PIX_FMT_YUVA420P \ || (x)==PIX_FMT_YUV411P \ || (x)==PIX_FMT_YUV422P \ || (x)==PIX_FMT_YUV444P \ |