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 /libavformat/riff.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 '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 9a92615212..cf5a2ffa5a 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -413,6 +413,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_SCREENPRESSO, MKTAG('S', 'P', 'V', '1') }, { AV_CODEC_ID_RSCC, MKTAG('R', 'S', 'C', 'C') }, { AV_CODEC_ID_RSCC, MKTAG('I', 'S', 'C', 'C') }, + { AV_CODEC_ID_CFHD, MKTAG('C', 'F', 'H', 'D') }, { AV_CODEC_ID_NONE, 0 } }; |