summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/hwopus.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-06-26 10:21:55 +0200
committerGitHub <noreply@github.com>2021-06-26 10:21:55 +0200
commit432fab7c4f7c8664b2f9319fd6ac6cb8960407e4 (patch)
treee4f41221fcdcea3d1a4c0b227c171fc3dec86f7a /src/core/hle/service/audio/hwopus.h
parentMerge pull request #6528 from ReinUsesLisp/device-memory (diff)
parenthle: service: hwopus: OpenHardwareOpusDecoderEx: Remove unused buffer size. (diff)
downloadyuzu-432fab7c4f7c8664b2f9319fd6ac6cb8960407e4.tar
yuzu-432fab7c4f7c8664b2f9319fd6ac6cb8960407e4.tar.gz
yuzu-432fab7c4f7c8664b2f9319fd6ac6cb8960407e4.tar.bz2
yuzu-432fab7c4f7c8664b2f9319fd6ac6cb8960407e4.tar.lz
yuzu-432fab7c4f7c8664b2f9319fd6ac6cb8960407e4.tar.xz
yuzu-432fab7c4f7c8664b2f9319fd6ac6cb8960407e4.tar.zst
yuzu-432fab7c4f7c8664b2f9319fd6ac6cb8960407e4.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/audio/hwopus.h4
1 files changed, 3 insertions, 1 deletions
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