hotfix: Raise videodec memory back up to 16MB.

Found a game that needs more, still should be low enough compared to before to fix some games.
This commit is contained in:
squidbus 2025-01-29 01:29:52 -08:00
parent 78a0a755c5
commit 9bad66b24d
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
namespace Libraries::Videodec {
static constexpr u64 kMinimumMemorySize = 8_MB; ///> Fake minimum memory size for querying
static constexpr u64 kMinimumMemorySize = 16_MB; ///> Fake minimum memory size for querying
int PS4_SYSV_ABI sceVideodecCreateDecoder(const OrbisVideodecConfigInfo* pCfgInfoIn,
const OrbisVideodecResourceInfo* pRsrcInfoIn,

View file

@ -10,7 +10,7 @@
namespace Libraries::Vdec2 {
static constexpr u64 kMinimumMemorySize = 8_MB; ///> Fake minimum memory size for querying
static constexpr u64 kMinimumMemorySize = 16_MB; ///> Fake minimum memory size for querying
s32 PS4_SYSV_ABI
sceVideodec2QueryComputeMemoryInfo(OrbisVideodec2ComputeMemoryInfo* computeMemInfo) {