diff options
author | Kieran Kunhya <kieran@kunhya.com> | 2016-01-30 17:39:48 +0000 |
---|---|---|
committer | Kieran Kunhya <kieran@kunhya.com> | 2016-01-30 17:44:13 +0000 |
commit | 3485332bf99602910fe8830b0230d02fc653135d (patch) | |
tree | d71e4d67a2df1a6f877593e158d86e6881841b0b /libavcodec/codec_desc.c | |
parent | 31f5fa21b03d16e285035a053d3267880ef9a12b (diff) | |
download | ffmpeg-3485332bf99602910fe8830b0230d02fc653135d.tar.gz |
avcodec: 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.
Alpha requires addition of GBRAP12 pixel format.
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 5fbe624055..672bf3fffe 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1521,6 +1521,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .props = AV_CODEC_PROP_LOSSLESS, .mime_types= MT("image/png"), }, + { + .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" */ { |