diff options
author | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2023-05-10 17:59:21 +0100 |
---|---|---|
committer | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2023-05-18 13:03:32 +0100 |
commit | d75bcdd07793954e6c33ba131871c183492b32b0 (patch) | |
tree | dcdacfe32430c6a33553dc7ae440c4a7011ef9ab /src/audio_core/sink | |
parent | f35c14fb73ed5a27f147f33e10bded1b26717b2d (diff) |
Smooth out the DSP callback by adding a 5ms wait time limit
Diffstat (limited to 'src/audio_core/sink')
-rw-r--r-- | src/audio_core/sink/sink_stream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/sink/sink_stream.cpp b/src/audio_core/sink/sink_stream.cpp index 13ba26e74..9bbb54162 100644 --- a/src/audio_core/sink/sink_stream.cpp +++ b/src/audio_core/sink/sink_stream.cpp @@ -271,8 +271,8 @@ u64 SinkStream::GetExpectedPlayedSampleCount() { void SinkStream::WaitFreeSpace() { std::unique_lock lk{release_mutex}; - release_cv.wait( - lk, [this]() { return queued_buffers < max_queue_size || system.IsShuttingDown(); }); + release_cv.wait_for(lk, std::chrono::milliseconds(5), + [this]() { return queued_buffers < max_queue_size; }); } } // namespace AudioCore::Sink |