diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-07-25 15:59:26 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-07-25 15:59:26 +0000 |
commit | 868e43d952490c424876088a6db5bfa8ed169f6f (patch) | |
tree | dfb9e9dbc3955ae488b27158e038b0e5077220e2 /libavformat/matroska.c | |
parent | 0f40b54c1740e72d254a00d3b153ab5a2973f014 (diff) | |
download | ffmpeg-868e43d952490c424876088a6db5bfa8ed169f6f.tar.gz |
use the most appropriate codec id for A_MPEG/L1 and L2
Originally committed as revision 9794 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroska.c')
-rw-r--r-- | libavformat/matroska.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c index d3fe3718ae..7999bd3612 100644 --- a/libavformat/matroska.c +++ b/libavformat/matroska.c @@ -41,8 +41,8 @@ CodecTags ff_mkv_codec_tags[]={ // {"A_MS/ACM" , CODEC_ID_NONE}, {"A_MPEG/L3" , CODEC_ID_MP3}, - {"A_MPEG/L2" , CODEC_ID_MP3}, - {"A_MPEG/L1" , CODEC_ID_MP3}, + {"A_MPEG/L2" , CODEC_ID_MP2}, + {"A_MPEG/L1" , CODEC_ID_MP2}, {"A_PCM/INT/BIG" , CODEC_ID_PCM_U16BE}, {"A_PCM/INT/LIT" , CODEC_ID_PCM_U16LE}, // {"A_PCM/FLOAT/IEEE" , CODEC_ID_NONE}, |