diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-03 15:31:46 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-04 01:29:26 +0200 |
commit | 9ff6429b0742723560198963ef97e2b8c111b0a3 (patch) | |
tree | 18c0c97f737f57092c3e1edf58af96cb36b872a9 /libavformat/riff.c | |
parent | 771cb3e59239f45f789c0841b0df7600271fa1a7 (diff) | |
download | ffmpeg-9ff6429b0742723560198963ef97e2b8c111b0a3.tar.gz |
riff: Support XMPG as mpeg1
Diffstat (limited to 'libavformat/riff.c')
-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 7a5f1f4466..7396fc3a68 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -163,6 +163,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_MPEG2VIDEO, MKTAG('M', '7', '0', '1') }, { AV_CODEC_ID_MPEG2VIDEO, MKTAG('m', 'p', 'g', 'v') }, { AV_CODEC_ID_MPEG1VIDEO, MKTAG('B', 'W', '1', '0') }, + { AV_CODEC_ID_MPEG1VIDEO, MKTAG('X', 'M', 'P', 'G') }, /* Xing MPEG intra only */ { AV_CODEC_ID_MJPEG, MKTAG('M', 'J', 'P', 'G') }, { AV_CODEC_ID_MJPEG, MKTAG('L', 'J', 'P', 'G') }, { AV_CODEC_ID_MJPEG, MKTAG('d', 'm', 'b', '1') }, |