diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2011-12-13 14:24:56 -0500 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-14 03:38:57 +0100 |
commit | 309ffa4fe3388d842a51000dc7d56abac53ff759 (patch) | |
tree | 4661eae88955f627c27c820782b7e9cbfbc04997 /libavformat/isom.c | |
parent | 635a301683db314aa21717276420ad8b5267f07e (diff) | |
download | ffmpeg-309ffa4fe3388d842a51000dc7d56abac53ff759.tar.gz |
v410 encoder and decoder
v410 is a packed 10-bit 4:4:4 YCbCr format used in
QuickTime.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 7a625780f3..0a01e78ed1 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -90,6 +90,7 @@ const AVCodecTag codec_movvideo_tags[] = { { CODEC_ID_R10K, MKTAG('R', '1', '0', 'g') }, /* UNCOMPRESSED 10BIT RGB */ { CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, /* UNCOMPRESSED 10BIT RGB */ { 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_MJPEG, MKTAG('j', 'p', 'e', 'g') }, /* PhotoJPEG */ { CODEC_ID_MJPEG, MKTAG('m', 'j', 'p', 'a') }, /* Motion-JPEG (format A) */ |