diff options
author | Andrew Wason <rectalogic@rectalogic.com> | 2010-11-29 23:15:51 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-11-29 23:15:51 +0000 |
commit | 3d305fd0714afddfd5cbdfa0553beacf9238cd24 (patch) | |
tree | 205990fd3111c1d5efe2141d6fa90f9323a057d4 | |
parent | 365d8e471d59356bc8ebacc29ef00e9d839588f1 (diff) | |
download | ffmpeg-3d305fd0714afddfd5cbdfa0553beacf9238cd24.tar.gz |
Add FourCC yuvs for rawvideo (PIX_FMT_YUYV422).
Patch by Andrew Wason, rectalogic rectalogic com
Originally committed as revision 25853 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/riff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 34c0dd36f8..0fb2fd6d9e 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -162,6 +162,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('u', 'y', 'v', '1') }, { CODEC_ID_RAWVIDEO, MKTAG('2', 'V', 'u', '1') }, { CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') }, + { CODEC_ID_RAWVIDEO, MKTAG('y', 'u', 'v', 's') }, { CODEC_ID_RAWVIDEO, MKTAG('P', '4', '2', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '1', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'V', 'Y') }, |