diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-01-04 15:10:58 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-01-04 15:37:58 +0100 |
commit | 64e4f4836a03e427936c17a651a19658d3e3b474 (patch) | |
tree | d69da72fa4792d79a1a647da5bdde8517250171b /libavformat/isom.c | |
parent | dc7ad85c401a0137795e0414f5fe1c2e7f1d7078 (diff) | |
download | ffmpeg-64e4f4836a03e427936c17a651a19658d3e3b474.tar.gz |
Add decoder for Avid 1:1 10-bit RGB Packer (AVrp).
Fixes ticket #525.
Reviewed-by: Paul B Mahol
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 7cadcef79e..0c648e9162 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -89,6 +89,7 @@ const AVCodecTag codec_movvideo_tags[] = { { CODEC_ID_R10K, MKTAG('R', '1', '0', 'k') }, /* UNCOMPRESSED 10BIT RGB */ { CODEC_ID_R10K, MKTAG('R', '1', '0', 'g') }, /* UNCOMPRESSED 10BIT RGB */ { CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, /* UNCOMPRESSED 10BIT RGB */ + { CODEC_ID_AVRP, MKTAG('A', 'V', 'r', 'p') }, /* Avid 1:1 10-bit RGB Packer */ { CODEC_ID_V210, MKTAG('v', '2', '1', '0') }, /* UNCOMPRESSED 10BIT 4:2:2 */ { CODEC_ID_V410, MKTAG('v', '4', '1', '0') }, /* UNCOMPRESSED 10BIT 4:4:4 */ { CODEC_ID_Y41P, MKTAG('Y', '4', '1', 'P') }, /* UNCOMPRESSED 12BIT 4:1:1 */ |