aboutsummaryrefslogtreecommitdiff
path: root/src/audio_core/renderer
AgeCommit message (Collapse)Author
2022-10-03common: remove "yuzu:" prefix from thread namesLiam
2022-09-21audio_renderer: Make GetCommandBuffer() take a u32Lioncash
This function is only ever called with unsigned types, and all of the other interface functions take session_id as a u32, so this makes the class a little more consistent.
2022-09-16Merge pull request #8914 from lioncash/audio-constbunnei
audio_core: Mark several member functions as const
2022-09-16Merge pull request #8911 from lioncash/cexpr-stringMorph
audio_device: Make AudioDeviceName constructor constexpr
2022-09-16audio_renderer: Pass command buffer by const referenceLioncash
This is just being copied and isn't modified at all.
2022-09-16node_states: Mark relevant member functions as constLioncash
2022-09-16i3dl2/reverb: Mark relevant member functions as constLioncash
These two don't modify member state.
2022-09-16behavior_info: Mark CopyErrorInfo as constLioncash
This doesn't modify member state. We can also mark the parameter of AppendError as const as well, since it isn't modified.
2022-09-16audio_device: Mark GetDeviceVolume as constLioncash
This doesn't modify instance state.
2022-09-15Merge pull request #8878 from Kelebek1/remove_pausebunnei
Remove pause callbacks from coretiming
2022-09-15Merge pull request #8901 from lioncash/docsliamwhite
audio_core: Amend documentation comment tags
2022-09-15audio_core: Amend documentation tagsLioncash
Resolves a wackload of -Wdocumentation warnings due to mismatching tags and whatnot.
2022-09-15audio_device: Mark member functions as const where applicableLioncash
These member functions don't modify any internal state.
2022-09-15audio_device: Make AudioDeviceName constructor constexprLioncash
These are used as read-only arrays, so we can make the data read-only and available at compile-time. Now constructing an AudioDevice no longer needs to initialize some tables
2022-09-13compressor: Simplify memset in InitializeCompressorEffectLioncash
Provides equivalent behavior while being significantly smaller.
2022-09-13compressor: Mark params parameters as constLioncash
These functions don't modify the parameters.
2022-09-13compressor: Remove unneeded casts in ApplyCompressorEffectLioncash
Same behavior, but also silences a -Wcast-qual warning, since the second cast casts away const.
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-29audio_core: fix -Wuninitialized when compiling with ASanLiam
2022-07-27Avoid depop out of boundsKelebek1
2022-07-22Project AndioKelebek1