| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-07-02 | Use spans over guest memory where possible instead of copying data. | Kelebek1 | |
| 2023-06-22 | Remove memory allocations in some hot paths | Kelebek1 | |
| 2023-06-07 | core_timing: Use CNTPCT as the guest CPU tick | Morph | |
| Previously, we were mixing the raw CPU frequency and CNTFRQ. The raw CPU frequency (1020 MHz) should've never been used as CNTPCT (whose frequency is CNTFRQ) is the only counter available. | |||
| 2023-06-04 | audio_renderer: resolve adsp thread deadlock shutdown | Liam | |
| 2023-05-18 | Smooth out the DSP callback by adding a 5ms wait time limit | Kelebek1 | |
| 2023-05-01 | Wait for the terminate event before destroying a system instance | Kelebek1 | |
| 2023-04-01 | Merge pull request #9969 from bylaws/master | bunnei | |
| Audio synchronisation improvements | |||
| 2023-03-27 | Run clang-format | Billy Laws | |
| 2023-03-27 | audio: Wait for samples on the emulated DSP side to avoid desyncs | Billy 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-26 | audio: Interpolate system manager sample count using host sink sample info | Billy 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. | |||
| 2023-03-23 | memory: rename global memory references to application memory | Liam | |
| 2023-03-12 | general: fix spelling mistakes | Liam | |
| 2023-03-10 | Merge pull request #9917 from Morph1984/the-real-time | liamwhite | |
| native_clock: Re-adjust the RDTSC frequency to its real frequency | |||
| 2023-03-07 | core: Promote CPU/GPU threads to time critical | Morph | |
| And also demote Audren and CoreTiming to High thread priority. | |||
| 2023-03-06 | hle: rename legacy errors to Results | Liam | |
| 2023-03-02 | Fix a bug with the Reverb command in reading from the pre_delay line. | Kelebek1 | |
| 2023-02-16 | Merge pull request #9769 from Kelebek1/audio_oob | bunnei | |
| [audio_core] Fix depop prepare | |||
| 2023-02-15 | Merge pull request #9796 from liamwhite/current | liamwhite | |
| general: rename CurrentProcess to ApplicationProcess | |||
| 2023-02-14 | remove static from pointer sized or smaller types for aesthetics, change ↵ | arades79 | |
| constexpr static to static constexpr for consistency Signed-off-by: arades79 <scravers@protonmail.com> | |||
| 2023-02-14 | add static lifetime to constexpr values to force compile time evaluation ↵ | arades79 | |
| where possible Signed-off-by: arades79 <scravers@protonmail.com> | |||
| 2023-02-13 | general: rename CurrentProcess to ApplicationProcess | Liam | |
| 2023-02-13 | Fix biquad filter command's state buffer offset | Kelebek1 | |
| 2023-02-11 | Add fallback for memory read/write in case the address goes over a 4K page | Kelebek1 | |
| 2023-02-11 | Fix depop prepare receiving bad mix infos and writing out of bounds, and ↵ | Kelebek1 | |
| update aux a bit, may help | |||
| 2023-02-10 | biquad_filter: Clamp f64 in ApplyBiquadFilterFloat | Merry | |
| 2023-02-10 | biquad_filter: Fix rounding in ApplyBiquadFilterInt | Merry | |
| 2023-01-14 | upsample: Fix coefficient format | Merry | |
| 2023-01-14 | audio_core: Fix off-by-one error in upsampler | Merry | |
| 2022-12-10 | audio_core: remove explicitly defaulted and implicitly deleted constructors | Liam | |
| 2022-12-03 | Merge pull request #9289 from liamwhite/fruit-company | liamwhite | |
| general: fix compile for Apple Clang | |||
| 2022-11-22 | general: fix compile for Apple Clang | Liam | |
| 2022-11-22 | Use the maximum input index for samples buffer span size, not just the input ↵ | Kelebek1 | |
| count | |||
| 2022-11-13 | Add break for default cases | Kyle Kienapfel | |
| Visual Studio has an option to search all files in a solution, so I did a search in there for "default:" looking for any missing break statements. I've left out default statements that return something, and that throw something, even if via ThrowInvalidType. UNREACHABLE leads towards throw R_THROW macro leads towards a return | |||
| 2022-10-22 | general: Resolve -Wclass-memaccess | Morph | |
| 2022-10-19 | Update audio_core for firmware 15.0.0 | Kelebek1 | |
| 2022-10-12 | kernel: remove KWritableEvent | Liam | |
| 2022-10-03 | common: remove "yuzu:" prefix from thread names | Liam | |
| 2022-09-21 | audio_renderer: Make GetCommandBuffer() take a u32 | Lioncash | |
| 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-16 | Merge pull request #8914 from lioncash/audio-const | bunnei | |
| audio_core: Mark several member functions as const | |||
| 2022-09-16 | Merge pull request #8911 from lioncash/cexpr-string | Morph | |
| audio_device: Make AudioDeviceName constructor constexpr | |||
| 2022-09-16 | audio_renderer: Pass command buffer by const reference | Lioncash | |
| This is just being copied and isn't modified at all. | |||
| 2022-09-16 | node_states: Mark relevant member functions as const | Lioncash | |
| 2022-09-16 | i3dl2/reverb: Mark relevant member functions as const | Lioncash | |
| These two don't modify member state. | |||
| 2022-09-16 | behavior_info: Mark CopyErrorInfo as const | Lioncash | |
| 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-16 | audio_device: Mark GetDeviceVolume as const | Lioncash | |
| This doesn't modify instance state. | |||
| 2022-09-15 | Merge pull request #8878 from Kelebek1/remove_pause | bunnei | |
| Remove pause callbacks from coretiming | |||
| 2022-09-15 | Merge pull request #8901 from lioncash/docs | liamwhite | |
| audio_core: Amend documentation comment tags | |||
| 2022-09-15 | audio_core: Amend documentation tags | Lioncash | |
| Resolves a wackload of -Wdocumentation warnings due to mismatching tags and whatnot. | |||
| 2022-09-15 | audio_device: Mark member functions as const where applicable | Lioncash | |
| These member functions don't modify any internal state. | |||
| 2022-09-15 | audio_device: Make AudioDeviceName constructor constexpr | Lioncash | |
| 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 | |||
