"Noncontinuous raw sample data" in fact refers to the audio part of videos. I can only decode it little by little, but not all data at once.
Currently I use SDL's audio callback system to handle that.
And now, I want my program to play a short piece of music when some keys are pressed, just like playing a video, with piano accompaniment controlled by the user.
I can implement the user controlled part with SDL_mixer, but it seems that SDL_mixer is not designed for noncontinuous audio data. Maybe SFML's sf:Audio can do it well, but it's in C++.