diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-25 15:09:02 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-25 15:09:02 +0000 |
commit | db6d109da2ed2074689d219fa50e4db904a9f78a (patch) | |
tree | 19e396e48f5128eb83404c900380c6132fbeb05d /libavformat | |
parent | b0c17f7776337aba78e1bda10e747cb7cf5eb446 (diff) | |
download | ffmpeg-db6d109da2ed2074689d219fa50e4db904a9f78a.tar.gz |
use MKTAG
Originally committed as revision 8513 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 c1a690ef2b..3f02de04d7 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -150,7 +150,7 @@ const AVCodecTag codec_movaudio_tags[] = { { CODEC_ID_MP3, MKTAG('.', 'm', 'p', '3') }, /* MPEG layer 3 */ /* sample files at http://www.3ivx.com/showcase.html use this tag */ { CODEC_ID_MP2, 0x6D730055 }, /* MPEG layer 3 */ - { CODEC_ID_MP2, 0x5500736D }, /* MPEG layer 3 *//* XXX: check endianness */ + { CODEC_ID_MP2, MKTAG('m', 's', 0x00, 0x55) }, /* MPEG layer 3 *//* XXX: check endianness */ /* { CODEC_ID_OGG_VORBIS, MKTAG('O', 'g', 'g', 'S') }, *//* sample files at http://heroinewarrior.com/xmovie.php3 use this tag */ |