Fixed AudioStreamPlaybackOGGVorbis::_mix_internal getting stuck in infinite loop causing audio to freeze
This commit is contained in:
parent
260d179d31
commit
207f596e69
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ void AudioStreamPlaybackOGGVorbis::_mix_internal(AudioFrame *p_buffer, int p_fra
|
|||
|
||||
int todo = p_frames;
|
||||
|
||||
while (todo) {
|
||||
while (todo && active) {
|
||||
|
||||
int mixed = stb_vorbis_get_samples_float_interleaved(ogg_stream, 2, (float *)p_buffer, todo * 2);
|
||||
todo -= mixed;
|
||||
|
|
Loading…
Reference in a new issue