diff options
author | Kieran Kunhya <kieran@kunhya.com> | 2016-01-30 17:39:48 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2017-03-09 18:37:29 +0100 |
commit | 5f794aa1653aa04c1da7397e9ccacad947fadf5f (patch) | |
tree | ba72470c5a0dba26709381bdcbbee7c4c2b45f72 /libavformat/riff.c | |
parent | f6790b5e1075133ee39be91105f1135db7afd259 (diff) | |
download | ffmpeg-5f794aa1653aa04c1da7397e9ccacad947fadf5f.tar.gz |
Add Cineform HD Decoder
Decodes YUV 4:2:2 10-bit and RGB 12-bit files.
Older files with more subbands, skips, Bayer, alpha not supported.
Further fixes and refactorings by Anton Khirnov <anton@khirnov.net>,
Diego Biurrun <diego@biurrun.de>, Vittorio Giovara <vittorio.giovara@gmail.com>
Signed-off-by: Diego Biurrun <diego@biurrun.de>
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 54bef835ba..6de4007202 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -368,6 +368,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_RSCC, MKTAG('I', 'S', 'C', 'C') }, { AV_CODEC_ID_MAGICYUV, MKTAG('M', 'A', 'G', 'Y') }, { AV_CODEC_ID_AV1, MKTAG('A', 'V', '0', '1') }, + { AV_CODEC_ID_CFHD, MKTAG('C', 'F', 'H', 'D') }, { AV_CODEC_ID_NONE, 0 } }; |