Merge pull request #11428 from Kelebek1/adsp_rework
Rework ADSP into a wrapper for apps
This commit is contained in:
commit
69949e7964
173 changed files with 1059 additions and 1265 deletions
|
@ -220,7 +220,7 @@ AudInU::AudInU(Core::System& system_)
|
|||
AudInU::~AudInU() = default;
|
||||
|
||||
void AudInU::ListAudioIns(HLERequestContext& ctx) {
|
||||
using namespace AudioCore::AudioRenderer;
|
||||
using namespace AudioCore::Renderer;
|
||||
|
||||
LOG_DEBUG(Service_Audio, "called");
|
||||
|
||||
|
@ -240,7 +240,7 @@ void AudInU::ListAudioIns(HLERequestContext& ctx) {
|
|||
}
|
||||
|
||||
void AudInU::ListAudioInsAutoFiltered(HLERequestContext& ctx) {
|
||||
using namespace AudioCore::AudioRenderer;
|
||||
using namespace AudioCore::Renderer;
|
||||
|
||||
LOG_DEBUG(Service_Audio, "called");
|
||||
|
||||
|
|
|
@ -228,7 +228,7 @@ AudOutU::AudOutU(Core::System& system_)
|
|||
AudOutU::~AudOutU() = default;
|
||||
|
||||
void AudOutU::ListAudioOuts(HLERequestContext& ctx) {
|
||||
using namespace AudioCore::AudioRenderer;
|
||||
using namespace AudioCore::Renderer;
|
||||
|
||||
std::scoped_lock l{impl->mutex};
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "core/hle/service/ipc_helpers.h"
|
||||
#include "core/memory.h"
|
||||
|
||||
using namespace AudioCore::AudioRenderer;
|
||||
using namespace AudioCore::Renderer;
|
||||
|
||||
namespace Service::Audio {
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ private:
|
|||
void GetAudioDeviceServiceWithRevisionInfo(HLERequestContext& ctx);
|
||||
|
||||
KernelHelpers::ServiceContext service_context;
|
||||
std::unique_ptr<AudioCore::AudioRenderer::Manager> impl;
|
||||
std::unique_ptr<AudioCore::Renderer::Manager> impl;
|
||||
u32 num_audio_devices{0};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue