summaryrefslogtreecommitdiffstats
path: root/src/audio_core/hle (follow)
Commit message (Collapse)AuthorAgeFilesLines
* source: Fix missing logging argumentsLioncash2016-05-091-2/+2
| | | | Silences two warnings on OSX.
* fixup simple type conversions where possibleAlexander Laties2016-05-072-6/+15
|
* HLE: Fix recent DSP change for Visual Studio.bunnei2016-05-071-4/+2
|
* DSP/HLE: Implement Source processingMerryMage2016-05-036-5/+494
|
* Audio: Add sink selection to configuration filesMerryMage2016-04-302-0/+20
|
* Merge pull request #1726 from MerryMage/read-write-regionbunnei2016-04-292-24/+29
|\ | | | | AudioCore: CurrentRegion() -> ReadRegion(), WriteRegion()
| * AudioCore: CurrentRegion() -> ReadRegion(), WriteRegion()MerryMage2016-04-292-24/+29
| |
* | AudioCore: Move samples_per_frame and num_sources into hle/common.hMerryMage2016-04-282-10/+11
|/
* DSP_DSP: Updated interrupt implementationMerryMage2016-04-271-0/+4
|
* DSP/Pipe: There are 8 pipesMerryMage2016-04-252-13/+19
|
* DSP: Implement audio filters (simple, biquad)MerryMage2016-03-284-7/+272
|
* DSP: Implement Pipe 2MerryMage2016-03-063-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 ImplementationMerryMage2016-02-214-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.