Home
last modified time | relevance | path

Searched refs:pIcsInfo (Results 1 – 10 of 10) sorted by relevance

/external/aac/libAACdec/src/
Dchannelinfo.cpp99 CIcsInfo *pIcsInfo, in IcsReadMaxSfb() argument
106 if (IsLongBlock(pIcsInfo)) { in IcsReadMaxSfb()
108 pIcsInfo->TotalSfBands = pSamplingRateInfo->NumberOfScaleFactorBands_Long; in IcsReadMaxSfb()
111 pIcsInfo->TotalSfBands = pSamplingRateInfo->NumberOfScaleFactorBands_Short; in IcsReadMaxSfb()
113 pIcsInfo->MaxSfBands = (UCHAR) FDKreadBits(bs, nbits); in IcsReadMaxSfb()
115 if (pIcsInfo->MaxSfBands > pIcsInfo->TotalSfBands){ in IcsReadMaxSfb()
125 CIcsInfo *pIcsInfo, in IcsRead() argument
131 pIcsInfo->Valid = 0; in IcsRead()
134 pIcsInfo->WindowSequence = OnlyLongSequence; in IcsRead()
135 pIcsInfo->WindowShape = 0; in IcsRead()
[all …]
Dchannelinfo.h309 CIcsInfo *pIcsInfo,
315 CIcsInfo *pIcsInfo,
376 inline UCHAR IsValid(const CIcsInfo *pIcsInfo) in IsValid() argument
378 return pIcsInfo->Valid; in IsValid()
381 inline UCHAR IsLongBlock(const CIcsInfo *pIcsInfo) in IsLongBlock() argument
383 return (pIcsInfo->WindowSequence != EightShortSequence); in IsLongBlock()
386 inline UCHAR GetWindowShape(const CIcsInfo *pIcsInfo) in GetWindowShape() argument
388 return pIcsInfo->WindowShape; in GetWindowShape()
391 inline UCHAR GetWindowSequence(const CIcsInfo *pIcsInfo) in GetWindowSequence() argument
393 return pIcsInfo->WindowSequence; in GetWindowSequence()
[all …]
Dconceal.cpp563 CIcsInfo *pIcsInfo, in CConcealment_fakePnsData() argument
573 int windowsPerFrame = GetWindowsPerFrame(pIcsInfo); in CConcealment_fakePnsData()
583 if (!IsValid(pIcsInfo)) { in CConcealment_fakePnsData()
584 pIcsInfo->WindowGroups = 1; in CConcealment_fakePnsData()
585 if (IsLongBlock(pIcsInfo)) { in CConcealment_fakePnsData()
586 pIcsInfo->TotalSfBands = pSamplingRateInfo->NumberOfScaleFactorBands_Long; in CConcealment_fakePnsData()
587 pIcsInfo->WindowGroupLength[0] = 1; in CConcealment_fakePnsData()
590 pIcsInfo->TotalSfBands = pSamplingRateInfo->NumberOfScaleFactorBands_Short; in CConcealment_fakePnsData()
591 pIcsInfo->WindowGroupLength[0] = 8; in CConcealment_fakePnsData()
593 pIcsInfo->MaxSfBands = pIcsInfo->TotalSfBands; in CConcealment_fakePnsData()
[all …]
Daacdec_tns.cpp130 const CIcsInfo *pIcsInfo, in CTns_Read() argument
136 UCHAR wins_per_frame = GetWindowsPerFrame(pIcsInfo); in CTns_Read()
137 UCHAR isLongFlag = IsLongBlock(pIcsInfo); in CTns_Read()
159 nextstopband = GetScaleFactorBandsTotal(pIcsInfo); in CTns_Read()
335 const CIcsInfo *pIcsInfo, in CTns_Apply() argument
348 for (window=0; window < GetWindowsPerFrame(pIcsInfo); window++) in CTns_Apply()
383 tns_max_bands = GetMaximumTnsBands(pIcsInfo, pSamplingRateInfo->samplingRateIndex); in CTns_Apply()
388 GetScaleFactorBandsTransmitted(pIcsInfo) ); in CTns_Apply()
390 start = GetScaleFactorBandOffsets(pIcsInfo, pSamplingRateInfo)[start]; in CTns_Apply()
393 GetScaleFactorBandsTransmitted(pIcsInfo) ); in CTns_Apply()
[all …]
Dpulsedata.cpp101 const void *pIcsInfo, in CPulseData_Read() argument
106 const UINT MaxSfBands = GetScaleFactorBandsTransmitted((CIcsInfo*)pIcsInfo); in CPulseData_Read()
112 if (!IsLongBlock((CIcsInfo*)pIcsInfo)) { in CPulseData_Read()
Daacdec_pns.cpp333 const CIcsInfo *pIcsInfo, in CPns_Apply() argument
342 const short *BandOffsets = GetScaleFactorBandOffsets(pIcsInfo, pSamplingRateInfo); in CPns_Apply()
344 int ScaleFactorBandsTransmitted = GetScaleFactorBandsTransmitted(pIcsInfo); in CPns_Apply()
346 for (int window = 0, group = 0; group < GetWindowGroups(pIcsInfo); group++) { in CPns_Apply()
347 … for (int groupwin = 0; groupwin < GetWindowGroupLength(pIcsInfo, group); groupwin++, window++) { in CPns_Apply()
Dblock.h110 const CIcsInfo *pIcsInfo,
136 const CIcsInfo *pIcsInfo,
143 const CIcsInfo *pIcsInfo,
147 const CIcsInfo *pIcsInfo,
Dpulsedata.h125 const void *pIcsInfo,
Daacdec_hcr.cpp285 CIcsInfo *pIcsInfo = &pAacDecoderChannelInfo->icsInfo; in HcrInit() local
326 BandOffsets = GetScaleFactorBandOffsets(pIcsInfo, pSamplingRateInfo); /* aux */ in HcrInit()
327 numOfGroups = GetWindowGroups(pIcsInfo); in HcrInit()
Daacdec_drc.cpp871 CIcsInfo *pIcsInfo = &pAacDecoderChannelInfo->icsInfo; in aacDecoder_drcApply() local
874 int winSeq = pIcsInfo->WindowSequence; in aacDecoder_drcApply()