summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mvd/mvd_std.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2016-12-08 10:49:46 +0100
committerGitHub <noreply@github.com>2016-12-08 10:49:45 +0100
commit1840685ee89f6ea6b21ed57a2f43228a0e75437c (patch)
tree304a7eec4f7d0f81737d2ef8fa5fd86e198e5b63 /src/core/hle/service/mvd/mvd_std.cpp
parentMerge pull request #2274 from degasus/master (diff)
parentservice: Add mvd and qtm services (diff)
downloadyuzu-1840685ee89f6ea6b21ed57a2f43228a0e75437c.tar
yuzu-1840685ee89f6ea6b21ed57a2f43228a0e75437c.tar.gz
yuzu-1840685ee89f6ea6b21ed57a2f43228a0e75437c.tar.bz2
yuzu-1840685ee89f6ea6b21ed57a2f43228a0e75437c.tar.lz
yuzu-1840685ee89f6ea6b21ed57a2f43228a0e75437c.tar.xz
yuzu-1840685ee89f6ea6b21ed57a2f43228a0e75437c.tar.zst
yuzu-1840685ee89f6ea6b21ed57a2f43228a0e75437c.zip
Diffstat (limited to 'src/core/hle/service/mvd/mvd_std.cpp')
-rw-r--r--src/core/hle/service/mvd/mvd_std.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/core/hle/service/mvd/mvd_std.cpp b/src/core/hle/service/mvd/mvd_std.cpp
new file mode 100644
index 000000000..fd7ca87d3
--- /dev/null
+++ b/src/core/hle/service/mvd/mvd_std.cpp
@@ -0,0 +1,32 @@
+// Copyright 2016 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/hle/service/mvd/mvd_std.h"
+
+namespace Service {
+namespace MVD {
+
+const Interface::FunctionInfo FunctionTable[] = {
+ // clang-format off
+ {0x00010082, nullptr, "Initialize"},
+ {0x00020000, nullptr, "Shutdown"},
+ {0x00030300, nullptr, "CalculateWorkBufSize"},
+ {0x000400C0, nullptr, "CalculateImageSize"},
+ {0x00080142, nullptr, "ProcessNALUnit"},
+ {0x00090042, nullptr, "ControlFrameRendering"},
+ {0x000A0000, nullptr, "GetStatus"},
+ {0x000B0000, nullptr, "GetStatusOther"},
+ {0x001D0042, nullptr, "GetConfig"},
+ {0x001E0044, nullptr, "SetConfig"},
+ {0x001F0902, nullptr, "SetOutputBuffer"},
+ {0x00210100, nullptr, "OverrideOutputBuffers"}
+ // clang-format on
+};
+
+MVD_STD::MVD_STD() {
+ Register(FunctionTable);
+}
+
+} // namespace MVD
+} // namespace Service