mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-19 13:25:14 +00:00
PSP2
This commit is contained in:
parent
5c52521a0a
commit
38c444cfa1
133 changed files with 767 additions and 478 deletions
62
rpcs3/Emu/PSP2/Modules/sceAudioenc.cpp
Normal file
62
rpcs3/Emu/PSP2/Modules/sceAudioenc.cpp
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/PSP2/ARMv7Module.h"
|
||||
|
||||
#include "sceAudioenc.h"
|
||||
|
||||
logs::channel sceAudioenc("sceAudioenc", logs::level::notice);
|
||||
|
||||
s32 sceAudioencInitLibrary(u32 codecType, vm::ptr<SceAudioencInitParam> pInitParam)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceAudioencTermLibrary(u32 codecType)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceAudioencCreateEncoder(vm::ptr<SceAudioencCtrl> pCtrl, u32 codecType)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceAudioencDeleteEncoder(vm::ptr<SceAudioencCtrl> pCtrl)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceAudioencEncode(vm::ptr<SceAudioencCtrl> pCtrl)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceAudioencClearContext(vm::ptr<SceAudioencCtrl> pCtrl)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceAudioencGetOptInfo(vm::ptr<SceAudioencCtrl> pCtrl)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceAudioencGetInternalError(vm::ptr<SceAudioencCtrl> pCtrl, vm::ptr<s32> pInternalError)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
|
||||
#define REG_FUNC(nid, name) REG_FNID(SceAudioencUser, nid, name)
|
||||
|
||||
DECLARE(arm_module_manager::SceAudioenc)("SceAudioencUser", []()
|
||||
{
|
||||
REG_FUNC(0x76EE4DC6, sceAudioencInitLibrary);
|
||||
REG_FUNC(0xAB32D022, sceAudioencTermLibrary);
|
||||
REG_FUNC(0x64C04AE8, sceAudioencCreateEncoder);
|
||||
REG_FUNC(0xC6BA5EE6, sceAudioencDeleteEncoder);
|
||||
REG_FUNC(0xD85DB29C, sceAudioencEncode);
|
||||
REG_FUNC(0x9386F42D, sceAudioencClearContext);
|
||||
REG_FUNC(0xD01C63A3, sceAudioencGetOptInfo);
|
||||
REG_FUNC(0x452246D0, sceAudioencGetInternalError);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue