Merged 2166

This commit is contained in:
Moritz Bunkus 2004-09-14 12:24:54 +00:00
parent 1e07f31d07
commit d51e9c3b6c

View File

@ -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;