mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
- 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:
parent
8989e140c7
commit
ad4549f28d
@ -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 }
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user