From ed9d1df852012439de7a0112d1a272beff2a9f47 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 5 Feb 2005 17:40:46 +0000 Subject: [PATCH] Don't forget about MP2 audio. --- src/extract/xtr_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extract/xtr_base.cpp b/src/extract/xtr_base.cpp index e47e8423b..8e22b46ca 100644 --- a/src/extract/xtr_base.cpp +++ b/src/extract/xtr_base.cpp @@ -234,7 +234,7 @@ xtr_base_c::create_extractor(const string &new_codec_id, track_spec_t &tspec) { // Audio formats if ((new_codec_id == MKV_A_AC3) || - (new_codec_id == MKV_A_MP3) || + starts_with_case(new_codec_id, "A_MPEG/L") || (new_codec_id == MKV_A_DTS)) return new xtr_base_c(new_codec_id, new_tid, tspec); else if (new_codec_id == MKV_A_PCM)