summaryrefslogtreecommitdiffstats
path: root/src/audio_core/device (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-26audio: Interpolate system manager sample count using host sink sample infoBilly Laws1-2/+1
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.
2023-03-24memory: rename global memory references to application memoryLiam1-2/+2
2023-03-12general: fix spelling mistakesLiam1-1/+1
2022-12-16Signal buffer event on audio in/out system stop, and force remove all registered audio buffersKelebek13-3/+16
2022-09-16audio_buffers: Pass by const-ref in AppendBuffersLioncash1-1/+1
This function doesn't modify the passed in buffer, so we can make that explicit.
2022-09-16device_session: Convert for loop into ranged for in AppendBuffersLioncash1-5/+5
Simplifies the indexing code a little bit.
2022-09-16device_session: Pass arguments by const-ref in relevant functionsLioncash3-7/+7
These functions don't modify the passed in audio buffers, so we can signify that in the interface.
2022-09-15audio_core: Amend documentation tagsLioncash2-2/+5
Resolves a wackload of -Wdocumentation warnings due to mismatching tags and whatnot.
2022-09-02Rework audio output, connecting AudioOut into coretiming to fix desync during heavy loads.Kelebek14-21/+75
2022-07-22Project AndioKelebek14-0/+565