diff options
| author | Liam <byteslice@airmail.cc> | 2023-11-12 23:10:53 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2023-11-12 23:10:53 -0500 |
| commit | ecaa038b4da24fe75d3da6a4a18034285faac69d (patch) | |
| tree | 1bde4040130e452c19f508b48055cc8e09494e8c /src/audio_core/sink/sink_stream.h | |
| parent | 767c4b5a992bfeeae9194bc9f5a3dc63996645df (diff) | |
audio_core: ignore renderer wait when stream is paused
Diffstat (limited to 'src/audio_core/sink/sink_stream.h')
| -rw-r--r-- | src/audio_core/sink/sink_stream.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/audio_core/sink/sink_stream.h b/src/audio_core/sink/sink_stream.h index 6a4996ca3..f2ccd19b8 100644 --- a/src/audio_core/sink/sink_stream.h +++ b/src/audio_core/sink/sink_stream.h @@ -214,6 +214,12 @@ public: void WaitFreeSpace(std::stop_token stop_token); protected: + /** + * Unblocks the ADSP if the stream is paused. + */ + void SignalPause(); + +protected: /// Core system Core::System& system; /// Type of this stream |
