diff options
author | bunnei <bunneidev@gmail.com> | 2020-02-14 03:26:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-14 03:26:13 +0100 |
commit | 74feed372c3a01f2a09b34a8a947745f00e65a44 (patch) | |
tree | 74874c95e8fa90ee8f816c8626ced200a01b47cd /src | |
parent | Merge pull request #3395 from FernandoS27/queries (diff) | |
parent | update hwopus DecodeInterleaved for FW 7.0.0+ (diff) | |
download | yuzu-74feed372c3a01f2a09b34a8a947745f00e65a44.tar yuzu-74feed372c3a01f2a09b34a8a947745f00e65a44.tar.gz yuzu-74feed372c3a01f2a09b34a8a947745f00e65a44.tar.bz2 yuzu-74feed372c3a01f2a09b34a8a947745f00e65a44.tar.lz yuzu-74feed372c3a01f2a09b34a8a947745f00e65a44.tar.xz yuzu-74feed372c3a01f2a09b34a8a947745f00e65a44.tar.zst yuzu-74feed372c3a01f2a09b34a8a947745f00e65a44.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/audio/hwopus.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/hwopus.cpp b/src/core/hle/service/audio/hwopus.cpp index cb839e4a2..d19513cbb 100644 --- a/src/core/hle/service/audio/hwopus.cpp +++ b/src/core/hle/service/audio/hwopus.cpp @@ -170,8 +170,10 @@ public: {3, nullptr, "SetContextForMultiStream"}, {4, &IHardwareOpusDecoderManager::DecodeInterleavedWithPerfOld, "DecodeInterleavedWithPerfOld"}, {5, nullptr, "DecodeInterleavedForMultiStreamWithPerfOld"}, - {6, &IHardwareOpusDecoderManager::DecodeInterleaved, "DecodeInterleaved"}, - {7, nullptr, "DecodeInterleavedForMultiStream"}, + {6, &IHardwareOpusDecoderManager::DecodeInterleaved, "DecodeInterleavedWithPerfAndResetOld"}, + {7, nullptr, "DecodeInterleavedForMultiStreamWithPerfAndResetOld"}, + {8, &IHardwareOpusDecoderManager::DecodeInterleaved, "DecodeInterleaved"}, + {9, nullptr, "DecodeInterleavedForMultiStream"}, }; // clang-format on |