[FFmpeg-cvslog] r9794 - trunk/libavformat/matroska.c
aurel
subversion
Wed Jul 25 17:59:26 CEST 2007
Author: aurel
Date: Wed Jul 25 17:59:26 2007
New Revision: 9794
Log:
use the most appropriate codec id for A_MPEG/L1 and L2
Modified:
trunk/libavformat/matroska.c
Modified: trunk/libavformat/matroska.c
==============================================================================
--- trunk/libavformat/matroska.c (original)
+++ trunk/libavformat/matroska.c Wed Jul 25 17:59:26 2007
@@ -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},
More information about the ffmpeg-cvslog
mailing list