• Home
  • Raw
  • Download

Lines Matching refs:pIcsInfo

437 AAC_DECODER_ERROR IcsReadMaxSfb(HANDLE_FDK_BITSTREAM hBs, CIcsInfo *pIcsInfo,
440 AAC_DECODER_ERROR IcsRead(HANDLE_FDK_BITSTREAM bs, CIcsInfo *pIcsInfo,
497 inline UCHAR IsValid(const CIcsInfo *pIcsInfo) { return pIcsInfo->Valid; } in IsValid() argument
499 inline UCHAR IsLongBlock(const CIcsInfo *pIcsInfo) { in IsLongBlock() argument
500 return (pIcsInfo->WindowSequence != BLOCK_SHORT); in IsLongBlock()
503 inline UCHAR GetWindowShape(const CIcsInfo *pIcsInfo) { in GetWindowShape() argument
504 return pIcsInfo->WindowShape; in GetWindowShape()
507 inline BLOCK_TYPE GetWindowSequence(const CIcsInfo *pIcsInfo) { in GetWindowSequence() argument
508 return pIcsInfo->WindowSequence; in GetWindowSequence()
512 const CIcsInfo *pIcsInfo, const SamplingRateInfo *samplingRateInfo) { in GetScaleFactorBandOffsets() argument
513 if (IsLongBlock(pIcsInfo)) { in GetScaleFactorBandOffsets()
521 const CIcsInfo *pIcsInfo, const SamplingRateInfo *samplingRateInfo) { in GetNumberOfScaleFactorBands() argument
522 if (IsLongBlock(pIcsInfo)) { in GetNumberOfScaleFactorBands()
529 inline int GetWindowsPerFrame(const CIcsInfo *pIcsInfo) { in GetWindowsPerFrame() argument
530 return (pIcsInfo->WindowSequence == BLOCK_SHORT) ? 8 : 1; in GetWindowsPerFrame()
533 inline UCHAR GetWindowGroups(const CIcsInfo *pIcsInfo) { in GetWindowGroups() argument
534 return pIcsInfo->WindowGroups; in GetWindowGroups()
537 inline UCHAR GetWindowGroupLength(const CIcsInfo *pIcsInfo, const INT index) { in GetWindowGroupLength() argument
538 return pIcsInfo->WindowGroupLength[index]; in GetWindowGroupLength()
541 inline const UCHAR *GetWindowGroupLengthTable(const CIcsInfo *pIcsInfo) { in GetWindowGroupLengthTable() argument
542 return pIcsInfo->WindowGroupLength; in GetWindowGroupLengthTable()
545 inline UCHAR GetScaleFactorBandsTransmitted(const CIcsInfo *pIcsInfo) { in GetScaleFactorBandsTransmitted() argument
546 return pIcsInfo->MaxSfBands; in GetScaleFactorBandsTransmitted()
554 inline UCHAR GetScaleFactorBandsTotal(const CIcsInfo *pIcsInfo) { in GetScaleFactorBandsTotal() argument
555 return pIcsInfo->TotalSfBands; in GetScaleFactorBandsTotal()
559 inline UCHAR GetMaximumTnsBands(const CIcsInfo *pIcsInfo, in GetMaximumTnsBands() argument
561 return tns_max_bands_tbl[samplingRateIndex][!IsLongBlock(pIcsInfo)]; in GetMaximumTnsBands()