diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-05-08 10:37:13 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-05-08 10:37:13 +0200 |
commit | 299d58e18a7b6c9597e854305927f9c3c1e26fd8 (patch) | |
tree | 9c3fd193aeffba92296902ed0b445b10b1e0ce66 /libavcodec/raw.c | |
parent | 29fe6b3cbfa9e32d5ff87429f5d3c0366ded59f3 (diff) | |
download | ffmpeg-299d58e18a7b6c9597e854305927f9c3c1e26fd8.tar.gz |
Support yuva422p rawvideo in nut.
Diffstat (limited to 'libavcodec/raw.c')
-rw-r--r-- | libavcodec/raw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c index c10b52fd5b..2a6d7d0129 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -130,6 +130,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = { { PIX_FMT_YUV444P16LE, MKTAG('Y', '3', 0 , 16 ) }, { PIX_FMT_YUV444P16BE, MKTAG(16 , 0 , '3', 'Y') }, { PIX_FMT_YUVA420P, MKTAG('Y', '4', 11 , 8 ) }, + { PIX_FMT_YUVA422P, MKTAG('Y', '4', 10 , 8 ) }, { PIX_FMT_YUVA444P, MKTAG('Y', '4', 0 , 8 ) }, { PIX_FMT_GRAY8A, MKTAG('Y', '2', 0 , 8 ) }, |