summaryrefslogtreecommitdiff
path: root/src/audio_core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* oboe_sink: handle temporary stream creation failureGravatar Liam2024-02-231-2/+6
|
* audio: fix released buffer bounds checkGravatar Liam2024-02-221-2/+6
|
* audio: formatGravatar Liam2024-02-203-7/+8
|
* audio: rewrite IAudioDeviceGravatar Liam2024-02-202-12/+8
|
* audio: rewrite IHardwareOpusDecoderManagerGravatar Liam2024-02-206-31/+34
|
* audio: rewrite IAudioRendererManagerGravatar Liam2024-02-208-39/+45
|
* audio: rewrite IAudioOutGravatar Liam2024-02-201-2/+2
|
* audio: rewrite IAudioInManagerGravatar Liam2024-02-202-7/+4
|
* scope_exit: Make constexprGravatar FearlessTobi2024-02-192-3/+5
| | | | | Allows the use of the macro in constexpr-contexts. Also avoids some potential problems when nesting braces inside it.
* Merge pull request #12814 from Kelebek1/time_new_ipcGravatar liamwhite2024-01-291-2/+2
|\ | | | | Move time services to new IPC and add debug printing
| * Move time services to new IPC.Gravatar Kelebek12024-01-271-2/+2
| | | | | | | | Add some fixes/improvements to usage with the new IPC
* | Use the input process handle to get the correct application's memoryGravatar Kelebek12024-01-289-15/+46
|/
* Core: Clang format and other small issues.Gravatar Fernando Sahmkow2024-01-182-2/+2
|
* SMMU: Initial adaptation to video_core.Gravatar Fernando Sahmkow2024-01-182-0/+2
|
* Merge remote-tracking branch 'origin/master' into typos3Gravatar Viktor Szépe2024-01-166-22/+36
|\
| * audio: fetch process object from handle tableGravatar Liam2024-01-126-22/+36
| |
* | Fix more typosGravatar Viktor Szépe2024-01-155-10/+10
|/
* core_timing: remove user data valueGravatar Liam2023-12-231-3/+1
|
* Merge pull request #12387 from liamwhite/oboeGravatar Fernando S2023-12-194-0/+322
|\ | | | | android: add oboe audio sink
| * oboe_sink: specify additional required parametersGravatar Liam2023-12-181-13/+27
| |
| * oboe_sink: set low latency performance modeGravatar Liam2023-12-171-0/+2
| |
| * oboe_sink: implement channel count queryingGravatar Liam2023-12-171-12/+35
| |
| * android: add oboe audio sinkGravatar Liam2023-12-174-0/+283
| |
* | audio: skip coefficient normalization for downmixGravatar Liam2023-12-161-4/+2
| |
* | Have GetActiveChannelCount return the system channels instead of host device ↵Gravatar Kelebek12023-12-164-19/+42
|/ | | | channels
* opus: fix stereo stream count check in multistream decoder objectGravatar Liam2023-11-172-2/+2
|
* audio_core: ignore renderer wait when stream is pausedGravatar Liam2023-11-124-4/+18
|
* Convert files to LF eolGravatar Kelebek12023-11-048-876/+876
|
* Allow 0 stereo countGravatar Kelebek12023-11-032-3/+3
|
* audio: fix shutdown deadlock in audio rendererGravatar Liam2023-10-131-0/+4
|
* Clear DSP buffer after each executionGravatar Kelebek12023-10-102-0/+11
|
* ci: fix new codespell errorsGravatar Liam2023-10-021-1/+1
|
* Merge pull request #11520 from Kelebek1/estimated_timeGravatar liamwhite2023-09-182-6/+8
|\ | | | | Do not consider voice commands in time estimation, fix adpcm estimate
| * Do not consider voice commands in time estimation, fix adpcm estimateGravatar Kelebek12023-09-182-6/+8
| |
* | Reimplement HardwareOpusGravatar Kelebek12023-09-1620-72/+1465
|/
* Merge pull request #11465 from Kelebek1/skip_remaining_resetGravatar liamwhite2023-09-105-27/+14
|\ | | | | [Audio] Do not reset the remaining command count each time
| * Do not reset the command buffer command count each timeGravatar Kelebek12023-09-075-27/+14
| |
* | Fix data source version 1 command loopingGravatar Kelebek12023-09-084-52/+72
|/
* Merge pull request #11428 from Kelebek1/adsp_reworkGravatar liamwhite2023-09-06169-1252/+1046
|\ | | | | Rework ADSP into a wrapper for apps
| * Rework ADSP into a wrapper for appsGravatar Kelebek12023-09-04169-1252/+1046
| |
* | msvc: set warning level to /W4 globallyGravatar Danila Malyutin2023-09-031-1/+0
|/ | | | And fix a bunch of warnings
* Merge pull request #11408 from Kelebek1/fix_audio_node_idGravatar liamwhite2023-08-291-1/+1
|\ | | | | [Audio] Fix node id index in DropVoices
| * Fix node id index in DropVoicesGravatar Kelebek12023-08-281-1/+1
| |
* | audio: allow more latency in cubeb initializationGravatar Liam2023-08-272-8/+3
| |
* | Pre-test opening a stream for audio backends, fall back to null if not suitable.Gravatar Kelebek12023-08-235-38/+117
|/
* Merge pull request #10839 from lat9nq/pgc-plusGravatar liamwhite2023-08-022-19/+23
|\ | | | | general: Reimplement per-game configurations
| * (ui,)settings: Use explicit instantiationGravatar lat9nq2023-07-211-3/+2
| | | | | | | | Reduces compile times a tad on clang.
| * settings,general: Rename non-confirming enumsGravatar lat9nq2023-07-211-2/+3
| |
| * configure_audio: Implement ui generationGravatar lat9nq2023-07-212-19/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Needs a considerable amount of management specific to some of the comoboboxes due to the audio engine configuration. general: Partial audio config implmentation configure_audio: Implement ui generation Needs a considerable amount of management specific to some of the comoboboxes due to the audio engine configuration. general: Partial audio config implmentation settings: Make audio settings as enums
* | Fix AudioRendererParameterInternal's sizeGravatar Kelebek12023-07-301-3/+3
|/