mirror of https://github.com/mstorsjo/fdk-aac.git
Limit too large scale_change exponent used in adjustTimeSlot
Bug: 112892953 Test: atest DecoderTestXheAac ; atest DecoderTestAacDrc Change-Id: I4fe66defb40a36612850582cb0f1da7fb07a8bed
This commit is contained in:
parent
55930c28af
commit
e93cd75ea4
|
@ -1561,13 +1561,14 @@ void calculateSbrEnvelope(
|
|||
adjustTimeSlotHQ_GainAndNoise(
|
||||
&analysBufferReal[j][lowSubband],
|
||||
&analysBufferImag[j][lowSubband], h_sbr_cal_env, pNrgs,
|
||||
lowSubband, noSubbands, scale_change, smooth_ratio, noNoiseFlag,
|
||||
filtBufferNoiseShift);
|
||||
lowSubband, noSubbands, fMin(scale_change, DFRACT_BITS - 1),
|
||||
smooth_ratio, noNoiseFlag, filtBufferNoiseShift);
|
||||
} else {
|
||||
adjustTimeSlotHQ(&analysBufferReal[j][lowSubband],
|
||||
&analysBufferImag[j][lowSubband], h_sbr_cal_env,
|
||||
pNrgs, lowSubband, noSubbands, scale_change,
|
||||
smooth_ratio, noNoiseFlag, filtBufferNoiseShift);
|
||||
pNrgs, lowSubband, noSubbands,
|
||||
fMin(scale_change, DFRACT_BITS - 1), smooth_ratio,
|
||||
noNoiseFlag, filtBufferNoiseShift);
|
||||
}
|
||||
} else {
|
||||
FDK_ASSERT(!iTES_enable); /* not supported */
|
||||
|
@ -1575,13 +1576,14 @@ void calculateSbrEnvelope(
|
|||
/* FDKmemset(analysBufferReal[j], 0, 64 * sizeof(FIXP_DBL)); */
|
||||
adjustTimeSlot_EldGrid(&analysBufferReal[j][lowSubband], pNrgs,
|
||||
&h_sbr_cal_env->harmIndex, lowSubband,
|
||||
noSubbands, scale_change, noNoiseFlag,
|
||||
&h_sbr_cal_env->phaseIndex,
|
||||
noSubbands,
|
||||
fMin(scale_change, DFRACT_BITS - 1),
|
||||
noNoiseFlag, &h_sbr_cal_env->phaseIndex,
|
||||
EXP2SCALE(adj_e) - sbrScaleFactor->lb_scale);
|
||||
} else {
|
||||
adjustTimeSlotLC(&analysBufferReal[j][lowSubband], pNrgs,
|
||||
&h_sbr_cal_env->harmIndex, lowSubband, noSubbands,
|
||||
scale_change, noNoiseFlag,
|
||||
fMin(scale_change, DFRACT_BITS - 1), noNoiseFlag,
|
||||
&h_sbr_cal_env->phaseIndex);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue