diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2017-03-02 11:21:48 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-03-02 11:39:54 +0100 |
commit | a63496cc882428aefafc85d2f60e0908b020bffe (patch) | |
tree | ec6e2095a5974dd74e67305a3835c74023c88b29 /libavformat/riff.c | |
parent | 2b8151c80690a71db2cf8009855b4ae1a6abdd4c (diff) | |
download | ffmpeg-streaming-a63496cc882428aefafc85d2f60e0908b020bffe.zip ffmpeg-streaming-a63496cc882428aefafc85d2f60e0908b020bffe.tar.gz |
avcodec: add ClearVideo decoder
Only I-frames are decoded for now.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
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 e38c636..e3fb953 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 } }; |