diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2011-12-13 14:33:48 -0500 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-13 23:34:24 +0100 |
commit | 80f6c0bb95bb90f599b0c76c0fbac5454eff3b2f (patch) | |
tree | 12f773485e9db3fce90f141754d36f5372b1d173 /libavformat | |
parent | 86ae5124539c4077bca0b2c7686f87da39acb6b5 (diff) | |
download | ffmpeg-80f6c0bb95bb90f599b0c76c0fbac5454eff3b2f.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: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/isom.c | 1 | ||||
-rw-r--r-- | libavformat/riff.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 6eb1827d8d..eab304c006 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) */ diff --git a/libavformat/riff.c b/libavformat/riff.c index db3f9584ed..1d226abb40 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -196,6 +196,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_R10K, MKTAG('R', '1', '0', 'k') }, { CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, { CODEC_ID_V210, MKTAG('v', '2', '1', '0') }, + { CODEC_ID_V410, MKTAG('v', '4', '1', '0') }, { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') }, { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '2') }, { CODEC_ID_INDEO4, MKTAG('I', 'V', '4', '1') }, |