diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-24 15:11:47 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-24 15:11:47 +0000 |
commit | b41899c66c2ab447dee2a3afb67629ef9b91fbb7 (patch) | |
tree | baff42dade469c2b82e93b8402150d1ff2aa3560 | |
parent | 7555d2e633fb137a59e03f5c35095f20b7c31e99 (diff) | |
download | ffmpeg-b41899c66c2ab447dee2a3afb67629ef9b91fbb7.tar.gz |
prefer MP3 id as mentioned in avcodec.h line 210
Originally committed as revision 8494 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 572e6acf7c..799cefe7db 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -41,7 +41,7 @@ const AVCodecTag ff_mov_obj_type[] = { { CODEC_ID_AAC , 104 }, /* MPEG2 AAC SSR */ { CODEC_ID_MP3 , 105 }, /* 13818-3 */ { CODEC_ID_MPEG1VIDEO, 106 }, /* 11172-2 */ - { CODEC_ID_MP2 , 107 }, /* 11172-3 */ + { CODEC_ID_MP3 , 107 }, /* 11172-3 */ { CODEC_ID_MJPEG , 108 }, /* 10918-1 */ { CODEC_ID_PCM_S16LE , 224 }, { CODEC_ID_VORBIS , 221 }, |