mirror of https://github.com/mstorsjo/fdk-aac.git
Merge "Remove redundant parentheses around == comparison operator"
am: 34fb053
* commit '34fb05353bbabe1ba04362f26b3ae507fbb687d4':
Remove redundant parentheses around == comparison operator
Change-Id: I7a37ef8293371cc0287a0e0b9f0115f82f294b31
This commit is contained in:
commit
ad1e8985d9
|
@ -329,8 +329,7 @@ AAC_DECODER_ERROR CBlock_ReadSectionData(HANDLE_FDK_BITSTREAM bs,
|
||||||
if (numLinesInSecIdx >= MAX_SFB_HCR) {
|
if (numLinesInSecIdx >= MAX_SFB_HCR) {
|
||||||
return AAC_DEC_PARSE_ERROR;
|
return AAC_DEC_PARSE_ERROR;
|
||||||
}
|
}
|
||||||
if (
|
if (sect_cb == BOOKSCL)
|
||||||
(sect_cb == BOOKSCL) )
|
|
||||||
{
|
{
|
||||||
return AAC_DEC_INVALID_CODE_BOOK;
|
return AAC_DEC_INVALID_CODE_BOOK;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -459,7 +459,7 @@ void BidirectionalEstimation_UseScfOfPrevFrameAsReference (
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case NOISE_HCB:
|
case NOISE_HCB:
|
||||||
if ( (pAacDecoderStaticChannelInfo->concealmentInfo.aRvlcPreviousCodebook[bnds]==NOISE_HCB) ) {
|
if ( pAacDecoderStaticChannelInfo->concealmentInfo.aRvlcPreviousCodebook[bnds]==NOISE_HCB ) {
|
||||||
commonMin = FDKmin(pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd[bnds],pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfBwd[bnds]);
|
commonMin = FDKmin(pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd[bnds],pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfBwd[bnds]);
|
||||||
pAacDecoderChannelInfo->pDynData->aScaleFactor[bnds] = FDKmin(commonMin, pAacDecoderStaticChannelInfo->concealmentInfo.aRvlcPreviousScaleFactor[bnds]);
|
pAacDecoderChannelInfo->pDynData->aScaleFactor[bnds] = FDKmin(commonMin, pAacDecoderStaticChannelInfo->concealmentInfo.aRvlcPreviousScaleFactor[bnds]);
|
||||||
} else {
|
} else {
|
||||||
|
@ -669,7 +669,7 @@ void PredictiveInterpolation (
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case NOISE_HCB:
|
case NOISE_HCB:
|
||||||
if ( (pAacDecoderStaticChannelInfo->concealmentInfo.aRvlcPreviousCodebook[bnds]==NOISE_HCB) ) {
|
if ( pAacDecoderStaticChannelInfo->concealmentInfo.aRvlcPreviousCodebook[bnds]==NOISE_HCB ) {
|
||||||
commonMin = FDKmin(pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd[bnds],pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfBwd[bnds]);
|
commonMin = FDKmin(pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd[bnds],pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfBwd[bnds]);
|
||||||
pAacDecoderChannelInfo->pDynData->aScaleFactor[bnds] = FDKmin(commonMin, pAacDecoderStaticChannelInfo->concealmentInfo.aRvlcPreviousScaleFactor[bnds]);
|
pAacDecoderChannelInfo->pDynData->aScaleFactor[bnds] = FDKmin(commonMin, pAacDecoderStaticChannelInfo->concealmentInfo.aRvlcPreviousScaleFactor[bnds]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1046,7 +1046,7 @@ static AACENC_ERROR aacEncInit(HANDLE_AACENCODER hAacEncoder,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Clear input buffer */
|
/* Clear input buffer */
|
||||||
if ( (InitFlags == AACENC_INIT_ALL) ) {
|
if ( InitFlags == AACENC_INIT_ALL ) {
|
||||||
FDKmemclear(hAacEncoder->inputBuffer, sizeof(INT_PCM)*hAacEncoder->nMaxAacChannels*INPUTBUFFER_SIZE);
|
FDKmemclear(hAacEncoder->inputBuffer, sizeof(INT_PCM)*hAacEncoder->nMaxAacChannels*INPUTBUFFER_SIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1851,10 +1851,10 @@ INT sbrEncoder_Init(
|
||||||
if ( (aot==AOT_PS) || (aot==AOT_MP2_PS) || (aot==AOT_DABPLUS_PS) || (aot==AOT_DRM_MPEG_PS) ) {
|
if ( (aot==AOT_PS) || (aot==AOT_MP2_PS) || (aot==AOT_DABPLUS_PS) || (aot==AOT_DRM_MPEG_PS) ) {
|
||||||
usePs = 1;
|
usePs = 1;
|
||||||
}
|
}
|
||||||
if ( (aot==AOT_ER_AAC_ELD) ) {
|
if ( aot==AOT_ER_AAC_ELD ) {
|
||||||
lowDelay = 1;
|
lowDelay = 1;
|
||||||
}
|
}
|
||||||
else if ( (aot==AOT_ER_AAC_LD) ) {
|
else if ( aot==AOT_ER_AAC_LD ) {
|
||||||
error = 1;
|
error = 1;
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue