Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 | 1 | -1/+1 |
| | | | | | | | | | 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 | 1 | -29/+20 |
| | |||||
* | DSP: Create backing memory for entire DSP RAM | Yuri Kunde Schlesner | 2017-05-10 | 2 | -9/+26 |
| | | | | Also move address space mapping out of video_core. | ||||
* | Doxygen: Amend minor issues (#2593) | Mat M | 2017-02-27 | 1 | -1/+1 |
| | | | | | | | | | 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 | ||||
* | Add all services to the Service namespace | Lioncash | 2016-12-11 | 1 | -1/+1 |
| | | | | | Previously there was a split where some of the services were in the Service namespace and others were not. | ||||
* | 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 | 4 | -4/+4 |
| | |||||
* | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | 2016-09-21 | 11 | -23/+4 |
| | | | | | | | 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 | 7 | -58/+92 |
| | |||||
* | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 2016-09-18 | 11 | -197/+242 |
| | |||||
* | audio_core: Tweak audio latency | MerryMage | 2016-09-07 | 1 | -1/+1 |
| | |||||
* | audio_core: Add EnableStretching to interface so that one can toggle stretching on and off | MerryMage | 2016-08-31 | 2 | -9/+45 |
| | |||||
* | sink: Change EnqueueSamples to take a pointer to a buffer instead of a std::vector | MerryMage | 2016-08-31 | 1 | -1/+2 |
| | |||||
* | DSP/HLE: Audio output | MerryMage | 2016-05-19 | 1 | -0/+7 |
| | |||||
* | DSP/HLE: Implement mixer processing | MerryMage | 2016-05-19 | 4 | -11/+309 |
| | |||||
* | AudioCore: Implement time stretcher (#1737) | Maribel | 2016-05-15 | 1 | -0/+16 |
| | | | | | | | | | | | | | | * 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 |
| | |||||
* | HLE: Fix recent DSP change for Visual Studio. | bunnei | 2016-05-07 | 1 | -4/+2 |
| | |||||
* | DSP/HLE: Implement Source processing | MerryMage | 2016-05-03 | 6 | -5/+494 |
| | |||||
* | Audio: Add sink selection to configuration files | MerryMage | 2016-04-30 | 2 | -0/+20 |
| | |||||
* | Merge pull request #1726 from MerryMage/read-write-region | bunnei | 2016-04-29 | 2 | -24/+29 |
|\ | | | | | AudioCore: CurrentRegion() -> ReadRegion(), WriteRegion() | ||||
| * | AudioCore: CurrentRegion() -> ReadRegion(), WriteRegion() | MerryMage | 2016-04-29 | 2 | -24/+29 |
| | | |||||
* | | AudioCore: Move samples_per_frame and num_sources into hle/common.h | MerryMage | 2016-04-28 | 2 | -10/+11 |
|/ | |||||
* | DSP_DSP: Updated interrupt implementation | MerryMage | 2016-04-27 | 1 | -0/+4 |
| | |||||
* | DSP/Pipe: There are 8 pipes | MerryMage | 2016-04-25 | 2 | -13/+19 |
| | |||||
* | DSP: Implement audio filters (simple, biquad) | MerryMage | 2016-03-28 | 4 | -7/+272 |
| | |||||
* | 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 | 4 | -0/+637 |
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. |