| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Signal buffer event on audio in/out system stop, and force remove all ↵ | 2022-12-16 | 5 | -7/+26 | |
| | | | | | registered audio buffers | ||||
| * | audio_core: remove explicitly defaulted and implicitly deleted constructors | 2022-12-10 | 2 | -2/+0 | |
| | | |||||
| * | cmake: use sdl2 imported target | 2022-12-06 | 1 | -5/+1 | |
| | | |||||
| * | cmake: prefer system libraries | 2022-12-04 | 1 | -2/+2 | |
| | | |||||
| * | Merge pull request #9300 from ameerj/pch | 2022-12-03 | 2 | -0/+11 | |
| |\ | | | | | CMake: Use precompiled headers to improve compile times | ||||
| | * | CMake: Consolidate common PCH headers | 2022-11-30 | 1 | -7/+1 | |
| | | | |||||
| | * | CMake: Use precompiled headers | 2022-11-29 | 2 | -0/+17 | |
| | | | |||||
| * | | Merge pull request #9289 from liamwhite/fruit-company | 2022-12-03 | 9 | -4/+14 | |
| |\ \ | | | | | | | general: fix compile for Apple Clang | ||||
| | * | | general: fix compile for Apple Clang | 2022-11-22 | 9 | -4/+14 | |
| | | | | |||||
| * | | | Merge pull request #9320 from yuzu-emu/fix-audio-suspend | 2022-11-30 | 2 | -7/+9 | |
| |\ \ \ | | | | | | | | | AudioCore: Take suspend lock when stalling the running process. | ||||
| | * | | | audio_core: sink_stream: Hold the suspend lock when process is stalled. | 2022-11-29 | 2 | -7/+9 | |
| | |/ / | | | | | | | | | | - Prevents us from clashing with other callers trying to un/stall. | ||||
| * | / | CMake: Directly link to SDL2-static when appropriate | 2022-11-28 | 1 | -1/+5 | |
| | |/ |/| | | | | | | | 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. | ||||
| * | | Use the maximum input index for samples buffer span size, not just the input ↵ | 2022-11-22 | 1 | -6/+8 | |
| |/ | | | | count | ||||
| * | Add break for default cases | 2022-11-13 | 1 | -0/+1 | |
| | | | | | | | | | | | | 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 | ||||
| * | Initial ARM64 support | 2022-11-09 | 1 | -1/+1 | |
| | | |||||
| * | audio_in/out_system: Pass Initialize members by value where applicable | 2022-10-26 | 4 | -6/+6 | |
| | | | | | | | | | | | | 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. | ||||
| * | general: Resolve -Wclass-memaccess | 2022-10-22 | 3 | -3/+3 | |
| | | |||||
| * | general: Enforce C4800 everywhere except in video_core | 2022-10-22 | 1 | -0/+1 | |
| | | |||||
| * | CMakeLists: Remove all redundant warnings | 2022-10-22 | 1 | -10/+0 | |
| | | | | | These are already explicitly or implicitly set in src/CMakeLists.txt | ||||
| * | Update audio_core for firmware 15.0.0 | 2022-10-19 | 3 | -33/+72 | |
| | | |||||
| * | sdl2_sink: Inline variable init into if condition | 2022-10-16 | 1 | -2/+1 | |
| | | | | | Co-authored-by: Mai <mathew1800@gmail.com> | ||||
| * | sdl2_sink: Distinguish between capture and non-capture device names | 2022-10-16 | 1 | -1/+1 | |
| | | | | | | | | | 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. | ||||
| * | sdl2_sink: Check for null string when loading SDL audio devices | 2022-10-16 | 1 | -1/+4 | |
| | | | | | | | | Attempting to place a null string into a vector of strings causes an error that closes the application. Don't. | ||||
| * | Merge pull request #9061 from liamwhite/writable-event | 2022-10-14 | 3 | -8/+8 | |
| |\ | | | | | kernel: remove KWritableEvent | ||||
| | * | kernel: remove KWritableEvent | 2022-10-12 | 3 | -8/+8 | |
| | | | |||||
| * | | audio_core: Revert sink name to sdl2 | 2022-10-14 | 1 | -2/+2 | |
| | | | |||||
| * | | Choose the SDL audio backend when Cubeb reports too high of a latency | 2022-10-09 | 6 | -30/+93 | |
| |/ | |||||
| * | common: remove "yuzu:" prefix from thread names | 2022-10-03 | 2 | -2/+2 | |
| | | |||||
| * | Merge pull request #8941 from Kelebek1/single_core_sucks | 2022-09-23 | 1 | -2/+7 | |
| |\ | | | | | Do not try to pause core timing from the audio thread when using single-core | ||||
| | * | Do not try to pause core timing from the audio thread when using single-core | 2022-09-22 | 1 | -2/+7 | |
| | | | |||||
| * | | Merge pull request #8939 from lioncash/render | 2022-09-23 | 2 | -2/+2 | |
| |\ \ | | | | | | | audio_renderer: Make GetCommandBuffer() take a u32 | ||||
| | * | | audio_renderer: Make GetCommandBuffer() take a u32 | 2022-09-21 | 2 | -2/+2 | |
| | |/ | | | | | | | | | | | 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. | ||||
| * | | audio_manager: Forward declare result type | 2022-09-21 | 2 | -1/+3 | |
| | | | | | | | | | Moves the include into the cpp file to lessen header dependencies. | ||||
| * | | audio_manager: Remove redundant cast in ThreadFunc() | 2022-09-21 | 1 | -3/+5 | |
| | | | | | | | | | We can just use a local here to get rid of a second cast. | ||||
| * | | audio_manager: move std::functions in SetOutManager/SetInManager | 2022-09-21 | 1 | -2/+2 | |
| | | | | | | | | | | | Prevents unnecessary reallocations in the event the captured variables are larger than the internal std::function buffer. | ||||
| * | | audio_manager: Remove unused forward declarations | 2022-09-21 | 2 | -10/+0 | |
| | | | | | | | | | | | Allows us to get rid of some unnecessary forward declarations and includes. | ||||
| * | | audio_manager: Remove unused sessions_started member variable | 2022-09-21 | 1 | -2/+0 | |
| | | | | | | | | | This isn't used, so it can be removed. | ||||
| * | | audio_manager: Remove dependence on system state | 2022-09-21 | 3 | -10/+4 | |
| |/ | | | | This isn't used by the class, so this can be removed for the time being. | ||||
| * | Merge pull request #8914 from lioncash/audio-const | 2022-09-16 | 25 | -82/+87 | |
| |\ | | | | | audio_core: Mark several member functions as const | ||||
| | * | audio_renderer: Pass command buffer by const reference | 2022-09-16 | 4 | -4/+4 | |
| | | | | | | | | | This is just being copied and isn't modified at all. | ||||
| | * | sink_stream: Mark GetQueueSize as const | 2022-09-16 | 1 | -1/+1 | |
| | | | |||||
| | * | node_states: Mark relevant member functions as const | 2022-09-16 | 1 | -2/+2 | |
| | | | |||||
| | * | i3dl2/reverb: Mark relevant member functions as const | 2022-09-16 | 2 | -4/+4 | |
| | | | | | | | | | These two don't modify member state. | ||||
| | * | behavior_info: Mark CopyErrorInfo as const | 2022-09-16 | 4 | -6/+6 | |
| | | | | | | | | | | | | | | | This doesn't modify member state. We can also mark the parameter of AppendError as const as well, since it isn't modified. | ||||
| | * | audio_device: Mark GetDeviceVolume as const | 2022-09-16 | 2 | -2/+2 | |
| | | | | | | | | | This doesn't modify instance state. | ||||
| | * | audio_render_manager: Mark several functions as const | 2022-09-16 | 2 | -6/+6 | |
| | | | |||||
| | * | audio_in: Mark several functions as const | 2022-09-16 | 4 | -18/+18 | |
| | | | | | | | | | These functions don't modify class state, so we can mark them as such | ||||
| | * | audio_out: Mark several functions as const | 2022-09-16 | 4 | -16/+17 | |
| | | | | | | | | | These don't affect class state, so we can mark them as such. | ||||
| | * | audio_buffers: Pass by const-ref in AppendBuffers | 2022-09-16 | 3 | -13/+17 | |
| | | | | | | | | | | | This function doesn't modify the passed in buffer, so we can make that explicit. | ||||
| | * | device_session: Convert for loop into ranged for in AppendBuffers | 2022-09-16 | 1 | -5/+5 | |
| | | | | | | | | | Simplifies the indexing code a little bit. | ||||