diff options
| author | Liam <byteslice@airmail.cc> | 2024-02-20 00:55:02 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2024-02-20 22:15:37 -0500 |
| commit | f65539504f009bb18409907fef429bf8c70e0508 (patch) | |
| tree | 286cb5600bf3a6751dae2c7cd852fc3316d69014 /src/core/hle/service/audio/audio.cpp | |
| parent | 62083fcafd11348e01cf0d99e2693cb608cca71b (diff) | |
audio: split IHardwarweOpusDecoder, move IHardwareOpusDecoderManager
Diffstat (limited to 'src/core/hle/service/audio/audio.cpp')
| -rw-r--r-- | src/core/hle/service/audio/audio.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/audio.cpp b/src/core/hle/service/audio/audio.cpp index 82a2ae283..331176bf7 100644 --- a/src/core/hle/service/audio/audio.cpp +++ b/src/core/hle/service/audio/audio.cpp @@ -9,7 +9,7 @@ #include "core/hle/service/audio/audio_renderer_manager.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/hardware_opus_decoder_manager.h" #include "core/hle/service/server_manager.h" #include "core/hle/service/service.h" @@ -27,7 +27,8 @@ void LoopProcess(Core::System& system) { std::make_shared<IFinalOutputRecorderManager>(system)); server_manager->RegisterNamedService("audren:u", std::make_shared<IAudioRendererManager>(system)); - server_manager->RegisterNamedService("hwopus", std::make_shared<HwOpus>(system)); + server_manager->RegisterNamedService("hwopus", + std::make_shared<IHardwareOpusDecoderManager>(system)); ServerManager::RunServer(std::move(server_manager)); } |
