diff --git a/src/input/r_avi.cpp b/src/input/r_avi.cpp index f3b55a044..e455ee966 100644 --- a/src/input/r_avi.cpp +++ b/src/input/r_avi.cpp @@ -255,6 +255,7 @@ avi_reader_c::add_audio_demuxer(int aid) { demuxer.channels, demuxer.bits_per_sample, ti); break; + case 0x0050: // MP2 case 0x0055: // MP3 if (verbose) mxinfo(FMT_TID "Using the MPEG audio output module.\n", ti->fname, @@ -587,6 +588,9 @@ avi_reader_c::identify() { case 0x0001: type = "PCM"; break; + case 0x0050: + type = "MP2"; + break; case 0x0055: type = "MP3"; break;