diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2016-05-06 22:43:00 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-05-07 04:42:27 +0200 |
commit | e601e078e94f03d1288daa8516249cc27be688f7 (patch) | |
tree | 64ba9abb704bc3d30c22c469a94359d72b39d88b | |
parent | fc6894770ea974f2a1a8605f7e5cd46f3f75772a (diff) | |
download | ffmpeg-e601e078e94f03d1288daa8516249cc27be688f7.tar.gz |
avformat/riff: add M102 FourCC
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-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 ccbe608acd..dd20aff280 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -420,6 +420,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_RSCC, MKTAG('I', 'S', 'C', 'C') }, { AV_CODEC_ID_CFHD, MKTAG('C', 'F', 'H', 'D') }, { AV_CODEC_ID_M101, MKTAG('M', '1', '0', '1') }, + { AV_CODEC_ID_M101, MKTAG('M', '1', '0', '2') }, { AV_CODEC_ID_NONE, 0 } }; |