summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2017-03-02 11:21:48 +0100
committerDiego Biurrun <diego@biurrun.de>2017-04-25 15:39:10 +0200
commit189157c3fc8eeb691e3684b09d971eb5ddb47d5b (patch)
tree704655cb4e3cb2d2bbe1cea0e2c2ded9b48bea6e /libavformat
parentc55f2ae2b8d4de473f945aebd6a7a89b6b83e87a (diff)
Add ClearVideo decoder
Only I-frames are decoded for now. Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/riff.c2
-rw-r--r--libavformat/rm.c1
2 files changed, 3 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 }
};
diff --git a/libavformat/rm.c b/libavformat/rm.c
index 761be3f556..a38b036548 100644
--- a/libavformat/rm.c
+++ b/libavformat/rm.c
@@ -43,5 +43,6 @@ const AVCodecTag ff_rm_codec_tags[] = {
{ AV_CODEC_ID_AAC, MKTAG('r','a','a','c') },
{ AV_CODEC_ID_AAC, MKTAG('r','a','c','p') },
{ AV_CODEC_ID_RALF, MKTAG('L','S','D',':') },
+ { AV_CODEC_ID_CLEARVIDEO, MKTAG('C','L','V','1') },
{ AV_CODEC_ID_NONE },
};