summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audren_u.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2024-02-21audio: split IAudioDevice, IAudioRenderer, move IAudioRendererManagerLiam1-552/+0
2024-01-28Use the input process handle to get the correct application's memoryKelebek11-6/+10
2024-01-25result: Make fully constexpr, add ON_RESULT_INCLUDEDFearlessTobi1-1/+2
2023-12-25service: fetch objects from the client handle tableLiam1-4/+2
2023-12-16Have GetActiveChannelCount return the system channels instead of host device channelsKelebek11-1/+1
2023-09-04Rework ADSP into a wrapper for appsKelebek11-1/+1
2023-08-01audren_u: Fix parameter alignmentMorph1-2/+3
2023-07-01general: Use ScratchBuffer where possibleMorph1-11/+12
2023-06-22Remove memory allocations in some hot pathsKelebek11-11/+11
2023-03-07hle: rename legacy errors to ResultsLiam1-3/+3
2023-03-01service: move hle_ipc from kernelLiam1-28/+28
2023-02-21service: refactor server architectureLiam1-9/+6
2023-02-14general: rename CurrentProcess to ApplicationProcessLiam1-1/+1
2023-02-03Revert "Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span"ameerj1-1/+1
2023-02-02Revert "hle_ipc: Use std::span to avoid heap allocations/copies when calling ReadBuffer"liamwhite1-1/+1
2022-12-29hle_ipc: Rename ReadBufferSpan to ReadBufferameerj1-3/+3
2022-12-25service: Use ReadBufferSpan where it is trivial to do soameerj1-3/+3
2022-12-14Revert "hle: service: audio: Use default service thread."bunnei1-6/+9
2022-11-23service: Make use of buffer element count helpersLioncash1-3/+3
2022-11-23general: fix compile for Apple ClangLiam1-0/+1
2022-11-12hle: service: audio: Use default service thread.bunnei1-9/+6
2022-10-19Update audio_core for firmware 15.0.0Kelebek11-0/+26
2022-10-13kernel: remove KWritableEventLiam1-2/+2
2022-09-15audio_device: Mark member functions as const where applicableLioncash1-2/+2
2022-08-24Implement AudRenU:RequestUpdateAuto, and use C descriptors when B reports as empty.Kelebek11-6/+21
2022-07-22Project AndioKelebek11-446/+246
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
2022-04-02hle: service: audio: Create a service thread where appropriate.bunnei1-1/+2
2021-11-04core: Remove unused includesameerj1-3/+0
2021-10-07service: Reduce header include overheadMorph1-1/+0
2021-10-02service: Replace service event creation with ServiceContext::CreateEventMorph1-19/+22
2021-09-27service/audio: Update to 13.0.0german771-1/+2
2021-07-06Report 2 channels active. Fixes Tales of Vesperia's mono channel audio.Kelebek11-1/+1
2021-07-01Fix XC2/VOEZ crashing, add audio looping and a few misc fixesKelebek11-1/+1
2021-06-27Decouple audio processing and run at variable rateKelebek11-4/+6
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-21/+21
2021-05-16core: Make variable shadowing a compile-time errorLioncash1-2/+3
2021-05-11audrenbunnei1-25/+14
2021-05-06hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject.bunnei1-2/+2
2021-05-06hle: kernel: Ensure all kernel objects with KAutoObject are properly created.bunnei1-0/+4
2021-05-06hle: kernel: Migrate KEvent to KAutoObject.bunnei1-23/+18
2021-05-04service: Resolve cases of member field shadowingLioncash1-2/+3
2021-04-09audren_u: Use proper namesgerman771-3/+3
2021-02-05hle: kernel: Reimplement KReadableEvent and KWritableEvent.bunnei1-18/+21
2021-02-05hle: kernel: Rename WritableEvent to KWritableEvent.bunnei1-5/+5
2021-02-05hle: kernel: Rename ReadableEvent to KReadableEvent.bunnei1-1/+1
2020-12-29hle: service: Acquire and release a lock on requests.bunnei1-7/+7
2020-11-27service: Eliminate usages of the global system instanceLioncash1-4/+4
2020-07-25audio_core: Apollo Part 1, AudioRenderer refactorDavid Marcec1-72/+77
2020-04-21audio_renderer: Preliminary BehaviorInfo (#3736)David1-2/+7
2020-04-20audren: Lower log level for RequestUpdateImpl to DebugFearlessTobi1-1/+1
2020-04-18service: Remove unused RequestParser instancesLioncash1-2/+0
2020-04-16CMakeLists: Specify -Wextra on linux buildsLioncash1-1/+1
2019-11-27core: Prepare various classes for memory read/write migrationLioncash1-2/+3
2019-11-03kernel: events: Remove ResetType::Automatic.bunnei1-6/+6
2019-09-04Add Kernel::EventPair audio_input_device_switch_event;Morph19841-0/+1
2019-09-04remove <f32>Morph19841-1/+1
2019-09-04audren_u: Stub IAudioDevice::QueryAudioDeviceInputEventMorph19841-1/+14
2019-09-04explicitly represent 1 as a float (1.0f instead of 1)Morph19841-1/+1
2019-09-04Change u32 -> f32Morph19841-1/+1
2019-09-03service/audio/audren_u: Stub IAudioDevice::GetAudioDeviceOutputVolumeMorph19841-2/+15
2019-07-19service/audren_u: Handle audio USB output revision queries in ListAudioDeviceName()Lioncash1-16/+44
2019-07-19service/audren_u: Move revision testing code out of AudRenULioncash1-55/+53
2019-07-19service/audio: Remove global system accessorsLioncash1-9/+9
2019-07-19service/audren_u: Remove unnecessary return value from GetActiveAudioDeviceName()Lioncash1-2/+1
2019-07-19service/audren_u: Report proper device namesLioncash1-6/+29
2019-07-12Clang formatDavid Marcec1-2/+4
2019-07-12"AudioRenderer" thread should have a unique nameDavid Marcec1-4/+3
2019-07-01IAudioDevice::QueryAudioDeviceOutputEventDavid Marcec1-3/+16
2019-06-20Revert PR 2590.Fernando Sahmkow1-1/+1
2019-06-18service/audio/audren_u: Correct event reset type for the system eventLioncash1-1/+1
2019-05-18core/kernel/object: Rename ResetType enum membersLioncash1-2/+2
2019-05-01service/audren_u: Handle variadic command buffers in GetWorkBufferSize()Lioncash1-17/+92
2019-05-01service/audren_u: Handle version 2 of performance frame info in GetWorkBufferSize()Lioncash1-6/+12
2019-05-01service/audren_u: Clean up work buffer calculationsLioncash1-49/+214
2019-04-04hle/service: Resolve unused variable warningsLioncash1-7/+6
2019-03-05hle/service/audio: Extract audio error codes to a headerLioncash1-1/+2
2019-03-01service/audio/audren_u: Implement OpenAudioRendererAutoLioncash1-7/+17
2019-03-01service/audio: Provide an implementation of ExecuteAudioRendererRenderingLioncash1-1/+12
2019-02-27audio_core/audio_renderer: Name previously unknown parameters of AudioRendererParameterLioncash1-13/+13
2019-02-16core_timing: Convert core timing into a classLioncash1-4/+5
2019-01-30service/audio: Update function tablesLioncash1-4/+6
2018-11-29kernel/event: Reference ReadableEvent from WritableEventZach Hilman1-15/+11
2018-11-29core: Port all current usages of Event to Readable/WritableEventZach Hilman1-9/+15
2018-11-26Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec1-23/+30
2018-11-14service/audren_u: Forward RequestUpdateAuto through the same function as RequestUpdateLioncash1-3/+3
2018-11-13hle/audren_u: Implement Get/SetRenderingTimeLimitLioncash1-2/+23
2018-10-19audio: Update service function tablesLioncash1-17/+20
2018-09-25service: Add missing headers inclusions where applicableLioncash1-0/+1
2018-09-24stream: Preserve enum class type in GetState()Lioncash1-1/+1
2018-09-23Added audren:u#GetAudioRendererStateDavid Marcec1-1/+8
2018-09-19Removed the use of rp.MakeBuilderDavid Marcec1-3/+3
2018-09-12service/audio: Replace includes with forward declarations where applicableLioncash1-2/+4
2018-09-11hle/service: Default constructors and destructors in the cpp file where applicableLioncash1-0/+2
2018-08-29kernel: Eliminate kernel global stateLioncash1-3/+5
2018-08-12GetAudioDeviceServiceWithRevisionInfoDavid Marcec1-1/+12
2018-08-12Pushed the requested sample rate instead of our fixed sample rateDavid Marcec1-4/+2
2018-08-12Added GetAudioRendererSampleRate, GetAudioRendererSampleCount & GetAudioRendererMixBufferCountDavid Marcec1-5/+28
2018-08-05audio_core: Implement audren_u audio playback.bunnei1-200/+8
2018-07-24core_timing: Split off utility functions into core_timing_utilMerryMage1-0/+1
2018-07-20audren_u: Use a std::array instead of std::string for holding the audio interface/device nameLioncash1-2/+4
2018-07-19hle_ipc: Introduce generic WriteBuffer overload for multiple container typesLioncash1-2/+2
2018-07-19hle/service: Make constructors explicit where applicableLioncash1-2/+2
2018-07-13We only need to alert for memory pool changesDavid Marcec1-2/+0
2018-07-13initialized voice status and unused sizes in the update data headerDavid Marcec1-1/+3
2018-07-03Update AudioRenderer Voice Sections (#614)David1-0/+87
2018-07-03Rename logging macro back to LOG_*James Rowe1-12/+12
2018-06-25Send the correct RequestUpdateAudioRenderer revision in the output header (#587)David1-1/+1
2018-06-24Removed duplicate structs, changed AudioRendererResponse -> UpdateDataHeader (#583)David1-32/+19
2018-06-23Fixed RequestUpdateAudioRenderer deadlocks and calculated section sizes properly (#580)David1-25/+58
2018-06-21Service/Audio: update audren:u servicemailwl1-46/+57
2018-06-20Build: Fixed some MSVC warnings in various parts of the code.Subv1-1/+1
2018-05-26GetAudioRendererWorkBufferSize impl (#465)David1-2/+63
2018-05-21Correct audio command numbers & add or rename some functions (#455)greggameplayer1-12/+13
2018-04-30core_timing: Namespace all functions and constants in core_timing's headerLioncash1-1/+1
2018-04-24audio: Move logging macros over to new fmt-compatible onesLioncash1-13/+13
2018-04-23GetIUserInterface->CreateUserInterface, Added todos and stub logs. Playreport->PlayReport.David Marcec1-5/+3
2018-04-22Implemented GetIUserInterface properly, Playreport and SSL::SetInterfaceVersion. Fixed ipc issues with IAudioDevice(wrong ids)David Marcec1-6/+9
2018-04-20service: Use nested namespace specifiers where applicableLioncash1-4/+2
2018-04-10Updated audren with more service names.Hexagon121-10/+14
2018-04-03audren_u: Stub out GetActiveAudioDeviceName.bunnei1-1/+13
2018-03-30audren_u: Stub QueryAudioDeviceSystemEvent and GetActiveChannelCount.bunnei1-8/+36
2018-03-25audren_u: Fix GetAudioDevice.bunnei1-6/+47
2018-03-04CoreTiming: Unschedule the pending events when an Interface is destroyed.Subv1-1/+3
2018-02-22Stub more functionsmailwl1-2/+2
2018-02-16Service/hid: stub some functionsmailwl1-1/+2
2018-02-14audio: Use WriteBuffer instead of BufferDescriptorB.bunnei1-3/+1
2018-02-14audren_u: Schedule reoccuring event. (#183)bunnei1-6/+35
2018-02-12Add RequestUpdateAudioRenderer, StartAudioRenderer and StopAudioRenderer stubs to audren:ugdkchan1-2/+76
2018-02-07Service: stub some functions in am, audio, time, vi servicesmailwl1-4/+47
2018-01-22Added stubs for audio services. (#116)st4rk1-0/+44