From 3565e32f4d8ae28ae69dbb59e4ecad4fc8155a54 Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 24 Jun 2021 18:25:37 -0700 Subject: hle: service: hwopus: Implement GetWorkBufferSizeEx and OpenHardwareOpusDecoderEx. - This is used by the latest update of Doom Eternal. --- src/core/hle/service/audio/hwopus.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/core/hle/service/audio/hwopus.h') diff --git a/src/core/hle/service/audio/hwopus.h b/src/core/hle/service/audio/hwopus.h index 4f921f18e..b74824ff3 100644 --- a/src/core/hle/service/audio/hwopus.h +++ b/src/core/hle/service/audio/hwopus.h @@ -18,8 +18,10 @@ public: ~HwOpus() override; private: - void OpenOpusDecoder(Kernel::HLERequestContext& ctx); + void OpenHardwareOpusDecoder(Kernel::HLERequestContext& ctx); + void OpenHardwareOpusDecoderEx(Kernel::HLERequestContext& ctx); void GetWorkBufferSize(Kernel::HLERequestContext& ctx); + void GetWorkBufferSizeEx(Kernel::HLERequestContext& ctx); }; } // namespace Service::Audio -- cgit v1.2.3