2015-01-29 16:48:05 +01:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "Emu/System.h"
|
|
|
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
|
|
|
|
2015-06-21 01:04:01 +02:00
|
|
|
#include "sceCodecEngine.h"
|
2015-01-29 22:42:53 +01:00
|
|
|
|
|
|
|
|
s32 sceCodecEnginePmonStart()
|
|
|
|
|
{
|
|
|
|
|
throw __FUNCTION__;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 sceCodecEnginePmonStop()
|
|
|
|
|
{
|
|
|
|
|
throw __FUNCTION__;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-21 01:04:01 +02:00
|
|
|
s32 sceCodecEnginePmonGetProcessorLoad(vm::ptr<SceCodecEnginePmonProcessorLoad> pProcessorLoad)
|
2015-01-29 22:42:53 +01:00
|
|
|
{
|
|
|
|
|
throw __FUNCTION__;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 sceCodecEnginePmonReset()
|
|
|
|
|
{
|
|
|
|
|
throw __FUNCTION__;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-01-29 16:48:05 +01:00
|
|
|
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceCodecEngine, #name, name)
|
|
|
|
|
|
|
|
|
|
psv_log_base sceCodecEngine("SceCodecEngine", []()
|
|
|
|
|
{
|
|
|
|
|
sceCodecEngine.on_load = nullptr;
|
|
|
|
|
sceCodecEngine.on_unload = nullptr;
|
|
|
|
|
sceCodecEngine.on_stop = nullptr;
|
2015-06-21 01:04:01 +02:00
|
|
|
sceCodecEngine.on_error = nullptr;
|
2015-01-29 16:48:05 +01:00
|
|
|
|
2015-01-29 22:42:53 +01:00
|
|
|
REG_FUNC(0x3E718890, sceCodecEnginePmonStart);
|
|
|
|
|
REG_FUNC(0x268B1EF5, sceCodecEnginePmonStop);
|
|
|
|
|
REG_FUNC(0x859E4A68, sceCodecEnginePmonGetProcessorLoad);
|
|
|
|
|
REG_FUNC(0xA097E4C8, sceCodecEnginePmonReset);
|
2015-01-29 16:48:05 +01:00
|
|
|
});
|