diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-10-18 19:35:03 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-10-18 19:35:03 +0200 |
commit | 6e65e3483706d969d176909fae9e216919f59277 (patch) | |
tree | fe5be8ce9c423deda1139eb0db5fa96ddf90f89e /libavformat | |
parent | 640c70ddc2d988892f331330ad7ab569bced075c (diff) | |
download | ffmpeg-6e65e3483706d969d176909fae9e216919f59277.tar.gz |
lavf/riff: Fix a comment.
FourCC aivx refers to (Sony) XAVC, not (Panasonic) AVC-Intra.
Spotted by Kieran Kunhya and Vincent Olivier.
Diffstat (limited to 'libavformat')
-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 a8ff01dba5..112fbb328c 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -167,7 +167,7 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { AV_CODEC_ID_H264, MKTAG('a', 'i', '1', '3') }, /* AVC-Intra 100M 1080p24/30/60 */ { AV_CODEC_ID_H264, MKTAG('a', 'i', '1', '5') }, /* AVC-Intra 100M 1080i50 */ { AV_CODEC_ID_H264, MKTAG('a', 'i', '1', '6') }, /* AVC-Intra 100M 1080i60 */ - { AV_CODEC_ID_H264, MKTAG('a', 'i', 'v', 'x') }, /* AVC-Intra 200M 4kp24 */ + { AV_CODEC_ID_H264, MKTAG('a', 'i', 'v', 'x') }, /* XAVC 4:2:2 10bit */ { AV_CODEC_ID_H264, MKTAG('A', 'V', 'i', 'n') }, /* AVC-Intra with implicit SPS/PPS */ { AV_CODEC_ID_MPEG1VIDEO, MKTAG('m', '1', 'v', '1') }, /* Apple MPEG-1 Camcorder */ |