I am currently planning on using both avcodec, as well as RebelSDL plugins.
Idea would be that audio would work through avcodec.
RebelSDL does have an option to use Hollywoods own audio system, instead of RebelSDL version by using UseAudioAdapter=False
But how does this conflicting situation go?
As in, I could have:
Code: Select all
@REQUIRE "rebelsdl"
@REQUIRE "avcodec"Code: Select all
@REQUIRE "rebelsdl", {UseAudioAdapter=False}
@REQUIRE "avcodec"Code: Select all
@REQUIRE "avcodec"
@REQUIRE "rebelsdl"Code: Select all
@REQUIRE "avcodec"
@REQUIRE "rebelsdl", {UseAudioAdapter=False}