Commit 6ec906a1 authored by bcoudurier's avatar bcoudurier

use MKTAG

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8513 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 72e7b34f
...@@ -150,7 +150,7 @@ const AVCodecTag codec_movaudio_tags[] = { ...@@ -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_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, 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 */ /* { CODEC_ID_OGG_VORBIS, MKTAG('O', 'g', 'g', 'S') }, *//* sample files at http://heroinewarrior.com/xmovie.php3 use this tag */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment