summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-04 15:10:58 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-04 15:37:58 +0100
commit64e4f4836a03e427936c17a651a19658d3e3b474 (patch)
treed69da72fa4792d79a1a647da5bdde8517250171b /libavformat
parentdc7ad85c401a0137795e0414f5fe1c2e7f1d7078 (diff)
Add decoder for Avid 1:1 10-bit RGB Packer (AVrp).
Fixes ticket #525. Reviewed-by: Paul B Mahol
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/isom.c1
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 */