Lines Matching refs:pDown
1057 DOWNMIX_INSTRUCTIONS* pDown = in _skipEqInstructions() local
1059 if (pDown == NULL) return DE_NOT_OK; in _skipEqInstructions()
1062 pDown->targetChannelCount; /* targetChannelCountFromDownmixId*/ in _skipEqInstructions()
1390 DOWNMIX_INSTRUCTIONS* pDown = in _readDrcInstructionsUniDrc() local
1392 if (pDown == NULL) return DE_NOT_OK; in _readDrcInstructionsUniDrc()
1394 pDown->targetChannelCount; /* targetChannelCountFromDownmixId*/ in _readDrcInstructionsUniDrc()
1501 DOWNMIX_INSTRUCTIONS* pDown) { in _readDownmixInstructions() argument
1504 pDown->downmixId = FDKreadBits(hBs, 7); in _readDownmixInstructions()
1505 pDown->targetChannelCount = FDKreadBits(hBs, 7); in _readDownmixInstructions()
1506 pDown->targetLayout = FDKreadBits(hBs, 8); in _readDownmixInstructions()
1507 pDown->downmixCoefficientsPresent = FDKreadBits(hBs, 1); in _readDownmixInstructions()
1509 if (pDown->downmixCoefficientsPresent) { in _readDownmixInstructions()
1510 int nDownmixCoeffs = pDown->targetChannelCount * pChan->baseChannelCount; in _readDownmixInstructions()
1514 pDown->bsDownmixOffset = 0; in _readDownmixInstructions()
1517 pDown->downmixCoefficient[i] = downmixCoeff[FDKreadBits(hBs, 4)]; in _readDownmixInstructions()
1520 pDown->bsDownmixOffset = FDKreadBits(hBs, 4); in _readDownmixInstructions()
1522 pDown->downmixCoefficient[i] = downmixCoeffV1[FDKreadBits(hBs, 5)]; in _readDownmixInstructions()