diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-01-03 03:43:34 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-01-04 12:48:09 +0100 |
commit | 38e4bcae0944cd58de6bce0f28108bf95a54070a (patch) | |
tree | 9ccf2b75873691184e0dc2c9db1f1a82236e1c1f | |
parent | 557c0df9a854350853ae0609a7728a4fb1ba3383 (diff) | |
download | ffmpeg-38e4bcae0944cd58de6bce0f28108bf95a54070a.tar.gz |
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.
-rw-r--r-- | libavformat/matroska.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c index f3e1be796d..c8e53416d3 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}, |