diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2017-03-02 11:21:48 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-04-25 15:39:10 +0200 |
commit | 189157c3fc8eeb691e3684b09d971eb5ddb47d5b (patch) | |
tree | 704655cb4e3cb2d2bbe1cea0e2c2ded9b48bea6e /libavformat/riff.c | |
parent | c55f2ae2b8d4de473f945aebd6a7a89b6b83e87a (diff) | |
download | ffmpeg-189157c3fc8eeb691e3684b09d971eb5ddb47d5b.tar.gz |
Add ClearVideo decoder
Only I-frames are decoded for now.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavformat/riff.c')
-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 a6734f2789..8690960b1e 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -375,6 +375,8 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_AV1, MKTAG('A', 'V', '0', '1') }, { AV_CODEC_ID_CFHD, MKTAG('C', 'F', 'H', 'D') }, { AV_CODEC_ID_FMVC, MKTAG('F', 'M', 'V', 'C') }, + { AV_CODEC_ID_CLEARVIDEO, MKTAG('U', 'C', 'O', 'D') }, + { AV_CODEC_ID_NONE, 0 } }; |