• Home
  • Raw
  • Download

Lines Matching refs:pDrcChData

161     CDrcChannelData *pDrcChData )  in aacDecoder_drcInitChannelData()  argument
163 if (pDrcChData != NULL) { in aacDecoder_drcInitChannelData()
164 pDrcChData->expiryCount = 0; in aacDecoder_drcInitChannelData()
165 pDrcChData->numBands = 1; in aacDecoder_drcInitChannelData()
166 pDrcChData->bandTop[0] = (1024 >> 2) - 1; in aacDecoder_drcInitChannelData()
167 pDrcChData->drcValue[0] = 0; in aacDecoder_drcInitChannelData()
168 pDrcChData->drcInterpolationScheme = 0; in aacDecoder_drcInitChannelData()
169 pDrcChData->drcDataType = UNKNOWN_PAYLOAD; in aacDecoder_drcInitChannelData()
849 CDrcChannelData *pDrcChData, in aacDecoder_drcApply() argument
878 && (++pDrcChData->expiryCount > pParams->expiryFrame) ) in aacDecoder_drcApply()
880 aacDecoder_drcInitChannelData( pDrcChData ); in aacDecoder_drcApply()
897 numBands = pDrcChData->numBands; in aacDecoder_drcApply()
900 pDrcChData->bandTop[0] = fixMin(pDrcChData->bandTop[0], (aacFrameSize >> 2) - 1); in aacDecoder_drcApply()
939 UCHAR drcVal = pDrcChData->drcValue[band]; in aacDecoder_drcApply()
940 top = fixMin((int)( (pDrcChData->bandTop[band]+1)<<2 ), aacFrameSize); in aacDecoder_drcApply()
946 && ((AACDEC_DRC_PAYLOAD_TYPE)pDrcChData->drcDataType == DVB_DRC_ANC_DATA) ) in aacDecoder_drcApply()
970 if ((AACDEC_DRC_PAYLOAD_TYPE)pDrcChData->drcDataType == MPEG_DRC_EXT_DATA) in aacDecoder_drcApply()
1015 if (((pDrcChData->bandTop[numBands-1]+1)<<2) < aacFrameSize) res = 0; in aacDecoder_drcApply()
1057 …top = fixMin((int)( (pDrcChData->bandTop[band]+1)<<2 ), aacFrameSize); /* ... * DRC_BAND_MULT; */ in aacDecoder_drcApply()
1086 UINT numBands = pDrcChData->numBands; in aacDecoder_drcApply()
1095 pDrcChData->drcInterpolationScheme, in aacDecoder_drcApply()
1097 pDrcChData->bandTop in aacDecoder_drcApply()