fix for Linux, beta

This commit is contained in:
Christian R. Helmrich
2020-07-15 21:00:03 +02:00
parent 7270cc6a70
commit 86ba7b8af6
5 changed files with 5 additions and 5 deletions

View File

@ -496,7 +496,7 @@ unsigned BitAllocator::imprSfbStepSizes (const SfbGroupData* const groupData[USA
for (b = 0; b < maxSfbInCh; b++) // improve step-sizes by limiting and attenuation
{
grpStepSizes[b] = uint32_t ((__max (grpRmsMin, grpStepSizes[b]) * s * (m_tempSfbValue[b] + 1ui64) - (1u << 14)) >> 15);
grpStepSizes[b] = uint32_t ((__max (grpRmsMin, grpStepSizes[b]) * s * (m_tempSfbValue[b] + 1u) + (1u << 14)) >> 15);
}
} // for gr
} // for ch