summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audrec_u.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-01-30 04:23:44 +0100
committerLioncash <mathew1800@gmail.com>2019-01-30 04:50:26 +0100
commit0db891894746f073dbaf3f755e5bf32e915808c0 (patch)
treef5cdd9d14ac7fdd582e6bb6cc8b7cda015f59eed /src/core/hle/service/audio/audrec_u.cpp
parentservice/am/applet_ae: Update function tables (diff)
downloadyuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar.gz
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar.bz2
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar.lz
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar.xz
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar.zst
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.zip
Diffstat (limited to 'src/core/hle/service/audio/audrec_u.cpp')
-rw-r--r--src/core/hle/service/audio/audrec_u.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audrec_u.cpp b/src/core/hle/service/audio/audrec_u.cpp
index 34974afa9..6956a2e64 100644
--- a/src/core/hle/service/audio/audrec_u.cpp
+++ b/src/core/hle/service/audio/audrec_u.cpp
@@ -12,6 +12,7 @@ namespace Service::Audio {
class IFinalOutputRecorder final : public ServiceFramework<IFinalOutputRecorder> {
public:
IFinalOutputRecorder() : ServiceFramework("IFinalOutputRecorder") {
+ // clang-format off
static const FunctionInfo functions[] = {
{0, nullptr, "GetFinalOutputRecorderState"},
{1, nullptr, "StartFinalOutputRecorder"},
@@ -20,10 +21,13 @@ public:
{4, nullptr, "RegisterBufferEvent"},
{5, nullptr, "GetReleasedFinalOutputRecorderBuffer"},
{6, nullptr, "ContainsFinalOutputRecorderBuffer"},
- {7, nullptr, "Unknown"},
+ {7, nullptr, "GetFinalOutputRecorderBufferEndTime"},
{8, nullptr, "AppendFinalOutputRecorderBufferAuto"},
{9, nullptr, "GetReleasedFinalOutputRecorderBufferAuto"},
+ {10, nullptr, "FlushFinalOutputRecorderBuffers"},
};
+ // clang-format on
+
RegisterHandlers(functions);
}
~IFinalOutputRecorder() = default;