[openal] Alure problem with vs2013

Chris Robinson chris.kcat at gmail.com
Tue May 26 05:20:10 EDT 2015


On 05/26/2015 01:31 AM, developer at oldunreal.com wrote:
> The old story, no matter what I try, it always gives me "Unsupported
> type" (to avoid external problems I also used alureplay for testing).

Ah, I see. The non-DYNLOAD path in codec_mpg123.cpp is missing the 
mpg123_init/mpg123_exit calls in the Init/Deinit methods, so the other 
mpg123 functions fail. If you change

     static void Init() { }
     static void Deinit() { }

to

     static void Init() { mpg123_init(); }
     static void Deinit() { mpg123_exit(); }

it might start working.


More information about the openal mailing list