mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-22 04:25:19 +00:00
Stub some functions
This commit is contained in:
parent
ef1eff6d48
commit
aff0484ea2
2 changed files with 42 additions and 4 deletions
|
@ -356,6 +356,12 @@ s32 cellSysmodule_D9B8C0EE()
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellSysmodule_1A267F98()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellSysmodule);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
DECLARE(ppu_module_manager::cellSysmodule)("cellSysmodule", []()
|
||||
{
|
||||
REG_FUNC(cellSysmodule, cellSysmoduleInitialize);
|
||||
|
@ -368,4 +374,5 @@ DECLARE(ppu_module_manager::cellSysmodule)("cellSysmodule", []()
|
|||
REG_FUNC(cellSysmodule, cellSysmoduleFetchImage);
|
||||
REG_FNID(cellSysmodule, 0xB498BF77, cellSysmodule_B498BF77);
|
||||
REG_FNID(cellSysmodule, 0xD9B8C0EE, cellSysmodule_D9B8C0EE);
|
||||
REG_FNID(cellSysmodule, 0x1A267F98, cellSysmodule_1A267F98);
|
||||
});
|
||||
|
|
|
@ -844,6 +844,36 @@ s32 cellVdecSetFrameRate(u32 handle, CellVdecFrameRate frc)
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellVdecOpenExt()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellVdec);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellVdecStartSeqExt()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellVdec);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellVdecGetPicItemExt()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellVdec);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellVdecSetFrameRateExt()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellVdec);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellVdecSetPts()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellVdec);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
DECLARE(ppu_module_manager::cellVdec)("libvdec", []()
|
||||
{
|
||||
REG_VAR(libvdec, _cell_vdec_prx_ver); // 0x085a7ecb
|
||||
|
@ -852,16 +882,17 @@ DECLARE(ppu_module_manager::cellVdec)("libvdec", []()
|
|||
REG_FUNC(libvdec, cellVdecQueryAttrEx);
|
||||
REG_FUNC(libvdec, cellVdecOpen);
|
||||
REG_FUNC(libvdec, cellVdecOpenEx);
|
||||
//REG_FUNC(libvdec, cellVdecOpenExt); // 0xef4d8ad7
|
||||
REG_FUNC(libvdec, cellVdecOpenExt); // 0xef4d8ad7
|
||||
REG_FUNC(libvdec, cellVdecClose);
|
||||
REG_FUNC(libvdec, cellVdecStartSeq);
|
||||
//REG_FUNC(libvdec, cellVdecStartSeqExt); // 0xebb8e70a
|
||||
REG_FUNC(libvdec, cellVdecStartSeqExt); // 0xebb8e70a
|
||||
REG_FUNC(libvdec, cellVdecEndSeq);
|
||||
REG_FUNC(libvdec, cellVdecDecodeAu);
|
||||
REG_FUNC(libvdec, cellVdecGetPicture);
|
||||
REG_FUNC(libvdec, cellVdecGetPictureExt); // 0xa21aa896
|
||||
REG_FUNC(libvdec, cellVdecGetPicItem);
|
||||
//REG_FUNC(libvdec, cellVdecGetPicItemExt); // 0x2cbd9806
|
||||
REG_FUNC(libvdec, cellVdecGetPicItemExt); // 0x2cbd9806
|
||||
REG_FUNC(libvdec, cellVdecSetFrameRate);
|
||||
//REG_FUNC(libvdec, cellVdecSetFrameRateExt); // 0xcffc42a5
|
||||
REG_FUNC(libvdec, cellVdecSetFrameRateExt); // 0xcffc42a5
|
||||
REG_FUNC(libvdec, cellVdecSetPts); // 0x3ce2e4f8
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue