diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-03-29 14:43:42 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-04-11 11:49:43 +0200 |
commit | 0f28355974847dff739b96b7e8072fde65e9df51 (patch) | |
tree | d202e009d3b6578bf45b8753d5b9a42c465b0b5a /libavformat/riff.c | |
parent | ce92ee4b4f3ef13aba551897f54d794bcba5dd62 (diff) | |
download | ffmpeg-0f28355974847dff739b96b7e8072fde65e9df51.tar.gz |
avcodec/agm: add support for higher compression
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index a8594b0607..3d77efa7d7 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -477,8 +477,12 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_RASC, MKTAG('R', 'A', 'S', 'C') }, { AV_CODEC_ID_HYMT, MKTAG('H', 'Y', 'M', 'T') }, { AV_CODEC_ID_ARBC, MKTAG('A', 'R', 'B', 'C') }, + { AV_CODEC_ID_AGM, MKTAG('A', 'G', 'M', '0') }, + { AV_CODEC_ID_AGM, MKTAG('A', 'G', 'M', '1') }, { AV_CODEC_ID_AGM, MKTAG('A', 'G', 'M', '2') }, { AV_CODEC_ID_AGM, MKTAG('A', 'G', 'M', '3') }, + { AV_CODEC_ID_AGM, MKTAG('A', 'G', 'M', '6') }, + { AV_CODEC_ID_AGM, MKTAG('A', 'G', 'M', '7') }, { AV_CODEC_ID_NONE, 0 } }; |