aboutsummaryrefslogtreecommitdiff
path: root/src/audio_core/sink/sink_stream.h
AgeCommit message (Collapse)Author
2023-11-12audio_core: ignore renderer wait when stream is pausedLiam
2023-06-30sink_stream: Resolve heap buffer corruption due to out of bounds writeMorph
Also, remove the use of ScratchBuffer when upmixing, as other channels may not be initialized with zeroed out data.
2023-06-22Remove memory allocations in some hot pathsKelebek1
2023-06-04audio_renderer: resolve adsp thread deadlock shutdownLiam
2023-04-08Use GetGlobalTimeNs as opposed to clock ticksBilly Laws
2023-03-27audio_core: No longer stall when sink queue is fullBilly Laws
Now the audout and audren update rates are tied to the sink status stalling is no longer necessary.
2023-03-27Run clang-formatBilly Laws
2023-03-27audio: Wait for samples on the emulated DSP side to avoid desyncsBilly Laws
Waiting on the host side is inaccurate and leads to desyncs in the event of the sink missing a deadline that require stalls to fix. By waiting for the sink to have space before even starting rendering such desyncs can be avoided.
2023-03-26audio: Interpolate system manager sample count using host sink sample infoBilly Laws
This avoids the need to stall if the host sink sporadically misses the deadline, in such a case the previous implementation would report them samples as being played on-time, causing the guest to send more samples and leading to a gradual buildup.
2022-11-29audio_core: sink_stream: Hold the suspend lock when process is stalled.bunnei
- Prevents us from clashing with other callers trying to un/stall.
2022-09-16sink_stream: Mark GetQueueSize as constLioncash
2022-09-15Merge pull request #8878 from Kelebek1/remove_pausebunnei
Remove pause callbacks from coretiming
2022-09-15audio_core: Amend documentation tagsLioncash
Resolves a wackload of -Wdocumentation warnings due to mismatching tags and whatnot.
2022-09-13Remove pause callbacks from coretimingKelebek1
2022-09-02Rework audio output, connecting AudioOut into coretiming to fix desync ↵Kelebek1
during heavy loads.
2022-07-22Project AndioKelebek1