|
|
@@ -1,220 +1,15 @@
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
-#include <array>
|
|
|
-#include <cstring>
|
|
|
-#include <vector>
|
|
|
-
|
|
|
-#include "audio_core/out/audio_out_system.h"
|
|
|
-#include "audio_core/renderer/audio_device.h"
|
|
|
-#include "common/common_funcs.h"
|
|
|
-#include "common/logging/log.h"
|
|
|
-#include "common/scratch_buffer.h"
|
|
|
#include "common/string_util.h"
|
|
|
-#include "common/swap.h"
|
|
|
-#include "core/core.h"
|
|
|
-#include "core/hle/kernel/k_event.h"
|
|
|
+#include "core/hle/service/audio/audio_out.h"
|
|
|
#include "core/hle/service/audio/audout_u.h"
|
|
|
-#include "core/hle/service/audio/errors.h"
|
|
|
#include "core/hle/service/ipc_helpers.h"
|
|
|
#include "core/memory.h"
|
|
|
|
|
|
namespace Service::Audio {
|
|
|
using namespace AudioCore::AudioOut;
|
|
|
|
|
|
-class IAudioOut final : public ServiceFramework<IAudioOut> {
|
|
|
-public:
|
|
|
- explicit IAudioOut(Core::System& system_, AudioCore::AudioOut::Manager& manager,
|
|
|
- size_t session_id, const std::string& device_name,
|
|
|
- const AudioOutParameter& in_params, Kernel::KProcess* handle,
|
|
|
- u64 applet_resource_user_id)
|
|
|
- : ServiceFramework{system_, "IAudioOut"}, service_context{system_, "IAudioOut"},
|
|
|
- event{service_context.CreateEvent("AudioOutEvent")}, process{handle},
|
|
|
- impl{std::make_shared<AudioCore::AudioOut::Out>(system_, manager, event, session_id)} {
|
|
|
-
|
|
|
- // clang-format off
|
|
|
- static const FunctionInfo functions[] = {
|
|
|
- {0, &IAudioOut::GetAudioOutState, "GetAudioOutState"},
|
|
|
- {1, &IAudioOut::Start, "Start"},
|
|
|
- {2, &IAudioOut::Stop, "Stop"},
|
|
|
- {3, &IAudioOut::AppendAudioOutBuffer, "AppendAudioOutBuffer"},
|
|
|
- {4, &IAudioOut::RegisterBufferEvent, "RegisterBufferEvent"},
|
|
|
- {5, &IAudioOut::GetReleasedAudioOutBuffers, "GetReleasedAudioOutBuffers"},
|
|
|
- {6, &IAudioOut::ContainsAudioOutBuffer, "ContainsAudioOutBuffer"},
|
|
|
- {7, &IAudioOut::AppendAudioOutBuffer, "AppendAudioOutBufferAuto"},
|
|
|
- {8, &IAudioOut::GetReleasedAudioOutBuffers, "GetReleasedAudioOutBuffersAuto"},
|
|
|
- {9, &IAudioOut::GetAudioOutBufferCount, "GetAudioOutBufferCount"},
|
|
|
- {10, &IAudioOut::GetAudioOutPlayedSampleCount, "GetAudioOutPlayedSampleCount"},
|
|
|
- {11, &IAudioOut::FlushAudioOutBuffers, "FlushAudioOutBuffers"},
|
|
|
- {12, &IAudioOut::SetAudioOutVolume, "SetAudioOutVolume"},
|
|
|
- {13, &IAudioOut::GetAudioOutVolume, "GetAudioOutVolume"},
|
|
|
- };
|
|
|
- // clang-format on
|
|
|
- RegisterHandlers(functions);
|
|
|
-
|
|
|
- process->Open();
|
|
|
- }
|
|
|
-
|
|
|
- ~IAudioOut() override {
|
|
|
- impl->Free();
|
|
|
- service_context.CloseEvent(event);
|
|
|
- process->Close();
|
|
|
- }
|
|
|
-
|
|
|
- [[nodiscard]] std::shared_ptr<AudioCore::AudioOut::Out> GetImpl() {
|
|
|
- return impl;
|
|
|
- }
|
|
|
-
|
|
|
-private:
|
|
|
- void GetAudioOutState(HLERequestContext& ctx) {
|
|
|
- const auto state = static_cast<u32>(impl->GetState());
|
|
|
-
|
|
|
- LOG_DEBUG(Service_Audio, "called. State={}", state);
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 3};
|
|
|
- rb.Push(ResultSuccess);
|
|
|
- rb.Push(state);
|
|
|
- }
|
|
|
-
|
|
|
- void Start(HLERequestContext& ctx) {
|
|
|
- LOG_DEBUG(Service_Audio, "called");
|
|
|
-
|
|
|
- auto result = impl->StartSystem();
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 2};
|
|
|
- rb.Push(result);
|
|
|
- }
|
|
|
-
|
|
|
- void Stop(HLERequestContext& ctx) {
|
|
|
- LOG_DEBUG(Service_Audio, "called");
|
|
|
-
|
|
|
- auto result = impl->StopSystem();
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 2};
|
|
|
- rb.Push(result);
|
|
|
- }
|
|
|
-
|
|
|
- void AppendAudioOutBuffer(HLERequestContext& ctx) {
|
|
|
- IPC::RequestParser rp{ctx};
|
|
|
- u64 tag = rp.PopRaw<u64>();
|
|
|
-
|
|
|
- const auto in_buffer_size{ctx.GetReadBufferSize()};
|
|
|
- if (in_buffer_size < sizeof(AudioOutBuffer)) {
|
|
|
- LOG_ERROR(Service_Audio, "Input buffer is too small for an AudioOutBuffer!");
|
|
|
- }
|
|
|
-
|
|
|
- const auto& in_buffer = ctx.ReadBuffer();
|
|
|
- AudioOutBuffer buffer{};
|
|
|
- std::memcpy(&buffer, in_buffer.data(), sizeof(AudioOutBuffer));
|
|
|
-
|
|
|
- LOG_TRACE(Service_Audio, "called. Session {} Appending buffer {:08X}",
|
|
|
- impl->GetSystem().GetSessionId(), tag);
|
|
|
-
|
|
|
- auto result = impl->AppendBuffer(buffer, tag);
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 2};
|
|
|
- rb.Push(result);
|
|
|
- }
|
|
|
-
|
|
|
- void RegisterBufferEvent(HLERequestContext& ctx) {
|
|
|
- LOG_DEBUG(Service_Audio, "called");
|
|
|
-
|
|
|
- auto& buffer_event = impl->GetBufferEvent();
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 2, 1};
|
|
|
- rb.Push(ResultSuccess);
|
|
|
- rb.PushCopyObjects(buffer_event);
|
|
|
- }
|
|
|
-
|
|
|
- void GetReleasedAudioOutBuffers(HLERequestContext& ctx) {
|
|
|
- const auto write_buffer_size = ctx.GetWriteBufferNumElements<u64>();
|
|
|
- released_buffer.resize_destructive(write_buffer_size);
|
|
|
- released_buffer[0] = 0;
|
|
|
-
|
|
|
- const auto count = impl->GetReleasedBuffers(released_buffer);
|
|
|
-
|
|
|
- ctx.WriteBuffer(released_buffer);
|
|
|
-
|
|
|
- LOG_TRACE(Service_Audio, "called. Session {} released {} buffers",
|
|
|
- impl->GetSystem().GetSessionId(), count);
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 3};
|
|
|
- rb.Push(ResultSuccess);
|
|
|
- rb.Push(count);
|
|
|
- }
|
|
|
-
|
|
|
- void ContainsAudioOutBuffer(HLERequestContext& ctx) {
|
|
|
- IPC::RequestParser rp{ctx};
|
|
|
-
|
|
|
- const u64 tag{rp.Pop<u64>()};
|
|
|
- const auto buffer_queued{impl->ContainsAudioBuffer(tag)};
|
|
|
-
|
|
|
- LOG_DEBUG(Service_Audio, "called. Is buffer {:08X} registered? {}", tag, buffer_queued);
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 3};
|
|
|
- rb.Push(ResultSuccess);
|
|
|
- rb.Push(buffer_queued);
|
|
|
- }
|
|
|
-
|
|
|
- void GetAudioOutBufferCount(HLERequestContext& ctx) {
|
|
|
- const auto buffer_count = impl->GetBufferCount();
|
|
|
-
|
|
|
- LOG_DEBUG(Service_Audio, "called. Buffer count={}", buffer_count);
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 3};
|
|
|
- rb.Push(ResultSuccess);
|
|
|
- rb.Push(buffer_count);
|
|
|
- }
|
|
|
-
|
|
|
- void GetAudioOutPlayedSampleCount(HLERequestContext& ctx) {
|
|
|
- const auto samples_played = impl->GetPlayedSampleCount();
|
|
|
-
|
|
|
- LOG_DEBUG(Service_Audio, "called. Played samples={}", samples_played);
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 4};
|
|
|
- rb.Push(ResultSuccess);
|
|
|
- rb.Push(samples_played);
|
|
|
- }
|
|
|
-
|
|
|
- void FlushAudioOutBuffers(HLERequestContext& ctx) {
|
|
|
- bool flushed{impl->FlushAudioOutBuffers()};
|
|
|
-
|
|
|
- LOG_DEBUG(Service_Audio, "called. Were any buffers flushed? {}", flushed);
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 3};
|
|
|
- rb.Push(ResultSuccess);
|
|
|
- rb.Push(flushed);
|
|
|
- }
|
|
|
-
|
|
|
- void SetAudioOutVolume(HLERequestContext& ctx) {
|
|
|
- IPC::RequestParser rp{ctx};
|
|
|
- const auto volume = rp.Pop<f32>();
|
|
|
-
|
|
|
- LOG_DEBUG(Service_Audio, "called. Volume={}", volume);
|
|
|
-
|
|
|
- impl->SetVolume(volume);
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 2};
|
|
|
- rb.Push(ResultSuccess);
|
|
|
- }
|
|
|
-
|
|
|
- void GetAudioOutVolume(HLERequestContext& ctx) {
|
|
|
- const auto volume = impl->GetVolume();
|
|
|
-
|
|
|
- LOG_DEBUG(Service_Audio, "called. Volume={}", volume);
|
|
|
-
|
|
|
- IPC::ResponseBuilder rb{ctx, 3};
|
|
|
- rb.Push(ResultSuccess);
|
|
|
- rb.Push(volume);
|
|
|
- }
|
|
|
-
|
|
|
- KernelHelpers::ServiceContext service_context;
|
|
|
- Kernel::KEvent* event;
|
|
|
- Kernel::KProcess* process;
|
|
|
- std::shared_ptr<AudioCore::AudioOut::Out> impl;
|
|
|
- Common::ScratchBuffer<u64> released_buffer;
|
|
|
-};
|
|
|
-
|
|
|
AudOutU::AudOutU(Core::System& system_)
|
|
|
: ServiceFramework{system_, "audout:u"}, service_context{system_, "AudOutU"},
|
|
|
impl{std::make_unique<AudioCore::AudioOut::Manager>(system_)} {
|