eeermmm.... don't know. I assumed that it goes around in a circle. From my understanding (from looking at the code):
Ring buffer is in two sections. Music starts streaming from start of buffer and moves along. If the playhead (sorry, flash terminology, its what I know

- for me, playhead = current position being read from buffer) gets to the end, it starts again from the start.
If you update the buffer (with one section worth of data) it fills the upper section if the playhead is in the lower section, and then waits for the playhead to get to the upper section. If the playhead is in the lower section, it updates the upper section, and then waits for the playhead to get there.
If this is correct, then there seems to be a lot of 'waiting'

Maybe a longer buffer is the key (more sections) and no waiting unless the buffer is full? i.e. With two sections you have to wait because you might overwrite the current section, but with, say, five sections, you can update 4 sections withouit waiting at all, but you need a bigger buffer.
EDIT: hmm. looking back at the libmikmod code, maybe this is what it's doing

... with 6 sections...