diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-06 17:55:14 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-06 17:59:27 +0100 |
commit | 9ff92cf1953d90e0e4f87f76f3f2f6439205a139 (patch) | |
tree | 8ef458e8bdde6daab22135c8ce5cd157ff75a1b1 /libavformat/riff.c | |
parent | 40648d8cc372c328965a2e2e8e5ef8c88cba3e3f (diff) | |
download | ffmpeg-9ff92cf1953d90e0e4f87f76f3f2f6439205a139.tar.gz |
012v decoder.
The decoder also supports a12v, but removes the transparency layer
since no samples with actual transparency are available for testing.
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 4328ddeb89..573e4179cd 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -325,6 +325,8 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_CLLC, MKTAG('C', 'L', 'L', 'C') }, { AV_CODEC_ID_MSS2, MKTAG('M', 'S', 'S', '2') }, { AV_CODEC_ID_SVQ3, MKTAG('S', 'V', 'Q', '3') }, + { AV_CODEC_ID_012V, MKTAG('0', '1', '2', 'v') }, + { AV_CODEC_ID_012V, MKTAG('a', '1', '2', 'v') }, { AV_CODEC_ID_NONE, 0 } }; |