2018-01-15 02:29:11 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-01-22 03:03:36 +00:00
|
|
|
#include "core/hle/service/audio/audin_u.h"
|
2018-01-15 02:29:11 +00:00
|
|
|
#include "core/hle/service/audio/audio.h"
|
|
|
|
#include "core/hle/service/audio/audout_u.h"
|
2018-01-22 03:03:36 +00:00
|
|
|
#include "core/hle/service/audio/audrec_u.h"
|
|
|
|
#include "core/hle/service/audio/audren_u.h"
|
|
|
|
#include "core/hle/service/audio/codecctl.h"
|
2018-06-25 13:44:17 +00:00
|
|
|
#include "core/hle/service/audio/hwopus.h"
|
2018-01-15 02:29:11 +00:00
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Audio {
|
2018-01-15 02:29:11 +00:00
|
|
|
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
|
|
std::make_shared<AudOutU>()->InstallAsService(service_manager);
|
2018-01-22 03:03:36 +00:00
|
|
|
std::make_shared<AudInU>()->InstallAsService(service_manager);
|
|
|
|
std::make_shared<AudRecU>()->InstallAsService(service_manager);
|
|
|
|
std::make_shared<AudRenU>()->InstallAsService(service_manager);
|
|
|
|
std::make_shared<CodecCtl>()->InstallAsService(service_manager);
|
2018-06-25 13:44:17 +00:00
|
|
|
std::make_shared<HwOpus>()->InstallAsService(service_manager);
|
2018-01-15 02:29:11 +00:00
|
|
|
}
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Audio
|