mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-02-17 03:30:35 +01:00
Unsigned Integer Overflow in aacDecoder_DecodeFrame().
Bug: 112661742 Test: atest DecoderTestXheAac ; atest DecoderTestAacDrc Change-Id: I617dd545f9ea0aca5a5e7d214bbc35f089bc355d
This commit is contained in:
parent
a4d6ca7b07
commit
eb0711921b
@ -1882,7 +1882,7 @@ aacDecoder_DecodeFrame(HANDLE_AACDECODER self, INT_PCM *pTimeData_extern,
|
||||
|
||||
} /* USAC DASH IPF flushing possible end */
|
||||
if (accessUnit < numPrerollAU) {
|
||||
FDKpushBack(hBsAu, auStartAnchor - FDKgetValidBits(hBsAu));
|
||||
FDKpushBack(hBsAu, auStartAnchor - (INT)FDKgetValidBits(hBsAu));
|
||||
} else {
|
||||
if ((self->buildUpStatus == AACDEC_RSV60_BUILD_UP_ON) ||
|
||||
(self->buildUpStatus == AACDEC_RSV60_BUILD_UP_ON_IN_BAND) ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user