summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKelebek1 <eeeedddccc@hotmail.co.uk>2023-05-27 18:38:07 +0200
committerKelebek1 <eeeedddccc@hotmail.co.uk>2023-05-27 18:38:07 +0200
commit9c2b211f128f39f5cbcf761cc1222e01011f47e2 (patch)
tree179f168818b415b36c3e757de05607c4dc72e03b
parentMerge pull request #10414 from liamwhite/anv-push-descriptor (diff)
downloadyuzu-9c2b211f128f39f5cbcf761cc1222e01011f47e2.tar
yuzu-9c2b211f128f39f5cbcf761cc1222e01011f47e2.tar.gz
yuzu-9c2b211f128f39f5cbcf761cc1222e01011f47e2.tar.bz2
yuzu-9c2b211f128f39f5cbcf761cc1222e01011f47e2.tar.lz
yuzu-9c2b211f128f39f5cbcf761cc1222e01011f47e2.tar.xz
yuzu-9c2b211f128f39f5cbcf761cc1222e01011f47e2.tar.zst
yuzu-9c2b211f128f39f5cbcf761cc1222e01011f47e2.zip
-rw-r--r--src/audio_core/sink/sink_stream.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/audio_core/sink/sink_stream.cpp b/src/audio_core/sink/sink_stream.cpp
index 9bbb54162..2331aaff9 100644
--- a/src/audio_core/sink/sink_stream.cpp
+++ b/src/audio_core/sink/sink_stream.cpp
@@ -273,6 +273,9 @@ void SinkStream::WaitFreeSpace() {
std::unique_lock lk{release_mutex};
release_cv.wait_for(lk, std::chrono::milliseconds(5),
[this]() { return queued_buffers < max_queue_size; });
+ if (queued_buffers > max_queue_size + 3) {
+ release_cv.wait(lk, [this]() { return queued_buffers < max_queue_size; });
+ }
}
} // namespace AudioCore::Sink