| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-12-28 | cmake: make cubeb and SDL2 optional | Liam | |
| 2022-12-16 | Signal buffer event on audio in/out system stop, and force remove all ↵ | Kelebek1 | |
| registered audio buffers | |||
| 2022-12-10 | audio_core: remove explicitly defaulted and implicitly deleted constructors | Liam | |
| 2022-12-06 | cmake: use sdl2 imported target | Alexandre Bouvier | |
| 2022-12-04 | cmake: prefer system libraries | Alexandre Bouvier | |
| 2022-12-03 | Merge pull request #9300 from ameerj/pch | liamwhite | |
| CMake: Use precompiled headers to improve compile times | |||
| 2022-12-03 | Merge pull request #9289 from liamwhite/fruit-company | liamwhite | |
| general: fix compile for Apple Clang | |||
| 2022-11-30 | CMake: Consolidate common PCH headers | ameerj | |
| 2022-11-30 | Merge pull request #9320 from yuzu-emu/fix-audio-suspend | Fernando S | |
| AudioCore: Take suspend lock when stalling the running process. | |||
| 2022-11-29 | audio_core: sink_stream: Hold the suspend lock when process is stalled. | bunnei | |
| - Prevents us from clashing with other callers trying to un/stall. | |||
| 2022-11-29 | CMake: Use precompiled headers | ameerj | |
| 2022-11-28 | CMake: Directly link to SDL2-static when appropriate | lat9nq | |
| Trying to be lazy and alias SDL2 to SDL2-static causes issues in later versions of CMake. Just use the same condition to tell which one to use. | |||
| 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-11-09 | Initial ARM64 support | Liam | |
| 2022-10-26 | audio_in/out_system: Pass Initialize members by value where applicable | Lioncash | |
| applet_resource_user_id isn't actually modified and is just assigned to a member variable, so this doesn't need to be a mutable reference. Similarly, the device name itself isn't modified and is only moved. We pass by value here, since we can still perform the move, but eliminate a sneaky set of calls that can unintentionally destroy the original string. Given how nested the calls are, it's good to get rid of this potential vector for a use-after-move bug. | |||
| 2022-10-22 | general: Resolve -Wclass-memaccess | Morph | |
| 2022-10-22 | general: Enforce C4800 everywhere except in video_core | Morph | |
| 2022-10-22 | CMakeLists: Remove all redundant warnings | Morph | |
| These are already explicitly or implicitly set in src/CMakeLists.txt | |||
| 2022-10-19 | Update audio_core for firmware 15.0.0 | Kelebek1 | |
| 2022-10-16 | sdl2_sink: Inline variable init into if condition | lat9nq | |
| Co-authored-by: Mai <mathew1800@gmail.com> | |||
| 2022-10-16 | sdl2_sink: Distinguish between capture and non-capture device names | lat9nq | |
| The function prototype appears to care whether we are loading capture devices or not, and SDL_GetAudioDeviceName has a parameter to use it, but for some reason it isn't. This puts `capture` where it goes. | |||
| 2022-10-16 | sdl2_sink: Check for null string when loading SDL audio devices | lat9nq | |
| Attempting to place a null string into a vector of strings causes an error that closes the application. Don't. | |||
| 2022-10-14 | Merge pull request #9061 from liamwhite/writable-event | liamwhite | |
| kernel: remove KWritableEvent | |||
| 2022-10-14 | audio_core: Revert sink name to sdl2 | Narr the Reg | |
| 2022-10-12 | kernel: remove KWritableEvent | Liam | |
| 2022-10-09 | Choose the SDL audio backend when Cubeb reports too high of a latency | Kelebek1 | |
| 2022-10-03 | common: remove "yuzu:" prefix from thread names | Liam | |
| 2022-09-23 | Merge pull request #8941 from Kelebek1/single_core_sucks | bunnei | |
| Do not try to pause core timing from the audio thread when using single-core | |||
| 2022-09-23 | Merge pull request #8939 from lioncash/render | Morph | |
| audio_renderer: Make GetCommandBuffer() take a u32 | |||
| 2022-09-22 | Do not try to pause core timing from the audio thread when using single-core | Kelebek1 | |
| 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-21 | audio_manager: Forward declare result type | Lioncash | |
| Moves the include into the cpp file to lessen header dependencies. | |||
| 2022-09-21 | audio_manager: Remove redundant cast in ThreadFunc() | Lioncash | |
| We can just use a local here to get rid of a second cast. | |||
| 2022-09-21 | audio_manager: move std::functions in SetOutManager/SetInManager | Lioncash | |
| Prevents unnecessary reallocations in the event the captured variables are larger than the internal std::function buffer. | |||
| 2022-09-21 | audio_manager: Remove unused forward declarations | Lioncash | |
| Allows us to get rid of some unnecessary forward declarations and includes. | |||
| 2022-09-21 | audio_manager: Remove unused sessions_started member variable | Lioncash | |
| This isn't used, so it can be removed. | |||
| 2022-09-21 | audio_manager: Remove dependence on system state | Lioncash | |
| This isn't used by the class, so this can be removed for the time being. | |||
| 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 | sink_stream: Mark GetQueueSize as const | Lioncash | |
| 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-16 | audio_render_manager: Mark several functions as const | Lioncash | |
| 2022-09-16 | audio_in: Mark several functions as const | Lioncash | |
| These functions don't modify class state, so we can mark them as such | |||
| 2022-09-16 | audio_out: Mark several functions as const | Lioncash | |
| These don't affect class state, so we can mark them as such. | |||
