summaryrefslogtreecommitdiff
path: root/libavformat/riff.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-05-24 20:35:01 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-05-24 20:35:01 +0000
commit781cf5fd4194bd4edaacf4e0e524eea8546a8e57 (patch)
treec0686020ba7a58b433c5f12c002e2a8e552f47a6 /libavformat/riff.c
parent111c935980138f65a5562fd28837064e467c7e7e (diff)
Add missing codec id <-> codec tag entries:
CODEC_ID_RAWVIDEO <-> Y41B CODEC_ID_RAWVIDEO <-> Y42B CODEC_ID_RAWVIDEO <-> YUV9 CODEC_ID_RAWVIDEO <-> YVU9 These codec tags are listed in fourcc.org, and are already listed in libavcodec/raw.c:ff_raw_pix_fmt_tags as AVI tags. Originally committed as revision 23296 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r--libavformat/riff.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index e502f81e91..96b83475e3 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -171,6 +171,10 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{ CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '1', '1') },
{ CODEC_ID_RAWVIDEO, MKTAG('N', 'V', '1', '2') },
{ CODEC_ID_RAWVIDEO, MKTAG('N', 'V', '2', '1') },
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '1', 'B') },
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '2', 'B') },
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', 'U', 'V', '9') },
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', 'U', '9') },
{ CODEC_ID_FRWU, MKTAG('F', 'R', 'W', 'U') },
{ CODEC_ID_R210, MKTAG('r', '2', '1', '0') },
{ CODEC_ID_V210, MKTAG('v', '2', '1', '0') },