summaryrefslogtreecommitdiff
path: root/libavformat/riff.c
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2011-07-22 10:13:22 -0700
committerAlex Converse <alex.converse@gmail.com>2011-07-22 10:39:13 -0700
commit505345ed5d180093a44da8d70ac541898c31c22f (patch)
treed3b810011ec905e2abafcc1b23a8fd9e79ff614d /libavformat/riff.c
parentc2d23309ef87c3f1a515860425a5a898aab9b760 (diff)
riff: Add mpgv MPEG-2 fourcc
Supported by mplayer and seen in the wild.
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r--libavformat/riff.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index 27f45b91d9..c426ae5de6 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -131,6 +131,7 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{ CODEC_ID_MPEG2VIDEO, MKTAG('s', 'l', 'i', 'f') },
{ CODEC_ID_MPEG2VIDEO, MKTAG('E', 'M', '2', 'V') },
{ CODEC_ID_MPEG2VIDEO, MKTAG('M', '7', '0', '1') }, /* Matrox MPEG2 intra-only */
+ { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'p', 'g', 'v') },
{ CODEC_ID_MJPEG, MKTAG('M', 'J', 'P', 'G') },
{ CODEC_ID_MJPEG, MKTAG('L', 'J', 'P', 'G') },
{ CODEC_ID_MJPEG, MKTAG('d', 'm', 'b', '1') },