diff options
author | Peter Ross <pross@xvid.org> | 2022-10-14 18:19:49 +1100 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2022-10-18 13:20:37 +1100 |
commit | 3141dbb7adf1e2bd5b9ff700312d7732c958b8df (patch) | |
tree | 2bd8de3722268fcac8d170903bb16f25a0fcc5d7 /libavformat | |
parent | e253bc4b1703ff4f1abe42fe83af2b784411a701 (diff) | |
download | ffmpeg-3141dbb7adf1e2bd5b9ff700312d7732c958b8df.tar.gz |
avcodec: ViewQuest VQC decoder
Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Reviewed-by: Tomas Härdin <git@haerdin.se>
Signed-off-by: Peter Ross <pross@xvid.org>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/riff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 0d3f322545..7319406b39 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -499,6 +499,8 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_MVHA, MKTAG('M', 'V', 'H', 'A') }, { AV_CODEC_ID_MV30, MKTAG('M', 'V', '3', '0') }, { AV_CODEC_ID_NOTCHLC, MKTAG('n', 'l', 'c', '1') }, + { AV_CODEC_ID_VQC, MKTAG('V', 'Q', 'C', '1') }, + { AV_CODEC_ID_VQC, MKTAG('V', 'Q', 'C', '2') }, { AV_CODEC_ID_NONE, 0 } }; |