Home
last modified time | relevance | path

Searched refs:pDown (Results 1 – 4 of 4) sorted by relevance

/external/aac/libDRCdec/src/
DdrcDec_tools.cpp352 FIXP_DBL getDownmixOffset(DOWNMIX_INSTRUCTIONS* pDown, int baseChannelCount) { in getDownmixOffset() argument
354 if ((pDown->bsDownmixOffset == 1) || (pDown->bsDownmixOffset == 2)) { in getDownmixOffset()
357 if (baseChannelCount <= pDown->targetChannelCount) return downmixOffset; in getDownmixOffset()
359 q = fDivNorm((FIXP_DBL)pDown->targetChannelCount, in getDownmixOffset()
362 if (pDown->bsDownmixOffset == 2) { in getDownmixOffset()
DdrcDec_reader.cpp1064 DOWNMIX_INSTRUCTIONS* pDown = in _skipEqInstructions() local
1066 if (pDown == NULL) return DE_NOT_OK; in _skipEqInstructions()
1069 pDown->targetChannelCount; /* targetChannelCountFromDownmixId*/ in _skipEqInstructions()
1396 DOWNMIX_INSTRUCTIONS* pDown = in _readDrcInstructionsUniDrc() local
1398 if (pDown == NULL) return DE_NOT_OK; in _readDrcInstructionsUniDrc()
1400 pDown->targetChannelCount; /* targetChannelCountFromDownmixId*/ in _readDrcInstructionsUniDrc()
1507 DOWNMIX_INSTRUCTIONS* pDown) { in _readDownmixInstructions() argument
1510 pDown->downmixId = FDKreadBits(hBs, 7); in _readDownmixInstructions()
1511 pDown->targetChannelCount = FDKreadBits(hBs, 7); in _readDownmixInstructions()
1512 pDown->targetLayout = FDKreadBits(hBs, 8); in _readDownmixInstructions()
[all …]
DdrcDec_selectionProcess.cpp824 DOWNMIX_INSTRUCTIONS* pDown = NULL; in _channelLayoutToDownmixIdMapping() local
847 pDown = &(hUniDrcConfig->downmixInstructions[i]); in _channelLayoutToDownmixIdMapping()
849 if (hSelProcInput->targetLayoutRequested == pDown->targetLayout) { in _channelLayoutToDownmixIdMapping()
852 pDown->downmixId; in _channelLayoutToDownmixIdMapping()
879 pDown = &(hUniDrcConfig->downmixInstructions[i]); in _channelLayoutToDownmixIdMapping()
882 pDown->targetChannelCount) { in _channelLayoutToDownmixIdMapping()
885 pDown->downmixId; in _channelLayoutToDownmixIdMapping()
2231 DOWNMIX_INSTRUCTIONS* pDown = &(hUniDrcConfig->downmixInstructions[i]); in _selectDownmixMatrix() local
2232 if (pDown->targetChannelCount > 8) { in _selectDownmixMatrix()
2236 if (hSelProcOutput->activeDownmixId == pDown->downmixId) { in _selectDownmixMatrix()
[all …]
DdrcDec_tools.h144 getDownmixOffset(DOWNMIX_INSTRUCTIONS* pDown, int baseChannelCount);