From: Ryan C. Gordon Date: Fri, 12 Aug 2005 07:43:12 +0000 (+0000) Subject: Disable AL_EXT_vorbis, as untested. X-Git-Url: https://git.jsancho.org/?a=commitdiff_plain;h=c62522f90f5dc405505af885e00c8134f17d8c88;p=lugaru.git Disable AL_EXT_vorbis, as untested. --- diff --git a/Source/openal_wrapper.cpp b/Source/openal_wrapper.cpp index 379b5b2..dc40cac 100644 --- a/Source/openal_wrapper.cpp +++ b/Source/openal_wrapper.cpp @@ -313,6 +313,7 @@ static void *decode_to_pcm(const char *_fname, ALenum &format, ALsizei &size, AL ALubyte *retval = NULL; + #if 0 // untested, so disable this! // Can we just feed it to the AL compressed? if (alIsExtensionPresent((const ALubyte *) "AL_EXT_vorbis")) { @@ -331,6 +332,7 @@ static void *decode_to_pcm(const char *_fname, ALenum &format, ALsizei &size, AL } return retval; } + #endif // Uncompress and feed to the AL. OggVorbis_File vf;