summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audout_u.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* service: move hle_ipc from kernelLiam2023-03-011-15/+15
* service: refactor server architectureLiam2023-02-211-6/+4
* Revert "hle: service: audio: Use default service thread."bunnei2022-12-141-4/+6
* Merge pull request #9232 from bunnei/audio-default-threadliamwhite2022-12-041-6/+4
|\
| * hle: service: audio: Use default service thread.bunnei2022-11-121-6/+4
* | service: Make use of buffer element count helpersLioncash2022-11-231-5/+5
|/
* audio_in/out_system: Pass Initialize members by value where applicableLioncash2022-10-261-1/+1
* audio_device: Make AudioDeviceName constructor constexprLioncash2022-09-151-2/+1
* Project AndioKelebek12022-07-221-159/+168
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
* hle: service: audio: Create a service thread where appropriate.bunnei2022-04-021-3/+4
* core: Remove unused includesameerj2021-11-041-1/+0
* service: Reduce header include overheadMorph2021-10-071-1/+0
* service: Replace service event creation with ServiceContext::CreateEventMorph2021-10-021-13/+19
* Implement audout GetAudioOutPlayedSampleCountKelebek12021-06-221-1/+9
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-13/+13
* hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject.bunnei2021-05-061-1/+1
* hle: kernel: Ensure all kernel objects with KAutoObject are properly created.bunnei2021-05-061-0/+1
* hle: kernel: Migrate KEvent to KAutoObject.bunnei2021-05-061-8/+7
* audout_u: Use proper namesgerman772021-04-091-3/+3
* hle: kernel: Reimplement KReadableEvent and KWritableEvent.bunnei2021-02-051-5/+6
* hle: kernel: Rename WritableEvent to KWritableEvent.bunnei2021-02-051-2/+2
* hle: kernel: Rename ReadableEvent to KReadableEvent.bunnei2021-02-051-1/+1
* audout: FlushAudioOutBuffersChloe Marcec2021-01-241-1/+9
* core: Silence Wclass-memaccess warningsReinUsesLisp2021-01-151-1/+1
* hle: service: Acquire and release a lock on requests.bunnei2020-12-291-2/+4
* service: Eliminate usages of the global system instanceLioncash2020-11-271-6/+6
* Revert "core: Fix clang build"bunnei2020-10-211-4/+3
* core: Fix clang buildLioncash2020-10-181-3/+4
* General: Tidy up clang-format warnings part 2Lioncash2020-08-131-1/+1
* yuzu: Resolve C++20 deprecation warnings related to lambda capturesLioncash2020-08-031-1/+1
* core: memory: Move to Core::Memory namespace.bunnei2020-04-171-1/+1
* core/memory: Migrate over Read{8, 16, 32, 64, Block} to the Memory classLioncash2019-11-271-2/+4
* kernel: events: Remove ResetType::Automatic.bunnei2019-11-031-2/+2
* audio/audout_u: Change formatting for old clang-format versionsReinUsesLisp2019-10-051-1/+1
* service/audio: Silence -WunusedReinUsesLisp2019-10-051-1/+1
* service/audio: Remove global system accessorsLioncash2019-07-191-16/+20
* CleanupDavid Marcec2019-06-161-2/+2
* Impl'd IsUserAccountSwitchLocked, SetAudioOutVolume, GetAudioOutVolume & Partial impl of GetAccumulatedSuspendedTickChangedEventDavid Marcec2019-06-161-2/+21
* core/kernel/object: Rename ResetType enum membersLioncash2019-05-181-1/+1
* service: Update service function tablesLioncash2019-04-111-1/+4
* hle/service: Resolve unused variable warningsLioncash2019-04-041-4/+0
* service/audio/audout_u: Only actually stop the audio stream in StopAudioOut if the stream is playingLioncash2019-03-071-1/+3
* hle/service/audio/audout_u: Correct lack of return in failure case of AppendAudioOutBufferImpl()Lioncash2019-03-061-0/+1
* hle/service/audio: Extract audio error codes to a headerLioncash2019-03-051-9/+3
* core_timing: Convert core timing into a classLioncash2019-02-161-5/+5
* Merge pull request #1803 from DarkLordZach/k-able-eventbunnei2018-12-031-7/+10
|\
| * kernel/event: Reference ReadableEvent from WritableEventZach Hilman2018-11-291-8/+7
| * core: Port all current usages of Event to Readable/WritableEventZach Hilman2018-11-291-5/+9
* | service/audio/audout_u: Amend constructor initialization list orderLioncash2018-12-021-2/+2
|/
* Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec2018-11-261-0/+5
* audout_u: Add support for multiple IAudioOut streams.bunnei2018-11-221-8/+20
* Removed the use of rp.MakeBuilderDavid Marcec2018-09-191-1/+1
* service/audio: Replace includes with forward declarations where applicableLioncash2018-09-121-0/+17
* hle/service: Default constructors and destructors in the cpp file where applicableLioncash2018-09-111-0/+2
* kernel: Eliminate kernel global stateLioncash2018-08-291-1/+3
* audout_u: Correct IAudioOut initializer list orderLioncash2018-08-141-1/+1
* audio_core: Use s16 where possible for audio samples.bunnei2018-08-051-3/+3
* audio_core: Port codec code from Citra for ADPCM decoding.bunnei2018-08-051-1/+3
* audio_core: Streams need unique names for CoreTiming.bunnei2018-08-041-1/+1
* audout_u: Remove std::move in OpenAudioOutImpl()Lioncash2018-07-311-1/+1
* audio_core: Move to audout_u impl.bunnei2018-07-311-4/+4
* audout: Implement IAudioOut interface with AudioCore.bunnei2018-07-281-93/+102
* core_timing: Split off utility functions into core_timing_utilMerryMage2018-07-241-0/+1
* audout_u: Use a std::array instead of std::string for holding the audio interface nameLioncash2018-07-201-1/+2
* hle_ipc: Introduce generic WriteBuffer overload for multiple container typesLioncash2018-07-191-1/+1
* Audout "Auto" functionsDavid Marcec2018-07-121-12/+12
* Rename logging macro back to LOG_*James Rowe2018-07-031-8/+8
* Correct audio command numbers & add or rename some functions (#455)greggameplayer2018-05-211-4/+4
* core_timing: Namespace all functions and constants in core_timing's headerLioncash2018-04-301-1/+1
* audio: Move logging macros over to new fmt-compatible onesLioncash2018-04-241-8/+8
* service: Use nested namespace specifiers where applicableLioncash2018-04-201-4/+2
* Updated audout with more service names.Hexagon122018-04-101-13/+16
* audout_u: Implement GetAudioOutState.bunnei2018-04-031-1/+8
* CoreTiming: Unschedule the pending events when an Interface is destroyed.Subv2018-03-041-1/+3
* audio: Use WriteBuffer instead of BufferDescriptorB.bunnei2018-02-141-6/+2
* audout_u: Various cleanups.bunnei2018-01-251-29/+17
* hle: Rename RequestBuilder to ResponseBuilder.bunnei2018-01-251-7/+7
* service: Fix all incorrect IPC response headers.bunnei2018-01-251-1/+1
* audout:u OpenAudioOut and IAudioOut (#138)st4rk2018-01-251-14/+152
* Stub OpenAudioOut and fix a issue with HID IAppletResource being created more than oncegdkchan2018-01-221-1/+14
* Added stubs for audio services. (#116)st4rk2018-01-221-4/+39
* audio: Stub out AudOutU::ListAudioOuts.bunnei2018-01-151-0/+26