| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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. | |||
| 2022-09-16 | audio_buffers: Pass by const-ref in AppendBuffers | Lioncash | |
| This function doesn't modify the passed in buffer, so we can make that explicit. | |||
| 2022-09-16 | device_session: Convert for loop into ranged for in AppendBuffers | Lioncash | |
| Simplifies the indexing code a little bit. | |||
| 2022-09-16 | device_session: Pass arguments by const-ref in relevant functions | Lioncash | |
| These functions don't modify the passed in audio buffers, so we can signify that in the interface. | |||
| 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 | |||
| 2022-09-13 | compressor: Simplify memset in InitializeCompressorEffect | Lioncash | |
| Provides equivalent behavior while being significantly smaller. | |||
| 2022-09-13 | compressor: Mark params parameters as const | Lioncash | |
| These functions don't modify the parameters. | |||
| 2022-09-13 | compressor: Remove unneeded casts in ApplyCompressorEffect | Lioncash | |
| Same behavior, but also silences a -Wcast-qual warning, since the second cast casts away const. | |||
| 2022-09-13 | Remove pause callbacks from coretiming | Kelebek1 | |
| 2022-09-12 | Remove a pragma once from a cpp file | Kelebek1 | |
| 2022-09-04 | Don't stall with nvdec | Kelebek1 | |
| 2022-09-02 | Rework audio output, connecting AudioOut into coretiming to fix desync ↵ | Kelebek1 | |
| during heavy loads. | |||
