diff options
author | ami_stuff <ami_stuff@o2.pl> | 2011-06-27 09:40:53 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-06-27 09:40:53 +0200 |
commit | 90d475a9e7ecc03f9b3067a90225a9438ac84b9f (patch) | |
tree | 8398eaf825606bf2bed5f3f5c1900769cc4c7c8b /libavcodec/raw.c | |
parent | e747b091cbc6b41f3531cfdf9d1bdd34606b1df3 (diff) | |
download | ffmpeg-90d475a9e7ecc03f9b3067a90225a9438ac84b9f.tar.gz |
Support fourcc YV16 (ticket 307).
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 0bc04df071..c44220ee4d 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -36,6 +36,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = { { PIX_FMT_YUV411P, MKTAG('Y', '4', '1', 'B') }, { PIX_FMT_YUV422P, MKTAG('Y', '4', '2', 'B') }, { PIX_FMT_YUV422P, MKTAG('P', '4', '2', '2') }, + { PIX_FMT_YUV422P, MKTAG('Y', 'V', '1', '6') }, /* yuvjXXX formats are deprecated hacks specific to libav*, they are identical to yuvXXX */ { PIX_FMT_YUVJ420P, MKTAG('I', '4', '2', '0') }, /* Planar formats */ |