2018-06-25 15:44:17 +02:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
|
|
namespace Service::Audio {
|
|
|
|
|
|
|
|
class HwOpus final : public ServiceFramework<HwOpus> {
|
|
|
|
public:
|
|
|
|
explicit HwOpus();
|
|
|
|
~HwOpus() = default;
|
|
|
|
|
|
|
|
private:
|
2018-07-31 00:42:20 +02:00
|
|
|
void OpenOpusDecoder(Kernel::HLERequestContext& ctx);
|
2018-06-25 15:44:17 +02:00
|
|
|
void GetWorkBufferSize(Kernel::HLERequestContext& ctx);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Service::Audio
|