From a63496cc882428aefafc85d2f60e0908b020bffe Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Thu, 2 Mar 2017 11:21:48 +0100 Subject: avcodec: add ClearVideo decoder Only I-frames are decoded for now. Signed-off-by: Paul B Mahol --- libavformat/riff.c | 1 + libavformat/rm.c | 1 + 2 files changed, 2 insertions(+) (limited to 'libavformat') diff --git a/libavformat/riff.c b/libavformat/riff.c index e38c63632f..e3fb953622 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -450,6 +450,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_SPEEDHQ, MKTAG('S', 'H', 'Q', '9') }, { AV_CODEC_ID_FMVC, MKTAG('F', 'M', 'V', 'C') }, { AV_CODEC_ID_SCPR, MKTAG('S', 'C', 'P', 'R') }, + { 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 0591a1735a..52c7ccc1e8 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 }, }; -- cgit v1.2.3