浏览代码

Fix OGG streams never ending playback

Ellen Poe 3 年之前
父节点
当前提交
fe51c099c1
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      modules/vorbis/audio_stream_ogg_vorbis.cpp

+ 1 - 1
modules/vorbis/audio_stream_ogg_vorbis.cpp

@@ -56,7 +56,7 @@ int AudioStreamPlaybackOGGVorbis::_mix_internal(AudioFrame *p_buffer, int p_fram
 		todo -= mixed;
 		frames_mixed += mixed;
 		start_buffer += mixed;
-		if (!have_packets_left) {
+		if (!have_packets_left && !have_samples_left) {
 			//end of file!
 			bool is_not_empty = mixed > 0 || vorbis_stream->get_length() > 0;
 			if (vorbis_stream->loop && is_not_empty) {