Lines Matching refs:pDown
1049 DOWNMIX_INSTRUCTIONS* pDown = in _skipEqInstructions() local
1051 if (pDown == NULL) return DE_NOT_OK; in _skipEqInstructions()
1054 pDown->targetChannelCount; /* targetChannelCountFromDownmixId*/ in _skipEqInstructions()
1382 DOWNMIX_INSTRUCTIONS* pDown = in _readDrcInstructionsUniDrc() local
1384 if (pDown == NULL) return DE_NOT_OK; in _readDrcInstructionsUniDrc()
1386 pDown->targetChannelCount; /* targetChannelCountFromDownmixId*/ in _readDrcInstructionsUniDrc()
1493 DOWNMIX_INSTRUCTIONS* pDown) { in _readDownmixInstructions() argument
1496 pDown->downmixId = FDKreadBits(hBs, 7); in _readDownmixInstructions()
1497 pDown->targetChannelCount = FDKreadBits(hBs, 7); in _readDownmixInstructions()
1498 pDown->targetLayout = FDKreadBits(hBs, 8); in _readDownmixInstructions()
1499 pDown->downmixCoefficientsPresent = FDKreadBits(hBs, 1); in _readDownmixInstructions()
1501 if (pDown->downmixCoefficientsPresent) { in _readDownmixInstructions()
1502 int nDownmixCoeffs = pDown->targetChannelCount * pChan->baseChannelCount; in _readDownmixInstructions()
1506 pDown->bsDownmixOffset = 0; in _readDownmixInstructions()
1509 pDown->downmixCoefficient[i] = downmixCoeff[FDKreadBits(hBs, 4)]; in _readDownmixInstructions()
1512 pDown->bsDownmixOffset = FDKreadBits(hBs, 4); in _readDownmixInstructions()
1514 pDown->downmixCoefficient[i] = downmixCoeffV1[FDKreadBits(hBs, 5)]; in _readDownmixInstructions()