summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mvd/mvd_std.cpp
blob: fd7ca87d3168d850001c2c20b8882f80a55130a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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