Add Ogg Opus support

This commit is contained in:
Zack Middleton 2013-02-17 18:32:05 -06:00
parent 1b0fb6e8d8
commit 3dd5c5d862
4 changed files with 649 additions and 0 deletions

View file

@ -124,6 +124,10 @@ void S_CodecInit()
{
codecs = NULL;
#ifdef USE_CODEC_OPUS
S_CodecRegister(&opus_codec);
#endif
#ifdef USE_CODEC_VORBIS
S_CodecRegister(&ogg_codec);
#endif