diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-01-20 11:18:38 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-01-27 13:53:29 +0100 |
commit | 795af110f70bbd12b45ae2d3b08e7f45db5224a0 (patch) | |
tree | 708e289c4e0354632068113b214d81280d452de5 /libavformat/riff.c | |
parent | d8ebfd1bdf7e2c47af3eb057b97de5b7fe854e35 (diff) | |
download | ffmpeg-795af110f70bbd12b45ae2d3b08e7f45db5224a0.tar.gz |
avcodec: add ARBC decoder
Thanks Kostya for great help in reversing binary.
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 d5a509c8b9..8f0fd99e22 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -476,6 +476,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_WCMV, MKTAG('W', 'C', 'M', 'V') }, { 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_NONE, 0 } }; |