diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-05-09 18:38:12 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-05-09 18:38:12 +0200 |
| commit | a8adde923408d01a977beb0645e6d3d0360c5c9f (patch) | |
| tree | e089e9a6a433ceed74fda05c24647cce1e462105 /src/wrapped/generated/wrapper.c | |
| parent | daa3fca1f1109c1fd2e1d5d97189d9ab51fe882d (diff) | |
| download | box64-a8adde923408d01a977beb0645e6d3d0360c5c9f.tar.gz box64-a8adde923408d01a977beb0645e6d3d0360c5c9f.zip | |
[WRAPPER] Added a few more wrapped function to ffmpegs libs
Diffstat (limited to 'src/wrapped/generated/wrapper.c')
| -rw-r--r-- | src/wrapped/generated/wrapper.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wrapped/generated/wrapper.c b/src/wrapped/generated/wrapper.c index 22d031e4..b6caa74c 100644 --- a/src/wrapped/generated/wrapper.c +++ b/src/wrapped/generated/wrapper.c @@ -2286,6 +2286,7 @@ typedef int32_t (*iFpiipcc_t)(void*, int32_t, int32_t, void*, int8_t, int8_t); typedef int32_t (*iFpiipii_t)(void*, int32_t, int32_t, void*, int32_t, int32_t); typedef int32_t (*iFpiipip_t)(void*, int32_t, int32_t, void*, int32_t, void*); typedef int32_t (*iFpiippp_t)(void*, int32_t, int32_t, void*, void*, void*); +typedef int32_t (*iFpiIIIi_t)(void*, int32_t, int64_t, int64_t, int64_t, int32_t); typedef int32_t (*iFpiCCpu_t)(void*, int32_t, uint8_t, uint8_t, void*, uint32_t); typedef int32_t (*iFpiuuup_t)(void*, int32_t, uint32_t, uint32_t, uint32_t, void*); typedef int32_t (*iFpiuupp_t)(void*, int32_t, uint32_t, uint32_t, void*, void*); @@ -5808,6 +5809,7 @@ void iFpiipcc(x64emu_t *emu, uintptr_t fcn) { iFpiipcc_t fn = (iFpiipcc_t)fcn; R void iFpiipii(x64emu_t *emu, uintptr_t fcn) { iFpiipii_t fn = (iFpiipii_t)fcn; R_RAX=(uint32_t)fn((void*)R_RDI, (int32_t)R_RSI, (int32_t)R_RDX, (void*)R_RCX, (int32_t)R_R8, (int32_t)R_R9); } void iFpiipip(x64emu_t *emu, uintptr_t fcn) { iFpiipip_t fn = (iFpiipip_t)fcn; R_RAX=(uint32_t)fn((void*)R_RDI, (int32_t)R_RSI, (int32_t)R_RDX, (void*)R_RCX, (int32_t)R_R8, (void*)R_R9); } void iFpiippp(x64emu_t *emu, uintptr_t fcn) { iFpiippp_t fn = (iFpiippp_t)fcn; R_RAX=(uint32_t)fn((void*)R_RDI, (int32_t)R_RSI, (int32_t)R_RDX, (void*)R_RCX, (void*)R_R8, (void*)R_R9); } +void iFpiIIIi(x64emu_t *emu, uintptr_t fcn) { iFpiIIIi_t fn = (iFpiIIIi_t)fcn; R_RAX=(uint32_t)fn((void*)R_RDI, (int32_t)R_RSI, (int64_t)R_RDX, (int64_t)R_RCX, (int64_t)R_R8, (int32_t)R_R9); } void iFpiCCpu(x64emu_t *emu, uintptr_t fcn) { iFpiCCpu_t fn = (iFpiCCpu_t)fcn; R_RAX=(uint32_t)fn((void*)R_RDI, (int32_t)R_RSI, (uint8_t)R_RDX, (uint8_t)R_RCX, (void*)R_R8, (uint32_t)R_R9); } void iFpiuuup(x64emu_t *emu, uintptr_t fcn) { iFpiuuup_t fn = (iFpiuuup_t)fcn; R_RAX=(uint32_t)fn((void*)R_RDI, (int32_t)R_RSI, (uint32_t)R_RDX, (uint32_t)R_RCX, (uint32_t)R_R8, (void*)R_R9); } void iFpiuupp(x64emu_t *emu, uintptr_t fcn) { iFpiuupp_t fn = (iFpiuupp_t)fcn; R_RAX=(uint32_t)fn((void*)R_RDI, (int32_t)R_RSI, (uint32_t)R_RDX, (uint32_t)R_RCX, (void*)R_R8, (void*)R_R9); } @@ -8915,6 +8917,7 @@ int isSimpleWrapper(wrapper_t fun) { if (fun == &iFpiipii) return 1; if (fun == &iFpiipip) return 1; if (fun == &iFpiippp) return 1; + if (fun == &iFpiIIIi) return 1; if (fun == &iFpiCCpu) return 1; if (fun == &iFpiuuup) return 1; if (fun == &iFpiuupp) return 1; @@ -10973,6 +10976,7 @@ int isSimpleWrapper(wrapper_t fun) { if (fun == &iFpiipii) return 865; if (fun == &iFpiipip) return 353; if (fun == &iFpiippp) return 97; + if (fun == &iFpiIIIi) return 545; if (fun == &iFpiCCpu) return 545; if (fun == &iFpiuuup) return 481; if (fun == &iFpiuupp) return 225; |