mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-17 04:15:12 +00:00
ARMv7: stubs for other modules, loader improved
This commit is contained in:
parent
1fa301b719
commit
62c8f2ac34
66 changed files with 2616 additions and 59 deletions
24
rpcs3/Emu/ARMv7/Modules/sceJpegEnc.cpp
Normal file
24
rpcs3/Emu/ARMv7/Modules/sceJpegEnc.cpp
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/ARMv7/PSVFuncList.h"
|
||||
|
||||
extern psv_log_base sceJpegEnc;
|
||||
|
||||
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceJpegEnc, #name, name)
|
||||
|
||||
psv_log_base sceJpegEnc("SceJpegEnc", []()
|
||||
{
|
||||
sceJpegEnc.on_load = nullptr;
|
||||
sceJpegEnc.on_unload = nullptr;
|
||||
sceJpegEnc.on_stop = nullptr;
|
||||
|
||||
//REG_FUNC(0x2B55844D, sceJpegEncoderGetContextSize);
|
||||
//REG_FUNC(0x88DA92B4, sceJpegEncoderInit);
|
||||
//REG_FUNC(0xC60DE94C, sceJpegEncoderEncode);
|
||||
//REG_FUNC(0xC87AA849, sceJpegEncoderEnd);
|
||||
//REG_FUNC(0x9511F3BC, sceJpegEncoderSetValidRegion);
|
||||
//REG_FUNC(0xB2B828EC, sceJpegEncoderSetCompressionRatio);
|
||||
//REG_FUNC(0x2F58B12C, sceJpegEncoderSetHeaderMode);
|
||||
//REG_FUNC(0x25D52D97, sceJpegEncoderSetOutputAddr);
|
||||
//REG_FUNC(0x824A7D4F, sceJpegEncoderCsc);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue