Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-03-25 19:12:27 +0400
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-03-25 19:12:27 +0400
commit0174f51470c13957d2334a2266f7a4ec92fe5746 (patch)
tree29bb47636866d3b40b0c4dc9a71ca7691cdc2ab1 /libavformat/isom.c
parent6aaf3abd6d7a5690effa7ae298ba54fd62df7525 (diff)
prefer MP3 id
Originally committed as revision 8515 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r--libavformat/isom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c
index 3f02de04d7..ef44d90b4f 100644
--- a/libavformat/isom.c
+++ b/libavformat/isom.c
@@ -149,8 +149,8 @@ const AVCodecTag codec_movaudio_tags[] = {
{ CODEC_ID_MACE6, MKTAG('M', 'A', 'C', '6') }, /* Macintosh Audio Compression and Expansion 6:1 */
{ 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, MKTAG('m', 's', 0x00, 0x55) }, /* MPEG layer 3 *//* XXX: check endianness */
+ { CODEC_ID_MP3, 0x6D730055 }, /* MPEG layer 3 */
+ { CODEC_ID_MP3, 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 */