summaryrefslogtreecommitdiff
path: root/src/audio_core/hle/dsp.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Massive removal of unused modulesGravatar James Rowe2018-01-121-172/+0
|
* DSP: Create backing memory for entire DSP RAMGravatar Yuri Kunde Schlesner2017-05-091-6/+8
| | | | Also move address space mapping out of video_core.
* Fix typosGravatar Ricardo de Almeida Gonzaga2016-10-201-2/+2
|
* Use negative priorities to avoid special-casing the self-includeGravatar Yuri Kunde Schlesner2016-09-211-1/+1
|
* Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot2016-09-211-2/+1
| | | | | | | 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-formatGravatar Yuri Kunde Schlesner2016-09-181-1/+2
|
* Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot2016-09-181-8/+9
|
* audio_core: Tweak audio latencyGravatar MerryMage2016-09-071-1/+1
|
* audio_core: Add EnableStretching to interface so that one can toggle ↵Gravatar MerryMage2016-08-311-9/+37
| | | | stretching on and off
* sink: Change EnqueueSamples to take a pointer to a buffer instead of a ↵Gravatar MerryMage2016-08-311-1/+2
| | | | std::vector
* DSP/HLE: Audio outputGravatar MerryMage2016-05-191-0/+7
|
* DSP/HLE: Implement mixer processingGravatar MerryMage2016-05-191-10/+44
|
* AudioCore: Implement time stretcher (#1737)Gravatar Maribel2016-05-141-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
* DSP/HLE: Implement Source processingGravatar MerryMage2016-05-031-0/+24
|
* Audio: Add sink selection to configuration filesGravatar MerryMage2016-04-301-0/+9
|
* AudioCore: CurrentRegion() -> ReadRegion(), WriteRegion()Gravatar MerryMage2016-04-291-18/+26
|
* AudioCore: Skeleton ImplementationGravatar MerryMage2016-02-211-0/+42
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.