diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-05-14 14:21:06 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-05-14 14:21:06 +0000 |
commit | ed70a5099eab05393633617e0a8e3bd41dcab745 (patch) | |
tree | 8f63b9ba6bc03c5536d25dd774ce6f30c3910c2a /libavformat | |
parent | 5e0c720a4e6aba7388e97e7d75ca4d88b28788f6 (diff) | |
download | ffmpeg-ed70a5099eab05393633617e0a8e3bd41dcab745.tar.gz |
add quicktime uncompressed 8bit 4:2:2 support
Originally committed as revision 5379 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mov.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 1c32d3a5f1..ade4168ee4 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -152,6 +152,7 @@ static const CodecTag mov_video_tags[] = { { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '5', 'n') }, /* DVCPRO50 NTSC produced by FCP */ { CODEC_ID_DVVIDEO, MKTAG('A', 'V', 'd', 'v') }, /* AVID DV */ //{ CODEC_ID_JPEG2000, MKTAG('m', 'j', 'p', '2') }, /* JPEG 2000 produced by FCP */ + { CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') }, /* UNCOMPRESSED 8BIT 4:2:2 */ { CODEC_ID_NONE, 0 }, }; |