2015-01-29 18:48:05 +03:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "Emu/System.h"
|
2016-05-13 13:17:26 +03:00
|
|
|
#include "Emu/PSP2/ARMv7Module.h"
|
2015-01-29 18:48:05 +03:00
|
|
|
|
2015-06-21 02:04:01 +03:00
|
|
|
#include "sceCodecEngine.h"
|
2015-01-30 00:42:53 +03:00
|
|
|
|
2017-05-13 21:30:37 +03:00
|
|
|
logs::channel sceCodecEngine("sceCodecEngine");
|
2016-02-02 00:53:16 +03:00
|
|
|
|
2015-01-30 00:42:53 +03:00
|
|
|
s32 sceCodecEnginePmonStart()
|
|
|
|
|
{
|
2016-08-08 19:01:06 +03:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2015-01-30 00:42:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 sceCodecEnginePmonStop()
|
|
|
|
|
{
|
2016-08-08 19:01:06 +03:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2015-01-30 00:42:53 +03:00
|
|
|
}
|
|
|
|
|
|
2015-06-21 02:04:01 +03:00
|
|
|
s32 sceCodecEnginePmonGetProcessorLoad(vm::ptr<SceCodecEnginePmonProcessorLoad> pProcessorLoad)
|
2015-01-30 00:42:53 +03:00
|
|
|
{
|
2016-08-08 19:01:06 +03:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2015-01-30 00:42:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 sceCodecEnginePmonReset()
|
|
|
|
|
{
|
2016-08-08 19:01:06 +03:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2015-01-30 00:42:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2016-02-02 00:53:16 +03:00
|
|
|
#define REG_FUNC(nid, name) REG_FNID(SceCodecEngine, nid, name)
|
2015-01-29 18:48:05 +03:00
|
|
|
|
2016-02-02 00:53:16 +03:00
|
|
|
DECLARE(arm_module_manager::SceCodecEngine)("SceCodecEngine", []()
|
2015-01-29 18:48:05 +03:00
|
|
|
{
|
2015-01-30 00:42:53 +03:00
|
|
|
REG_FUNC(0x3E718890, sceCodecEnginePmonStart);
|
|
|
|
|
REG_FUNC(0x268B1EF5, sceCodecEnginePmonStop);
|
|
|
|
|
REG_FUNC(0x859E4A68, sceCodecEnginePmonGetProcessorLoad);
|
|
|
|
|
REG_FUNC(0xA097E4C8, sceCodecEnginePmonReset);
|
2015-01-29 18:48:05 +03:00
|
|
|
});
|