mirror of https://github.com/mstorsjo/fdk-aac.git
Merge "Revise synthesis QMF scaling for PS to avoid integer overflow in qmfSynPrototypeFirSlot()." into sc-dev am: c0c3096100
Original change: https://googleplex-android-review.googlesource.com/c/platform/external/aac/+/14387475 Change-Id: I938e29b525376cc7793072d29307bfd1812b3cd6
This commit is contained in:
commit
6f453aba85
|
@ -1,7 +1,7 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
Software License for The Fraunhofer FDK AAC Codec Library for Android
|
||||
|
||||
© Copyright 1995 - 2019 Fraunhofer-Gesellschaft zur Förderung der angewandten
|
||||
© Copyright 1995 - 2020 Fraunhofer-Gesellschaft zur Förderung der angewandten
|
||||
Forschung e.V. All rights reserved.
|
||||
|
||||
1. INTRODUCTION
|
||||
|
@ -713,7 +713,8 @@ void sbr_dec(
|
|||
|
||||
} else { /* (flags & SBRDEC_PS_DECODED) */
|
||||
INT sdiff;
|
||||
INT scaleFactorHighBand, scaleFactorLowBand_ov, scaleFactorLowBand_no_ov;
|
||||
INT scaleFactorHighBand, scaleFactorLowBand_ov, scaleFactorLowBand_no_ov,
|
||||
outScalefactor, outScalefactorR, outScalefactorL;
|
||||
|
||||
HANDLE_QMF_FILTER_BANK synQmf = &hSbrDec->qmfDomainOutCh->fb;
|
||||
HANDLE_QMF_FILTER_BANK synQmfRight = &hSbrDecRight->qmfDomainOutCh->fb;
|
||||
|
@ -744,7 +745,7 @@ void sbr_dec(
|
|||
*/
|
||||
FDK_ASSERT(hSbrDec->qmfDomainInCh->pGlobalConf->nBandsSynthesis <=
|
||||
QMF_MAX_SYNTHESIS_BANDS);
|
||||
qmfChangeOutScalefactor(synQmfRight, -(8));
|
||||
synQmfRight->outScalefactor = synQmf->outScalefactor;
|
||||
FDKmemcpy(synQmfRight->FilterStates, synQmf->FilterStates,
|
||||
9 * hSbrDec->qmfDomainInCh->pGlobalConf->nBandsSynthesis *
|
||||
sizeof(FIXP_QSS));
|
||||
|
@ -788,9 +789,11 @@ void sbr_dec(
|
|||
FDKmemcpy(&hSbrDecRight->sbrDrcChannel, &hSbrDec->sbrDrcChannel,
|
||||
sizeof(SBRDEC_DRC_CHANNEL));
|
||||
|
||||
for (i = 0; i < synQmf->no_col; i++) { /* ----- no_col loop ----- */
|
||||
outScalefactor = maxShift - (8);
|
||||
outScalefactorL = outScalefactorR =
|
||||
sbrInDataHeadroom + 1; /* +1: psDiffScale! (MPEG-PS) */
|
||||
|
||||
INT outScalefactorR, outScalefactorL;
|
||||
for (i = 0; i < synQmf->no_col; i++) { /* ----- no_col loop ----- */
|
||||
|
||||
/* qmf timeslot of right channel */
|
||||
FIXP_DBL *rQmfReal = pWorkBuffer;
|
||||
|
@ -815,27 +818,20 @@ void sbr_dec(
|
|||
? scaleFactorLowBand_ov
|
||||
: scaleFactorLowBand_no_ov,
|
||||
scaleFactorHighBand, synQmf->lsb, synQmf->usb);
|
||||
|
||||
outScalefactorL = outScalefactorR =
|
||||
1 + sbrInDataHeadroom; /* psDiffScale! (MPEG-PS) */
|
||||
}
|
||||
|
||||
sbrDecoder_drcApplySlot(/* right channel */
|
||||
&hSbrDecRight->sbrDrcChannel, rQmfReal,
|
||||
rQmfImag, i, synQmfRight->no_col, maxShift);
|
||||
|
||||
outScalefactorR += maxShift;
|
||||
|
||||
sbrDecoder_drcApplySlot(/* left channel */
|
||||
&hSbrDec->sbrDrcChannel, *(pLowBandReal + i),
|
||||
*(pLowBandImag + i), i, synQmf->no_col,
|
||||
maxShift);
|
||||
|
||||
outScalefactorL += maxShift;
|
||||
|
||||
if (!(flags & SBRDEC_SKIP_QMF_SYN)) {
|
||||
qmfChangeOutScalefactor(synQmf, -(8));
|
||||
qmfChangeOutScalefactor(synQmfRight, -(8));
|
||||
qmfChangeOutScalefactor(synQmf, outScalefactor);
|
||||
qmfChangeOutScalefactor(synQmfRight, outScalefactor);
|
||||
|
||||
qmfSynthesisFilteringSlot(
|
||||
synQmfRight, rQmfReal, /* QMF real buffer */
|
||||
|
|
Loading…
Reference in New Issue