Home
last modified time | relevance | path

Searched refs:bandCount (Results 1 – 5 of 5) sorted by relevance

/external/aac/libDRCdec/src/
DdrcGainDec_init.cpp163 int seq, bandCount; in _generateDrcInstructionsDerivedData() local
165 bandCount = pCoef->gainSet[seq].bandCount; in _generateDrcInstructionsDerivedData()
166 pActiveDrc->bandCountForChannelGroup[g] = bandCount; in _generateDrcInstructionsDerivedData()
167 gainElementCount += bandCount; in _generateDrcInstructionsDerivedData()
DdrcDec_reader.cpp560 int bandCount, GAIN_MODIFICATION* pGMod, in _decodeGainModification() argument
569 bandCount = FDKreadBits(hBs, 4); in _decodeGainModification()
572 for (b = 0; b < bandCount; b++) { in _decodeGainModification()
617 if (bandCount == 1) { in _decodeGainModification()
726 pGSet->bandCount = FDKreadBits(hBs, 4); in _readGainSet()
727 if (pGSet->bandCount > 4) return DE_MEMORY_ERROR; in _readGainSet()
729 if ((pGSet->bandCount > 1) || isBox) { in _readGainSet()
733 for (i = 0; i < pGSet->bandCount; i++) { in _readGainSet()
751 for (i = 1; i < pGSet->bandCount; i++) { in _readGainSet()
755 pGSet->bandCount = 1; in _readGainSet()
[all …]
DdrcDec_selectionProcess.cpp987 int bandCount = 0; in _preSelectionRequirement5() local
1000 bandCount = gainSet->bandCount; in _preSelectionRequirement5()
1002 if (bandCount > 4) { in _preSelectionRequirement5()
1006 for (b = 0; b < bandCount; b++) { in _preSelectionRequirement5()
1592 int bandCount = 0; in _selectSingleDrcCharacteristic() local
1601 bandCount = pGainSet->bandCount; in _selectSingleDrcCharacteristic()
1603 for (b = 0; b < bandCount; b++) { in _selectSingleDrcCharacteristic()
DdrcDec_types.h223 UCHAR bandCount; member
DdrcDec_tools.cpp341 if (pCoef->gainSet[seq].bandCount > 1) { in bitstreamContainsMultibandDrc()