Browse Source
Merge pull request #6161 from Morph1984/audio-update-12.x
service: audio: Update service function tables
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
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); |
|
|
|
} |
|
|
|
|