I am creating a videogame in C using opengl with the support of SDL. I am using SDL_Mixer to play sounds as well as the music. But actually the control that SDL_Mixer gives me is low and there are certain things out of my possibilities.
The music is a wav file that plays and loops fine. But the problem is that some songs should not loop from the beginning because the have an introduction part before the loop. I tried splitting the wav in two parts, play the intro and then play the looping part, but there is a small silence gap that breaks everything.
I know about a small multimedia application that let me to reposition the sound with a very simple script like:
if (sound.current_position > end_of_loop_position)
sound.current_position= sound.current_position - (end_of_loop_position - start_of_loop_position);
And with this it was possible to reset the loop into the desired position with no silence gap.
I would like to know if there is any way to do this using SDL_Mixer, but it seems the current play position does not exist in the api.
So, I need to solve this issue. I has been trying some sound libs reccomended around here but most of them are not free on commercial purposes. If I need a new lib I need it easy to use, portable and that allows me to play with the volume and the channels.
Any solution?