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 /libavcodec/codec_desc.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 'libavcodec/codec_desc.c')
-rw-r--r-- | libavcodec/codec_desc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index ab2018b41b..dd243c2f0c 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1428,6 +1428,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("XWD (X Window Dump) image"), .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, }, + { + .id = AV_CODEC_ID_CFHD, + .type = AVMEDIA_TYPE_VIDEO, + .name = "cfhd", + .long_name = NULL_IF_CONFIG_SMALL("Cineform HD"), + .props = AV_CODEC_PROP_LOSSY, + }, /* various PCM "codecs" */ { |