|
|
@ -6,9 +6,9 @@
|
|
|
|
#include "core/hle/service/audio/audio_controller.h"
|
|
|
|
#include "core/hle/service/audio/audio_controller.h"
|
|
|
|
#include "core/hle/service/audio/audio_in_manager.h"
|
|
|
|
#include "core/hle/service/audio/audio_in_manager.h"
|
|
|
|
#include "core/hle/service/audio/audio_out_manager.h"
|
|
|
|
#include "core/hle/service/audio/audio_out_manager.h"
|
|
|
|
#include "core/hle/service/audio/audrec_a.h"
|
|
|
|
|
|
|
|
#include "core/hle/service/audio/audrec_u.h"
|
|
|
|
|
|
|
|
#include "core/hle/service/audio/audren_u.h"
|
|
|
|
#include "core/hle/service/audio/audren_u.h"
|
|
|
|
|
|
|
|
#include "core/hle/service/audio/final_output_recorder_manager.h"
|
|
|
|
|
|
|
|
#include "core/hle/service/audio/final_output_recorder_manager_for_applet.h"
|
|
|
|
#include "core/hle/service/audio/hwopus.h"
|
|
|
|
#include "core/hle/service/audio/hwopus.h"
|
|
|
|
#include "core/hle/service/server_manager.h"
|
|
|
|
#include "core/hle/service/server_manager.h"
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
@ -21,8 +21,10 @@ void LoopProcess(Core::System& system) {
|
|
|
|
server_manager->RegisterNamedService("audctl", std::make_shared<IAudioController>(system));
|
|
|
|
server_manager->RegisterNamedService("audctl", std::make_shared<IAudioController>(system));
|
|
|
|
server_manager->RegisterNamedService("audin:u", std::make_shared<IAudioInManager>(system));
|
|
|
|
server_manager->RegisterNamedService("audin:u", std::make_shared<IAudioInManager>(system));
|
|
|
|
server_manager->RegisterNamedService("audout:u", std::make_shared<IAudioOutManager>(system));
|
|
|
|
server_manager->RegisterNamedService("audout:u", std::make_shared<IAudioOutManager>(system));
|
|
|
|
server_manager->RegisterNamedService("audrec:a", std::make_shared<AudRecA>(system));
|
|
|
|
server_manager->RegisterNamedService(
|
|
|
|
server_manager->RegisterNamedService("audrec:u", std::make_shared<AudRecU>(system));
|
|
|
|
"audrec:a", std::make_shared<IFinalOutputRecorderManagerForApplet>(system));
|
|
|
|
|
|
|
|
server_manager->RegisterNamedService("audrec:u",
|
|
|
|
|
|
|
|
std::make_shared<IFinalOutputRecorderManager>(system));
|
|
|
|
server_manager->RegisterNamedService("audren:u", std::make_shared<AudRenU>(system));
|
|
|
|
server_manager->RegisterNamedService("audren:u", std::make_shared<AudRenU>(system));
|
|
|
|
server_manager->RegisterNamedService("hwopus", std::make_shared<HwOpus>(system));
|
|
|
|
server_manager->RegisterNamedService("hwopus", std::make_shared<HwOpus>(system));
|
|
|
|
ServerManager::RunServer(std::move(server_manager));
|
|
|
|
ServerManager::RunServer(std::move(server_manager));
|
|
|
|