> Is there a way to implement pitch shift with SDL_Mixer? Or an > alternate SDL library that would do that (but I also need midi/BGM > support in the mixer)? One alternative is OpenAL (+ SDL_sound to decode?). Pitch shifting is easy in OpenAL, e.g. alSourcef(mySource1, AL_PITCH, pitch_multiplier); -Eric