FFmpeg and SDL_mixer

Is it possible to decode the audio via FFmpeg, a buffer, to give it to SDL_mixer to add various effects. Next get a buffer already in effect and play it? thanks in advance

Is it possible to decode the audio via FFmpeg, a buffer, to give it to
SDL_mixer to add various effects. Next get a buffer already in effect and
play it? thanks in advance

I had a series of posts earlier concerning this same subject.

You’ll basically wanna use Mix_QuickLoad_RAW() and the static buffer you
fill from ffmpeg, and Mix_RegisterEffect to refill that buffer.

How this works with applying alternate / other / more effects, I’m not sure.
I just used the above as a way of having ffmpeg decoded audio get pushed
into an SDL_Mixer chunk/channel.

-WillOn Fri, Mar 25, 2011 at 3:30 AM, Kyborg2011 wrote: