summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-07 19:39:05 +0200
committerGitHub <noreply@github.com>2021-04-07 19:39:05 +0200
commit6dc35caad15f3e24348ba5fa7b6f7964a024cd91 (patch)
tree45d97a9d9629bf389e0d83c63c93ff4354872490
parentMerge pull request #6146 from lat9nq/vp9_empty_memcpy (diff)
parenthwopus: Update to 12.x (diff)
downloadyuzu-6dc35caad15f3e24348ba5fa7b6f7964a024cd91.tar
yuzu-6dc35caad15f3e24348ba5fa7b6f7964a024cd91.tar.gz
yuzu-6dc35caad15f3e24348ba5fa7b6f7964a024cd91.tar.bz2
yuzu-6dc35caad15f3e24348ba5fa7b6f7964a024cd91.tar.lz
yuzu-6dc35caad15f3e24348ba5fa7b6f7964a024cd91.tar.xz
yuzu-6dc35caad15f3e24348ba5fa7b6f7964a024cd91.tar.zst
yuzu-6dc35caad15f3e24348ba5fa7b6f7964a024cd91.zip
-rw-r--r--src/core/hle/service/audio/hwopus.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/audio/hwopus.cpp b/src/core/hle/service/audio/hwopus.cpp
index ea3414fd2..19c578b3a 100644
--- a/src/core/hle/service/audio/hwopus.cpp
+++ b/src/core/hle/service/audio/hwopus.cpp
@@ -297,6 +297,10 @@ HwOpus::HwOpus(Core::System& system_) : ServiceFramework{system_, "hwopus"} {
{1, &HwOpus::GetWorkBufferSize, "GetWorkBufferSize"},
{2, nullptr, "OpenOpusDecoderForMultiStream"},
{3, nullptr, "GetWorkBufferSizeForMultiStream"},
+ {4, nullptr, "OpenHardwareOpusDecoderEx"},
+ {5, nullptr, "GetWorkBufferSizeEx"},
+ {6, nullptr, "OpenHardwareOpusDecoderForMultiStreamEx"},
+ {7, nullptr, "GetWorkBufferSizeForMultiStreamEx"},
};
RegisterHandlers(functions);
}