android: audio_core: Avoid shutdown hang.

This commit is contained in:
bunnei 2023-05-31 18:21:10 -07:00
parent 9ca8687b5f
commit 40e938376b

View File

@ -273,9 +273,12 @@ 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; });
#ifndef ANDROID
// This wait can cause a problematic shutdown hang on Android.
if (queued_buffers > max_queue_size + 3) {
release_cv.wait(lk, [this]() { return queued_buffers < max_queue_size; });
}
#endif
}
} // namespace AudioCore::Sink