Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | audio_core/audio_renderer: Fix typo in AuxInfo member name | Lioncash | 2018-11-13 | 1 | -1/+1 |
| | |||||
* | microprofile: Drop ReleaseActiveBuffer scope. | Markus Wick | 2018-11-06 | 1 | -4/+0 |
| | | | | | This was created with the unfinished resampling PR in mind. As the resampling is now on the audio thread, we don't need to care about this here any more. | ||||
* | time_stretch: Switch to values of Citra | fearlessTobi | 2018-10-29 | 1 | -3/+3 |
| | |||||
* | cubeb_sink: ignore null-name device when selecting | Weiyi Wang | 2018-10-27 | 1 | -1/+2 |
| | | | | We already ignore them on listing devices. We should do the same when selecting devices. This fix a crash when opening a specific device while there is a null device in the list | ||||
* | time_stretch: Remove unused m_channel_count member variable | Lioncash | 2018-10-24 | 2 | -3/+1 |
| | | | | This is only stored to, but never read from. | ||||
* | EffectOutStatus padding is now in hex | David Marcec | 2018-10-09 | 1 | -1/+1 |
| | |||||
* | Fixups for softlock | David Marcec | 2018-10-07 | 2 | -6/+7 |
| | |||||
* | Fixed missing return | David Marcec | 2018-10-07 | 1 | -1/+1 |
| | | | | | Softlock explanation: after effects are initialized in smo, nothing actually changes the state. It expects the state to always be initialized. With the previous testing, updating the states much like how we handle the memory pools continue to have the softlock(which is why I said it probably wasn't effects) after further examination it seems like effects need to be initialized but the state remains unchanged until further notice. For now, assertions are added for the aux buffers to see if they update, unable to check as I haven't gotten smo to actually update them yet. | ||||
* | Fixed smo softlock | David Marcec | 2018-10-07 | 2 | -13/+120 |
| | |||||
* | stream: Preserve enum class type in GetState() | Lioncash | 2018-09-24 | 4 | -11/+11 |
| | | | | | | Preserves the meaning/type-safetiness of the stream state instead of making it an opaque u32. This makes it usable for other things outside of the service HLE context. | ||||
* | Added audren:u#GetAudioRendererState | David Marcec | 2018-09-23 | 4 | -0/+13 |
| | |||||
* | Logging: Change the TimeStretch::Process log from debug to trace level. | Subv | 2018-09-21 | 1 | -1/+1 |
| | | | | This function is called too many times and makes the debug logging basically unusable due to the spam. | ||||
* | time_stretch: Remove unused <array> include | Lioncash | 2018-09-17 | 1 | -1/+0 |
| | | | | This isn't used within this header and isn't necessary. | ||||
* | stream: Replace includes with forward declarations where applicable | Lioncash | 2018-09-17 | 2 | -3/+7 |
| | | | | | Avoids propagating includes in headers where it's not necessary to do so. | ||||
* | audio_renderer: Replace includes with forward declarations where applicable | Lioncash | 2018-09-17 | 2 | -39/+52 |
| | | | | | | | | | Avoids including unnecessary headers within the audio_renderer.h header, lessening the likelihood of needing to rebuild source files including this header if they ever change. Given std::vector allows forward declaring contained types, we can move VoiceState to the cpp file and hide the implementation entirely. | ||||
* | Merge pull request #1314 from lioncash/cast | bunnei | 2018-09-17 | 1 | -2/+2 |
|\ | | | | | audio_core/time_stretch: Silence truncation warnings in Process() | ||||
| * | audio_core/time_stretch: Silence truncation warnings in Process() | Lioncash | 2018-09-14 | 1 | -2/+2 |
| | | | | | | | | The SoundTouch API only accepts uint amount of samples. | ||||
* | | Merge pull request #1321 from lioncash/audio-shadow | bunnei | 2018-09-17 | 1 | -4/+4 |
|\ \ | | | | | | | cubeb_sink: Get rid of variable shadowing within CubebSink's constructor | ||||
| * | | cubeb_sink: Get rid of variable shadowing within CubebSink's constructor | Lioncash | 2018-09-14 | 1 | -4/+4 |
| |/ | | | | | | | | | The parameter of the lambda was shadowing the variable that was being assigned to. | ||||
* | | Merge pull request #1320 from lioncash/name | bunnei | 2018-09-17 | 1 | -1/+1 |
|\ \ | | | | | | | cubeb_sink: Correct context name in ListCubebSinkDevices() | ||||
| * | | cubeb_sink: Correct context name in ListCubebSinkDevices() | Lioncash | 2018-09-14 | 1 | -1/+1 |
| |/ | | | | | | | This ain't Citra. | ||||
* / | Port #4182 from Citra: "Prefix all size_t with std::" | fearlessTobi | 2018-09-15 | 16 | -64/+67 |
|/ | |||||
* | Merge pull request #1298 from lioncash/view | bunnei | 2018-09-13 | 2 | -2/+4 |
|\ | | | | | audio_core/sink_details: Change std::string parameter into std::string_view | ||||
| * | audio_core/sink_details: Change std::string parameter into std::string_view | Lioncash | 2018-09-12 | 2 | -2/+4 |
| | | | | | | | | | | The given string is only ever used for lookup and comparison, so we can just utilize a non-owning view to string data here | ||||
* | | Merge pull request #1163 from FearlessTobi/add-audio-stretching | bunnei | 2018-09-13 | 7 | -49/+185 |
|\ \ | |/ |/| | audio_core: Add audio stretching support | ||||
| * | audio_core: Flush stream when not playing anything | MerryMage | 2018-09-12 | 6 | -0/+23 |
| | | |||||
| * | cubeb_sink: Downsample arbitrary number of channels | MerryMage | 2018-09-09 | 1 | -10/+9 |
| | | |||||
| * | cubeb_sink: Perform audio stretching | MerryMage | 2018-09-08 | 3 | -24/+26 |
| | | |||||
| * | audio_core: Add audio stretcher | MerryMage | 2018-09-08 | 3 | -0/+101 |
| | | |||||
| * | cubeb_sink: Hold last available value instead of writing zeros | MerryMage | 2018-09-08 | 1 | -5/+15 |
| | | | | | | | | This reduces clicking in output audio should we underrun. | ||||
| * | cubeb_sink: Use RingBuffer | MerryMage | 2018-09-08 | 1 | -40/+26 |
| | | |||||
| * | Add audio stretching support | fearlessTobi | 2018-09-08 | 5 | -0/+15 |
| | | |||||
* | | audio_renderer: Rename AudioOut instance to audio_out | MerryMage | 2018-09-08 | 2 | -7/+7 |
|/ | |||||
* | Update microprofile scopes. | Markus Wick | 2018-09-04 | 1 | -0/+4 |
| | | | | | | Blame the subsystems which deserve the blame :) The updated list is not complete, just the ones I've spotted on random sampling the stack trace. | ||||
* | audio_core/filter: Add explicit cast to assignment in Process() | Lioncash | 2018-08-21 | 1 | -1/+1 |
| | | | | | Previously this would cause warnings about implicit conversions to s16 from a double | ||||
* | Merge pull request #1033 from MerryMage/interp | bunnei | 2018-08-13 | 7 | -3/+267 |
|\ | | | | | audio_core: Interpolate | ||||
| * | audio_renderer: samples_remaining counts frames, not samples | MerryMage | 2018-08-13 | 1 | -1/+1 |
| | | |||||
| * | audio_core: Interpolate | MerryMage | 2018-08-13 | 5 | -0/+121 |
| | | |||||
| * | audio_core: Implement low-pass filter | MerryMage | 2018-08-13 | 3 | -2/+145 |
| | | |||||
* | | cubeb_sink: Protect queue with a mutex | MerryMage | 2018-08-12 | 1 | -0/+6 |
|/ | |||||
* | Pushed the requested sample rate instead of our fixed sample rate | David Marcec | 2018-08-12 | 1 | -1/+1 |
| | |||||
* | Added GetAudioRendererSampleRate, GetAudioRendererSampleCount & GetAudioRendererMixBufferCount | David Marcec | 2018-08-12 | 2 | -1/+16 |
| | | | | GetAudioRendererSampleRate is set as a "STUB" as a game could check if the sample rate it sent and the sample rate it wants don't match. Just a thought of something which could happen so keeping it as stub for the mean time | ||||
* | Make building cubeb optional | KAMiKAZOW | 2018-08-07 | 1 | -2/+2 |
| | |||||
* | audio_core: Implement audren_u audio playback. | bunnei | 2018-08-05 | 3 | -0/+442 |
| | |||||
* | audio_core: Use s16 where possible for audio samples. | bunnei | 2018-08-05 | 8 | -33/+24 |
| | |||||
* | audio_core: Port codec code from Citra for ADPCM decoding. | bunnei | 2018-08-05 | 3 | -0/+123 |
| | |||||
* | cubeb_sink: Support variable sample_rate and num_channels. | bunnei | 2018-08-04 | 1 | -15/+25 |
| | |||||
* | audio_core: Sinks need unique names as well. | bunnei | 2018-08-04 | 5 | -9/+14 |
| | |||||
* | audio_core: Streams need unique names for CoreTiming. | bunnei | 2018-08-04 | 4 | -9/+13 |
| | |||||
* | Merge pull request #895 from lioncash/sink | bunnei | 2018-08-03 | 1 | -5/+8 |
|\ | | | | | sink_details: std::move std::function instances | ||||
| * | sink_details: Deduplicate long std::function repetition | Lioncash | 2018-08-02 | 1 | -4/+6 |
| | | | | | | | | | | We can just use type aliases to avoid needing to write the same long type twice | ||||
| * | sink_details: std::move std::function instances | Lioncash | 2018-08-02 | 1 | -1/+2 |
| | | | | | | | | | | Given std::function is allowed to potentially allocate, these should be std::move'd to prevent potential reallocation (should that ever happen). | ||||
* | | audio_out: Use Buffer::Tag alias in GetTagsAndReleaseBuffers()'s prototype | Lioncash | 2018-08-02 | 2 | -2/+2 |
|/ | | | | | This makes the Buffer::Tag usage consistent with the Stream class's prototype of GetTagsAndReleaseBuffers(). | ||||
* | audio_core: Add configuration settings. | bunnei | 2018-08-01 | 2 | -9/+31 |
| | |||||
* | audio_core: Implement Sink and SinkStream interfaces with cubeb. | bunnei | 2018-07-31 | 8 | -6/+261 |
| | |||||
* | audio_core: Add interfaces for Sink and SinkStream. | bunnei | 2018-07-31 | 6 | -0/+163 |
| | |||||
* | audio_core: Misc. improvements to stream/buffer/audio_out. | bunnei | 2018-07-31 | 5 | -20/+32 |
| | |||||
* | audio_core: Add initial code for keeping track of audout state. | bunnei | 2018-07-28 | 6 | -0/+334 |
| | |||||
* | Massive removal of unused modules | James Rowe | 2018-01-13 | 26 | -3017/+0 |
| | |||||
* | CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119) | B3n30 | 2018-01-09 | 1 | -1/+1 |
| | | | | * CoreTiming: New CoreTiming; Add Test for CoreTiming | ||||
* | audio: Log dropping frames as trace to reduce spam. | bunnei | 2018-01-07 | 1 | -1/+1 |
| | |||||
* | Fixed type conversion ambiguity | Huw Pascoe | 2017-09-30 | 1 | -1/+1 |
| | |||||
* | Audio: Use std::deque instead of std::vector for the audio buffer type (StereoBuffer16). | Subv | 2017-09-26 | 5 | -7/+9 |
| | | | | | | | | | The current code inserts and deletes elements from the beginning of the audio buffer, which is very inefficient in an std::vector. Profiling was done using VisualStudio2017's Performance Analyzer in Super Mario 3D Land. Before this change: AudioInterp::Linear had 14.14% of the runtime (inclusive) and most of that time was spent in std::vector's insert implementation. After this change: AudioInterp::Linear has 0.36% of the runtime (inclusive) | ||||
* | interpolate: Interpolate on a frame-by-frame basis | MerryMage | 2017-08-28 | 3 | -88/+74 |
| | |||||
* | CMake: Add SoundTouch include path to target property | Yuri Kunde Schlesner | 2017-05-28 | 1 | -2/+0 |
| | |||||
* | CMake: Define an interface target for SDL2 definitions | Yuri Kunde Schlesner | 2017-05-28 | 1 | -2/+1 |
| | |||||
* | CMake: Correct inter-module dependencies and library visibility | Yuri Kunde Schlesner | 2017-05-28 | 1 | -3/+4 |
| | | | | | | | | | | Modules didn't correctly define their dependencies before, which relied on the frontends implicitly including every module for linking to succeed. Also changed every target_link_libraries call to specify visibility of dependencies to avoid leaking definitions to dependents when not necessary. | ||||
* | DSP: Create backing memory for entire DSP RAM | Yuri Kunde Schlesner | 2017-05-10 | 4 | -31/+36 |
| | | | | Also move address space mapping out of video_core. | ||||
* | Doxygen: Amend minor issues (#2593) | Mat M | 2017-02-27 | 4 | -3/+5 |
| | | | | | | | | | Corrects a few issues with regards to Doxygen documentation, for example: - Incorrect parameter referencing. - Missing @param tags. - Typos in @param tags. and a few minor other issues. | ||||
* | Support looping HLE audio (#2422) | Jake Merdich | 2017-01-30 | 2 | -11/+35 |
| | | | | | * Support looping HLE audio * DSP: Fix dirty bit clears, handle nonmonotonically incrementing IDs * DSP: Add start offset support | ||||
* | fixed the override warning | noah the goodra | 2017-01-27 | 1 | -1/+1 |
| | | | | | | | | | | | | ``` In file included from citra/src/audio_core/sink_details.cpp:11: citra/src/./audio_core/sdl2_sink.h:25:10: warning: 'SetDevice' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] void SetDevice(int device_id); ^ citra/src/./audio_core/sink.h:39:18: note: overridden virtual function is here virtual void SetDevice(int device_id) = 0; ^ ``` | ||||
* | SDL: Select audio device (#2403) | Kloen Lansfiel | 2017-01-26 | 7 | -18/+69 |
| | | | | | | | | | | | | | | | | | | | | | | | | * Initial Commit Added Device logic to Sinks Started on UI for selecting devices Removed redundant import * Audio Core: Complete Device Switching Complete the device switching implementation by allowing the output device to be loaded, changed and saved through the configurations menu. Worked with the Sink abstraction and tuned the "Device Selection" configuration so that the Device List is automatically populated when the Sink is changed. This hopefully addresses the concerns and recommendations mentioned in the comments of the PR. * Clean original implementation. * Refactor GetSinkDetails | ||||
* | time_stretch: Add missing #pragma once directive | Lioncash | 2016-12-13 | 1 | -0/+2 |
| | |||||
* | Add all services to the Service namespace | Lioncash | 2016-12-11 | 2 | -3/+3 |
| | | | | | Previously there was a split where some of the services were in the Service namespace and others were not. | ||||
* | audio_core: SelectSink should default to auto if sink_id is invalid | MerryMage | 2016-12-10 | 1 | -12/+7 |
| | |||||
* | Improve verbosity of audio errors with SDL_GetError() | freiro | 2016-11-22 | 1 | -2/+2 |
| | |||||
* | Fix typos | Ricardo de Almeida Gonzaga | 2016-10-20 | 2 | -4/+4 |
| | |||||
* | Use negative priorities to avoid special-casing the self-include | Yuri Kunde Schlesner | 2016-09-21 | 9 | -9/+9 |
| | |||||
* | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | 2016-09-21 | 23 | -48/+10 |
| | | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | ||||
* | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | 2016-09-19 | 13 | -76/+110 |
| | |||||
* | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 2016-09-18 | 24 | -249/+323 |
| | |||||
* | audio_core: Tweak audio latency | MerryMage | 2016-09-07 | 2 | -2/+2 |
| | |||||
* | codec: Fix ADPCM distortion caused by incorrect nibble order | fincs | 2016-09-03 | 1 | -2/+2 |
| | | | | | | Closes #2049. Signed-off-by: MerryMage <MerryMage@users.noreply.github.com> | ||||
* | audio_core: Add EnableStretching to interface so that one can toggle stretching on and off | MerryMage | 2016-08-31 | 4 | -9/+52 |
| | |||||
* | sink: Change EnqueueSamples to take a pointer to a buffer instead of a std::vector | MerryMage | 2016-08-31 | 5 | -9/+9 |
| | |||||
* | DSP/HLE: Audio output | MerryMage | 2016-05-19 | 1 | -0/+7 |
| | |||||
* | DSP/HLE: Implement mixer processing | MerryMage | 2016-05-19 | 5 | -11/+311 |
| | |||||
* | AudioCore: Implement time stretcher (#1737) | Maribel | 2016-05-15 | 4 | -0/+219 |
| | | | | | | | | | | | | | | * AudioCore: Implement time stretcher * fixup! AudioCore: Implement time stretcher * fixup! fixup! AudioCore: Implement time stretcher * fixup! fixup! fixup! AudioCore: Implement time stretcher * fixup! fixup! fixup! fixup! AudioCore: Implement time stretcher * fixup! fixup! fixup! fixup! fixup! AudioCore: Implement time stretcher | ||||
* | source: Fix missing logging arguments | Lioncash | 2016-05-09 | 1 | -2/+2 |
| | | | | Silences two warnings on OSX. | ||||
* | fixup simple type conversions where possible | Alexander Laties | 2016-05-07 | 2 | -6/+15 |
| | |||||
* | Merge pull request #1736 from MerryMage/sdl2-sink | bunnei | 2016-05-07 | 5 | -1/+175 |
|\ | | | | | AudioCore: SDL2 Sink | ||||
| * | AudioCore: SDL2 Sink | MerryMage | 2016-05-07 | 5 | -1/+175 |
| | | |||||
* | | HLE: Fix recent DSP change for Visual Studio. | bunnei | 2016-05-07 | 1 | -4/+2 |
| | | |||||
* | | DSP/HLE: Implement Source processing | MerryMage | 2016-05-03 | 7 | -5/+496 |
|/ | |||||
* | Audio: Add sink selection to configuration files | MerryMage | 2016-04-30 | 5 | -4/+55 |
| | |||||
* | AudioCore: List of sink types | MerryMage | 2016-04-30 | 3 | -0/+46 |
| | |||||
* | AudioCore: Implement NullSink | MerryMage | 2016-04-30 | 2 | -0/+30 |
| | |||||
* | Merge pull request #1726 from MerryMage/read-write-region | bunnei | 2016-04-29 | 3 | -26/+31 |
|\ | | | | | AudioCore: CurrentRegion() -> ReadRegion(), WriteRegion() | ||||
| * | AudioCore: CurrentRegion() -> ReadRegion(), WriteRegion() | MerryMage | 2016-04-29 | 3 | -26/+31 |
| | | |||||
* | | Merge pull request #1723 from MerryMage/audio-interp | bunnei | 2016-04-29 | 3 | -0/+128 |
|\ \ | | | | | | | AudioCore: Implement interpolation | ||||
| * | | AudioCore: Implement interpolation | MerryMage | 2016-04-29 | 3 | -0/+128 |
| | | | |||||
* | | | Merge pull request #1727 from MerryMage/minor-commit | bunnei | 2016-04-28 | 3 | -12/+11 |
|\ \ \ | | | | | | | | | AudioCore: Move samples_per_frame and num_sources into hle/common.h | ||||
| * | | | AudioCore: Move samples_per_frame and num_sources into hle/common.h | MerryMage | 2016-04-28 | 3 | -12/+11 |
| | |/ | |/| | |||||
* | | | Merge pull request #1722 from MerryMage/soundtouch | bunnei | 2016-04-28 | 1 | -1/+4 |
|\ \ \ | |/ / |/| | | Externals: Add soundtouch | ||||
| * | | Externals: Add soundtouch | MerryMage | 2016-04-28 | 1 | -1/+4 |
| |/ | |||||
* | | AudioCore: Hack to prevent regressions: Trigger Binary pipe interrupt every audio frame | MerryMage | 2016-04-27 | 1 | -0/+2 |
| | | |||||
* | | DSP_DSP: Updated interrupt implementation | MerryMage | 2016-04-27 | 2 | -4/+7 |
| | | |||||
* | | DSP/Pipe: There are 8 pipes | MerryMage | 2016-04-25 | 2 | -13/+19 |
|/ | |||||
* | DSP: Implement audio filters (simple, biquad) | MerryMage | 2016-03-28 | 5 | -7/+275 |
| | |||||
* | DSP: Implement audio codecs (PCM8, PCM16, ADPCM) | MerryMage | 2016-03-24 | 3 | -0/+174 |
| | |||||
* | DSP: Implement Pipe 2 | MerryMage | 2016-03-06 | 3 | -34/+194 |
| | | | | | | Pipe 2 is a DSP pipe that is used to initialize both the DSP hardware (the application signals to the DSP to initialize) and the application (the DSP provides the memory location of structures in the shared memory region). | ||||
* | AudioCore: Skeleton Implementation | MerryMage | 2016-02-21 | 8 | -0/+766 |
This commit: * Adds a new subproject, audio_core. * Defines structures that exist in DSP shared memory. * Hooks up various other parts of the emulator into audio core. This sets the foundation for a later HLE DSP implementation. |