mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-22 10:45:39 +01:00
Audren wait as suggested by ByLaws
This commit is contained in:
parent
d6db422098
commit
9c2b211f12
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user