diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-03 15:10:45 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-04 01:29:26 +0200 |
commit | 771cb3e59239f45f789c0841b0df7600271fa1a7 (patch) | |
tree | 4d3d8b73f6ffb9f249f1c64351bbc557e211f0e4 /libavformat/riff.c | |
parent | eaec09a575181a09c57a85778df89018a48c98b5 (diff) | |
download | ffmpeg-771cb3e59239f45f789c0841b0df7600271fa1a7.tar.gz |
riff: support BW10 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 6b080156fd..7a5f1f4466 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -162,6 +162,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { /* Matrox MPEG-2 intra-only */ { 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_MJPEG, MKTAG('M', 'J', 'P', 'G') }, { AV_CODEC_ID_MJPEG, MKTAG('L', 'J', 'P', 'G') }, { AV_CODEC_ID_MJPEG, MKTAG('d', 'm', 'b', '1') }, |