- Reorder supported codecs list

- Add changes for upcoming audio compression changes (file extensions changed to standard ones)

svn-id: r40843
This commit is contained in:
Johannes Schickel 2009-05-24 00:11:28 +00:00
parent 8989e140c7
commit ad4549f28d

View File

@ -252,19 +252,24 @@ Audio::AudioStream *makeVOCStream(Common::SeekableReadStream *stream, bool dispo
} // end of anonymous namespace
const Sound::SpeechCodecs Sound::_supportedCodecs[] = {
#ifdef USE_FLAC
{ ".VOF", Audio::makeFlacStream },
#endif // USE_FLAC
#ifdef USE_VORBIS
{ ".VOG", Audio::makeVorbisStream },
#endif // USE_VORBIS
#ifdef USE_MAD
{ ".VO3", Audio::makeMP3Stream },
#endif // USE_MAD
{ ".VOC", makeVOCStream },
{ "", makeVOCStream },
#ifdef USE_MAD
{ ".VO3", Audio::makeMP3Stream },
{ ".MP3", Audio::makeMP3Stream },
#endif // USE_MAD
#ifdef USE_VORBIS
{ ".VOG", Audio::makeVorbisStream },
{ ".OGG", Audio::makeVorbisStream },
#endif // USE_VORBIS
#ifdef USE_FLAC
{ ".VOF", Audio::makeFlacStream },
{ ".FLA", Audio::makeFlacStream },
#endif // USE_FLAC
{ 0, 0 }
};