mirror of https://github.com/mstorsjo/fdk-aac.git
Merge "Signed Integer Overflow in CLpd_FAC_Acelp2Mdct()"
This commit is contained in:
commit
3bb4fe68a6
|
@ -538,7 +538,7 @@ INT CLpd_FAC_Acelp2Mdct(H_MDCT hMdct, FIXP_DBL *output, FIXP_DBL *_pSpec,
|
||||||
if (total_gain != (FIXP_DBL)0) {
|
if (total_gain != (FIXP_DBL)0) {
|
||||||
scaleValuesWithFactor(pSpec, total_gain, tl, spec_scale[0] + scale);
|
scaleValuesWithFactor(pSpec, total_gain, tl, spec_scale[0] + scale);
|
||||||
} else {
|
} else {
|
||||||
scaleValues(pSpec, tl, spec_scale[0] + scale);
|
scaleValuesSaturate(pSpec, tl, spec_scale[0] + scale);
|
||||||
}
|
}
|
||||||
|
|
||||||
pOut1 += fl / 2 - 1;
|
pOut1 += fl / 2 - 1;
|
||||||
|
@ -627,7 +627,7 @@ INT CLpd_FAC_Acelp2Mdct(H_MDCT hMdct, FIXP_DBL *output, FIXP_DBL *_pSpec,
|
||||||
if (total_gain != (FIXP_DBL)0) {
|
if (total_gain != (FIXP_DBL)0) {
|
||||||
scaleValuesWithFactor(pSpec, total_gain, tl, spec_scale[w] + scale);
|
scaleValuesWithFactor(pSpec, total_gain, tl, spec_scale[w] + scale);
|
||||||
} else {
|
} else {
|
||||||
scaleValues(pSpec, tl, spec_scale[w] + scale);
|
scaleValuesSaturate(pSpec, tl, spec_scale[w] + scale);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (noOutSamples <= nrSamples) {
|
if (noOutSamples <= nrSamples) {
|
||||||
|
|
Loading…
Reference in New Issue