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.cpp554 int bandCount, GAIN_MODIFICATION* pGMod, in _decodeGainModification() argument
563 bandCount = FDKreadBits(hBs, 4); in _decodeGainModification()
566 for (b = 0; b < bandCount; b++) { in _decodeGainModification()
611 if (bandCount == 1) { in _decodeGainModification()
720 pGSet->bandCount = FDKreadBits(hBs, 4); in _readGainSet()
721 if (pGSet->bandCount > 4) return DE_MEMORY_ERROR; in _readGainSet()
723 if ((pGSet->bandCount > 1) || isBox) { in _readGainSet()
727 for (i = 0; i < pGSet->bandCount; i++) { in _readGainSet()
745 for (i = 1; i < pGSet->bandCount; i++) { in _readGainSet()
749 pGSet->bandCount = 1; in _readGainSet()
[all …]
DdrcDec_selectionProcess.cpp975 int bandCount = 0; in _preSelectionRequirement5() local
984 bandCount = gainSet->bandCount; in _preSelectionRequirement5()
986 if (bandCount > 4) { in _preSelectionRequirement5()
1555 int bandCount = 0; in _selectSingleDrcCharacteristic() local
1564 bandCount = pGainSet->bandCount; in _selectSingleDrcCharacteristic()
1566 for (b = 0; b < bandCount; b++) { in _selectSingleDrcCharacteristic()
DdrcDec_types.h220 UCHAR bandCount; member
DdrcDec_tools.cpp341 if (pCoef->gainSet[seq].bandCount > 1) { in bitstreamContainsMultibandDrc()