I have implemented a simple Qt program based on the example in the QAudioOutput
documentation here.
The program plays raw audio from a file using QAudioOutput
when I press a button.
The audio plays fine but I receive Got a buffer underflow!
at the end of the file before QAudioOutput
changes to the idle state.
Is this a normal indication that QAudioOutput
has reached the end of the file, and I should ignored it, or is this an indication that QAudio
has overshot the end of the file, and that I should address it somehow?