Merge pull request #10471 from Kelebek1/test2

Wait indefinitely when audio buffer queue is too big
This commit is contained in:
liamwhite 2023-05-28 13:17:12 -04:00 committed by GitHub
commit 88ccc420b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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