[FFmpeg-cvslog] lavf/matroska: Fix the codec_id for mkv tag A_MPEG/L1.
Carl Eugen Hoyos
git at videolan.org
Wed Jan 4 13:48:55 EET 2017
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Tue Jan 3 03:43:34 2017 +0100| [38e4bcae0944cd58de6bce0f28108bf95a54070a] | committer: Carl Eugen Hoyos
lavf/matroska: Fix the codec_id for mkv tag A_MPEG/L1.
When the mapping was originally added AV_CODEC_ID_MP1 did not exist.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=38e4bcae0944cd58de6bce0f28108bf95a54070a
---
libavformat/matroska.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/matroska.c b/libavformat/matroska.c
index f3e1be7..c8e5341 100644
--- a/libavformat/matroska.c
+++ b/libavformat/matroska.c
@@ -35,7 +35,7 @@ const CodecTags ff_mkv_codec_tags[]={
{"A_FLAC" , AV_CODEC_ID_FLAC},
{"A_MLP" , AV_CODEC_ID_MLP},
{"A_MPEG/L2" , AV_CODEC_ID_MP2},
- {"A_MPEG/L1" , AV_CODEC_ID_MP2},
+ {"A_MPEG/L1" , AV_CODEC_ID_MP1},
{"A_MPEG/L3" , AV_CODEC_ID_MP3},
{"A_OPUS" , AV_CODEC_ID_OPUS},
{"A_OPUS/EXPERIMENTAL",AV_CODEC_ID_OPUS},
More information about the ffmpeg-cvslog
mailing list