yuzu/src/core/hle/service/audio/hwopus.h

27 lines
656 B
C
Raw Normal View History

2022-04-23 22:49:07 +04:00
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-28 19:15:37 +04:00
#pragma once
#include "core/hle/service/service.h"
namespace Core {
class System;
}
namespace Service::Audio {
class HwOpus final : public ServiceFramework<HwOpus> {
public:
explicit HwOpus(Core::System& system_);
~HwOpus() override;
private:
2021-06-25 07:18:27 +04:00
void OpenHardwareOpusDecoder(Kernel::HLERequestContext& ctx);
void OpenHardwareOpusDecoderEx(Kernel::HLERequestContext& ctx);
2020-12-28 19:15:37 +04:00
void GetWorkBufferSize(Kernel::HLERequestContext& ctx);
2021-06-25 07:18:27 +04:00
void GetWorkBufferSizeEx(Kernel::HLERequestContext& ctx);
2020-12-28 19:15:37 +04:00
};
} // namespace Service::Audio