summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-02-24 19:52:32 +0100
committerNarr the Reg <juangerman-13@hotmail.com>2023-02-25 01:17:36 +0100
commit39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0 (patch)
tree2e9ebbbc43d2886279c106ac7995123c45186633 /src/core/hle/service/audio
parentMerge pull request #9842 from german77/proper_real_mouse (diff)
downloadyuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar
yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar.gz
yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar.bz2
yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar.lz
yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar.xz
yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar.zst
yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.zip
Diffstat (limited to 'src/core/hle/service/audio')
-rw-r--r--src/core/hle/service/audio/hwopus.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/audio/hwopus.cpp b/src/core/hle/service/audio/hwopus.cpp
index e01f87356..3db3fe188 100644
--- a/src/core/hle/service/audio/hwopus.cpp
+++ b/src/core/hle/service/audio/hwopus.cpp
@@ -362,6 +362,8 @@ HwOpus::HwOpus(Core::System& system_) : ServiceFramework{system_, "hwopus"} {
{5, &HwOpus::GetWorkBufferSizeEx, "GetWorkBufferSizeEx"},
{6, nullptr, "OpenHardwareOpusDecoderForMultiStreamEx"},
{7, &HwOpus::GetWorkBufferSizeForMultiStreamEx, "GetWorkBufferSizeForMultiStreamEx"},
+ {8, nullptr, "GetWorkBufferSizeExEx"},
+ {9, nullptr, "GetWorkBufferSizeForMultiStreamExEx"},
};
RegisterHandlers(functions);
}