mirror of
https://github.com/PabloMK7/citra.git
synced 2025-10-11 20:10:03 +00:00
hle: Eliminate need to specify command headers for IPC. (#6678)
This commit is contained in:
parent
0bedb28bdc
commit
e043caac27
96 changed files with 2691 additions and 2707 deletions
|
@ -13,18 +13,18 @@ namespace Service::MVD {
|
|||
MVD_STD::MVD_STD() : ServiceFramework("mvd:std", 1) {
|
||||
static const FunctionInfo functions[] = {
|
||||
// clang-format off
|
||||
{IPC::MakeHeader(0x0001, 2, 2), nullptr, "Initialize"},
|
||||
{IPC::MakeHeader(0x0002, 0, 0), nullptr, "Shutdown"},
|
||||
{IPC::MakeHeader(0x0003, 12, 0), nullptr, "CalculateWorkBufSize"},
|
||||
{IPC::MakeHeader(0x0004, 3, 0), nullptr, "CalculateImageSize"},
|
||||
{IPC::MakeHeader(0x0008, 5, 2), nullptr, "ProcessNALUnit"},
|
||||
{IPC::MakeHeader(0x0009, 1, 2), nullptr, "ControlFrameRendering"},
|
||||
{IPC::MakeHeader(0x000A, 0, 0), nullptr, "GetStatus"},
|
||||
{IPC::MakeHeader(0x000B, 0, 0), nullptr, "GetStatusOther"},
|
||||
{IPC::MakeHeader(0x001D, 1, 2), nullptr, "GetConfig"},
|
||||
{IPC::MakeHeader(0x001E, 1, 4), nullptr, "SetConfig"},
|
||||
{IPC::MakeHeader(0x001F, 36, 2), nullptr, "SetOutputBuffer"},
|
||||
{IPC::MakeHeader(0x0021, 4, 0), nullptr, "OverrideOutputBuffers"}
|
||||
{0x0001, nullptr, "Initialize"},
|
||||
{0x0002, nullptr, "Shutdown"},
|
||||
{0x0003, nullptr, "CalculateWorkBufSize"},
|
||||
{0x0004, nullptr, "CalculateImageSize"},
|
||||
{0x0008, nullptr, "ProcessNALUnit"},
|
||||
{0x0009, nullptr, "ControlFrameRendering"},
|
||||
{0x000A, nullptr, "GetStatus"},
|
||||
{0x000B, nullptr, "GetStatusOther"},
|
||||
{0x001D, nullptr, "GetConfig"},
|
||||
{0x001E, nullptr, "SetConfig"},
|
||||
{0x001F, nullptr, "SetOutputBuffer"},
|
||||
{0x0021, nullptr, "OverrideOutputBuffers"}
|
||||
// clang-format on
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue