HomeSort by relevance Sort by last modified time
    Searched refs:pIcsInfo (Results 1 - 10 of 10) sorted by null

  /external/aac/libAACdec/src/
channelinfo.cpp 99 CIcsInfo *pIcsInfo,
106 if (IsLongBlock(pIcsInfo)) {
108 pIcsInfo->TotalSfBands = pSamplingRateInfo->NumberOfScaleFactorBands_Long;
111 pIcsInfo->TotalSfBands = pSamplingRateInfo->NumberOfScaleFactorBands_Short;
113 pIcsInfo->MaxSfBands = (UCHAR) FDKreadBits(bs, nbits);
115 if (pIcsInfo->MaxSfBands > pIcsInfo->TotalSfBands){
125 CIcsInfo *pIcsInfo,
131 pIcsInfo->Valid = 0;
134 pIcsInfo->WindowSequence = OnlyLongSequence
    [all...]
channelinfo.h 304 * \param pIcsInfo IcsInfo structure to read the window sequence and store MaxSfBands and TotalSfBands
309 CIcsInfo *pIcsInfo,
315 CIcsInfo *pIcsInfo,
376 inline UCHAR IsValid(const CIcsInfo *pIcsInfo)
378 return pIcsInfo->Valid;
381 inline UCHAR IsLongBlock(const CIcsInfo *pIcsInfo)
383 return (pIcsInfo->WindowSequence != EightShortSequence);
386 inline UCHAR GetWindowShape(const CIcsInfo *pIcsInfo)
388 return pIcsInfo->WindowShape;
391 inline UCHAR GetWindowSequence(const CIcsInfo *pIcsInfo)
    [all...]
pulsedata.h 125 const void *pIcsInfo,
pulsedata.cpp 101 const void *pIcsInfo,
106 const UINT MaxSfBands = GetScaleFactorBandsTransmitted((CIcsInfo*)pIcsInfo);
112 if (!IsLongBlock((CIcsInfo*)pIcsInfo)) {
conceal.cpp 563 CIcsInfo *pIcsInfo,
573 int windowsPerFrame = GetWindowsPerFrame(pIcsInfo);
583 if (!IsValid(pIcsInfo)) {
584 pIcsInfo->WindowGroups = 1;
585 if (IsLongBlock(pIcsInfo)) {
586 pIcsInfo->TotalSfBands = pSamplingRateInfo->NumberOfScaleFactorBands_Long;
587 pIcsInfo->WindowGroupLength[0] = 1;
590 pIcsInfo->TotalSfBands = pSamplingRateInfo->NumberOfScaleFactorBands_Short;
591 pIcsInfo->WindowGroupLength[0] = 8;
593 pIcsInfo->MaxSfBands = pIcsInfo->TotalSfBands
    [all...]
aacdec_tns.cpp 130 const CIcsInfo *pIcsInfo,
136 UCHAR wins_per_frame = GetWindowsPerFrame(pIcsInfo);
137 UCHAR isLongFlag = IsLongBlock(pIcsInfo);
159 nextstopband = GetScaleFactorBandsTotal(pIcsInfo);
335 const CIcsInfo *pIcsInfo,
348 for (window=0; window < GetWindowsPerFrame(pIcsInfo); window++)
383 tns_max_bands = GetMaximumTnsBands(pIcsInfo, pSamplingRateInfo->samplingRateIndex);
388 GetScaleFactorBandsTransmitted(pIcsInfo) );
390 start = GetScaleFactorBandOffsets(pIcsInfo, pSamplingRateInfo)[start];
393 GetScaleFactorBandsTransmitted(pIcsInfo) );
    [all...]
block.h 110 const CIcsInfo *pIcsInfo,
136 const CIcsInfo *pIcsInfo,
143 const CIcsInfo *pIcsInfo,
147 const CIcsInfo *pIcsInfo,
aacdec_pns.cpp 333 const CIcsInfo *pIcsInfo,
342 const short *BandOffsets = GetScaleFactorBandOffsets(pIcsInfo, pSamplingRateInfo);
344 int ScaleFactorBandsTransmitted = GetScaleFactorBandsTransmitted(pIcsInfo);
346 for (int window = 0, group = 0; group < GetWindowGroups(pIcsInfo); group++) {
347 for (int groupwin = 0; groupwin < GetWindowGroupLength(pIcsInfo, group); groupwin++, window++) {
aacdec_drc.cpp 838 CIcsInfo *pIcsInfo = &pAacDecoderChannelInfo->icsInfo;
841 int winSeq = pIcsInfo->WindowSequence;
    [all...]
aacdec_hcr.cpp 285 CIcsInfo *pIcsInfo = &pAacDecoderChannelInfo->icsInfo;
326 BandOffsets = GetScaleFactorBandOffsets(pIcsInfo, pSamplingRateInfo); /* aux */
327 numOfGroups = GetWindowGroups(pIcsInfo);
    [all...]

Completed in 87 milliseconds