diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-01-26 12:05:14 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-01-26 12:05:14 +0100 |
commit | fe47cba7e8daa987ac8c802362d8dad892858cd5 (patch) | |
tree | 5085bc8ce02a97342b929b98d878267ccfc88bc0 /libavformat/isom.c | |
parent | 0ca5c4daded0a72c1a50f4b2a0f21d6aa909b145 (diff) | |
download | ffmpeg-fe47cba7e8daa987ac8c802362d8dad892858cd5.tar.gz |
Decode Prores 4444 XQ with the existing Prores decoder.
The frames are said to contain a higher bit-depth but
users report that our decoder shows visually correct output.
Requested by forum user gregba and Christoph Gerstbauer.
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 01d3dd29f0..68ddd326e2 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -251,6 +251,7 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { AV_CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 's') }, /* Apple ProRes 422 LT */ { AV_CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 'o') }, /* Apple ProRes 422 Proxy */ { AV_CODEC_ID_PRORES, MKTAG('a', 'p', '4', 'h') }, /* Apple ProRes 4444 */ + { AV_CODEC_ID_PRORES, MKTAG('a', 'p', '4', 'x') }, /* Apple ProRes 4444 XQ */ { AV_CODEC_ID_FLIC, MKTAG('f', 'l', 'i', 'c') }, { AV_CODEC_ID_AIC, MKTAG('i', 'c', 'o', 'd') }, |