Merge pull request #2728 from ggrtk/mdec-eob

MDEC: EOB is optional for complete blocks
This commit is contained in:
Connor McLaughlin 2021-11-18 14:25:53 +10:00 committed by GitHub
commit 83a031e22f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 16 deletions

View File

@ -595,26 +595,28 @@ bool MDEC::rl_decode_block(s16* blk, const u8* qt)
m_remaining_halfwords--; m_remaining_halfwords--;
m_current_coefficient += ((n >> 10) & 0x3F) + 1; m_current_coefficient += ((n >> 10) & 0x3F) + 1;
if (m_current_coefficient >= 64) if (m_current_coefficient < 64)
{
s32 val = (SignExtendN<10, s32>(static_cast<s32>(n & 0x3FF)) *
static_cast<s32>(ZeroExtend32(qt[m_current_coefficient])) * static_cast<s32>(m_current_q_scale) +
4) /
8;
if (m_current_q_scale == 0)
val = SignExtendN<10, s32>(static_cast<s32>(n & 0x3FF)) * 2;
val = std::clamp(val, -0x400, 0x3FF);
if (m_current_q_scale > 0)
blk[zagzig[m_current_coefficient]] = static_cast<s16>(val);
else if (m_current_q_scale == 0)
blk[m_current_coefficient] = static_cast<s16>(val);
}
if (m_current_coefficient >= 63)
{ {
m_current_coefficient = 64; m_current_coefficient = 64;
return true; return true;
} }
s32 val = (SignExtendN<10, s32>(static_cast<s32>(n & 0x3FF)) *
static_cast<s32>(ZeroExtend32(qt[m_current_coefficient])) * static_cast<s32>(m_current_q_scale) +
4) /
8;
if (m_current_q_scale == 0)
val = SignExtendN<10, s32>(static_cast<s32>(n & 0x3FF)) * 2;
val = std::clamp(val, -0x400, 0x3FF);
// val = val * static_cast<s32>(ZeroExtend32(scalezag[i]));
if (m_current_q_scale > 0)
blk[zagzig[m_current_coefficient]] = static_cast<s16>(val);
else if (m_current_q_scale == 0)
blk[m_current_coefficient] = static_cast<s16>(val);
} }
return false; return false;