mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-01-09 06:05:16 +01:00
Don't try to shift more bits than the variable length
Shifting by more than (or equal to) the variable length is undefined in C.
This commit is contained in:
parent
839ae290c1
commit
24021f1909
@ -127,7 +127,10 @@ static void FDKaacEnc_quantizeLines(INT gain,
|
|||||||
accu = fMultDiv2(FDKaacEnc_mTab_3_4[tabIndex],FDKaacEnc_quantTableE[totalShift&3]);
|
accu = fMultDiv2(FDKaacEnc_mTab_3_4[tabIndex],FDKaacEnc_quantTableE[totalShift&3]);
|
||||||
totalShift = (16-4)-(3*(totalShift>>2));
|
totalShift = (16-4)-(3*(totalShift>>2));
|
||||||
FDK_ASSERT(totalShift >=0); /* MAX_QUANT_VIOLATION */
|
FDK_ASSERT(totalShift >=0); /* MAX_QUANT_VIOLATION */
|
||||||
|
if (totalShift < 32)
|
||||||
accu>>=totalShift;
|
accu>>=totalShift;
|
||||||
|
else
|
||||||
|
accu = 0;
|
||||||
quaSpectrum[line] = (SHORT)(-((LONG)(k + accu) >> (DFRACT_BITS-1-16)));
|
quaSpectrum[line] = (SHORT)(-((LONG)(k + accu) >> (DFRACT_BITS-1-16)));
|
||||||
}
|
}
|
||||||
else if(accu > FL2FXCONST_DBL(0.0f))
|
else if(accu > FL2FXCONST_DBL(0.0f))
|
||||||
@ -140,7 +143,10 @@ static void FDKaacEnc_quantizeLines(INT gain,
|
|||||||
accu = fMultDiv2(FDKaacEnc_mTab_3_4[tabIndex],FDKaacEnc_quantTableE[totalShift&3]);
|
accu = fMultDiv2(FDKaacEnc_mTab_3_4[tabIndex],FDKaacEnc_quantTableE[totalShift&3]);
|
||||||
totalShift = (16-4)-(3*(totalShift>>2));
|
totalShift = (16-4)-(3*(totalShift>>2));
|
||||||
FDK_ASSERT(totalShift >=0); /* MAX_QUANT_VIOLATION */
|
FDK_ASSERT(totalShift >=0); /* MAX_QUANT_VIOLATION */
|
||||||
|
if (totalShift < 32)
|
||||||
accu>>=totalShift;
|
accu>>=totalShift;
|
||||||
|
else
|
||||||
|
accu = 0;
|
||||||
quaSpectrum[line] = (SHORT)((LONG)(k + accu) >> (DFRACT_BITS-1-16));
|
quaSpectrum[line] = (SHORT)((LONG)(k + accu) >> (DFRACT_BITS-1-16));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user