2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-01-14 21:29:11 -05:00
|
|
|
|
2023-02-18 16:26:48 -05:00
|
|
|
#include "core/core.h"
|
2018-01-14 21:29:11 -05:00
|
|
|
#include "core/hle/service/audio/audio.h"
|
2024-02-14 19:51:07 -06:00
|
|
|
#include "core/hle/service/audio/audio_controller.h"
|
2024-02-19 21:45:48 -05:00
|
|
|
#include "core/hle/service/audio/audio_in_manager.h"
|
2024-02-19 23:38:09 -05:00
|
|
|
#include "core/hle/service/audio/audio_out_manager.h"
|
2024-02-20 00:46:35 -05:00
|
|
|
#include "core/hle/service/audio/audio_renderer_manager.h"
|
2024-02-19 23:43:00 -05:00
|
|
|
#include "core/hle/service/audio/final_output_recorder_manager.h"
|
|
|
|
#include "core/hle/service/audio/final_output_recorder_manager_for_applet.h"
|
2024-02-20 00:55:02 -05:00
|
|
|
#include "core/hle/service/audio/hardware_opus_decoder_manager.h"
|
2023-02-18 16:26:48 -05:00
|
|
|
#include "core/hle/service/server_manager.h"
|
2018-09-11 21:45:20 -04:00
|
|
|
#include "core/hle/service/service.h"
|
2018-01-14 21:29:11 -05:00
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
namespace Service::Audio {
|
2018-01-14 21:29:11 -05:00
|
|
|
|
2023-02-18 16:26:48 -05:00
|
|
|
void LoopProcess(Core::System& system) {
|
|
|
|
auto server_manager = std::make_unique<ServerManager>(system);
|
|
|
|
|
2024-02-14 19:51:07 -06:00
|
|
|
server_manager->RegisterNamedService("audctl", std::make_shared<IAudioController>(system));
|
2024-02-19 21:45:48 -05:00
|
|
|
server_manager->RegisterNamedService("audin:u", std::make_shared<IAudioInManager>(system));
|
2024-02-19 23:38:09 -05:00
|
|
|
server_manager->RegisterNamedService("audout:u", std::make_shared<IAudioOutManager>(system));
|
2024-02-19 23:43:00 -05:00
|
|
|
server_manager->RegisterNamedService(
|
|
|
|
"audrec:a", std::make_shared<IFinalOutputRecorderManagerForApplet>(system));
|
|
|
|
server_manager->RegisterNamedService("audrec:u",
|
|
|
|
std::make_shared<IFinalOutputRecorderManager>(system));
|
2024-02-20 00:46:35 -05:00
|
|
|
server_manager->RegisterNamedService("audren:u",
|
|
|
|
std::make_shared<IAudioRendererManager>(system));
|
2024-02-20 00:55:02 -05:00
|
|
|
server_manager->RegisterNamedService("hwopus",
|
|
|
|
std::make_shared<IHardwareOpusDecoderManager>(system));
|
2023-02-18 16:26:48 -05:00
|
|
|
ServerManager::RunServer(std::move(server_manager));
|
2018-01-14 21:29:11 -05:00
|
|
|
}
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::Audio
|