1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-02-17 03:30:35 +01:00

Snap for 4807121 from f19e863cce96cc1e5f4ad7ce512810d5a2843ea6 to pi-release

Change-Id: I8797944fb72a1182a059e75425a8b54b4e8abf51
This commit is contained in:
android-build-team Robot 2018-05-27 07:25:24 +00:00
commit f76ceebf7a
2 changed files with 12 additions and 10 deletions

View File

@ -861,14 +861,16 @@ typedef struct {
returns AAC_DEC_TRANSPORT_SYNC_ERROR. It will be
< 0 if the estimation failed. */
UINT numTotalBytes; /*!< This is the number of total bytes that have passed
through the decoder. */
UINT numBadBytes; /*!< This is the number of total bytes that were considered
with errors from numTotalBytes. */
UINT numTotalAccessUnits; /*!< This is the number of total access units that
have passed through the decoder. */
UINT numBadAccessUnits; /*!< This is the number of total access units that
were considered with errors from numTotalBytes. */
INT64 numTotalBytes; /*!< This is the number of total bytes that have passed
through the decoder. */
INT64
numBadBytes; /*!< This is the number of total bytes that were considered
with errors from numTotalBytes. */
INT64
numTotalAccessUnits; /*!< This is the number of total access units that
have passed through the decoder. */
INT64 numBadAccessUnits; /*!< This is the number of total access units that
were considered with errors from numTotalBytes. */
/* Metadata */
SCHAR drcProgRefLev; /*!< DRC program reference level. Defines the reference

View File

@ -1085,12 +1085,12 @@ static void aacDecoder_UpdateBitStreamCounters(CStreamInfo *pSi,
INT nBytes;
nBytes = nBits >> 3;
pSi->numTotalBytes = (UINT)((INT)pSi->numTotalBytes + nBytes);
pSi->numTotalBytes += nBytes;
if (IS_OUTPUT_VALID(ErrorStatus)) {
pSi->numTotalAccessUnits++;
}
if (IS_DECODE_ERROR(ErrorStatus)) {
pSi->numBadBytes = (UINT)((INT)pSi->numBadBytes + nBytes);
pSi->numBadBytes += nBytes;
pSi->numBadAccessUnits++;
}
}