diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-02-02 18:44:39 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-02-02 18:44:39 +0100 |
commit | af0f8c09cc8dc41d5623c6e4508a964699910d56 (patch) | |
tree | 8cb7b6d67d2abd4247b48785990ecb73f3f1b782 | |
parent | d50a4c4a5b5c7f6fb563fd4fc0c9deb4a5704a10 (diff) | |
download | ffmpeg-af0f8c09cc8dc41d5623c6e4508a964699910d56.tar.gz |
Cosmentics: Fix AVUI comment.
The codec contains no alpha information but deinterleaved interlaced video.
Found by Maksym Veremeyenko.
-rw-r--r-- | libavformat/isom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index eb06a4392e..1228d56d3a 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -71,7 +71,7 @@ const AVCodecTag codec_movvideo_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('r', 'a', 'w', ' ') }, /* Uncompressed RGB */ { CODEC_ID_RAWVIDEO, MKTAG('y', 'u', 'v', '2') }, /* Uncompressed YUV422 */ - { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', 'U', 'I') }, /* YUV with alpha-channel (AVID Uncompressed) */ + { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', 'U', 'I') }, /* AVID Uncompressed deinterleaved UYVY422 */ { CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') }, /* UNCOMPRESSED 8BIT 4:2:2 */ { CODEC_ID_RAWVIDEO, MKTAG('y', 'u', 'v', 's') }, /* same as 2vuy but byte swapped */ |