Home | History | Annotate | Download | only in src

Lines Matching refs:channelData

500     pDrcBs->channelData.drcInterpolationScheme = FDKreadBits(bs, 4);  /* drc_interpolation_scheme */
505 pDrcBs->channelData.bandTop[i] = FDKreadBits(bs, 8); /* drc_band_top[i] */
510 pDrcBs->channelData.bandTop[0] = (1024 >> 2) - 1; /* ... comprising the whole spectrum. */;
513 pDrcBs->channelData.numBands = numBands;
526 pDrcBs->channelData.drcValue[i] = FDKreadBits(bs, 1) << 7; /* dyn_rng_sgn[i] */
527 pDrcBs->channelData.drcValue[i] |= FDKreadBits(bs, 7) & 0x7F; /* dyn_rng_ctl[i] */
532 pDrcBs->channelData.drcDataType = MPEG_DRC_EXT_DATA;
614 pDrcBs->channelData.numBands = 1; /* One band ... */
615 pDrcBs->channelData.drcValue[0] = compressionValue; /* ... with one value ... */
616 pDrcBs->channelData.bandTop[0] = (1024 >> 2) - 1; /* ... comprising the whole spectrum. */
619 pDrcBs->channelData.drcDataType = DVB_DRC_ANC_DATA; /* Set DRC payload type to DVB. */
624 pDrcBs->channelData.numBands = 1; /* One band ... */
625 pDrcBs->channelData.drcValue[0] = 0x80; /* ... with aprox. 0dB ... */
626 pDrcBs->channelData.bandTop[0] = (1024 >> 2) - 1; /* ... comprising the whole spectrum. */
627 pDrcBs->channelData.drcDataType = DVB_DRC_ANC_DATA; /* Set DRC payload type to DVB. */
696 threadBs[self->numThreads].channelData.bandTop[0] = (1024 >> 2) - 1;
715 threadBs[self->numThreads].channelData.bandTop[0] = (1024 >> 2) - 1;
739 switch ((AACDEC_DRC_PAYLOAD_TYPE)pThreadBs->channelData.drcDataType) {
781 if ( (pThreadBs->channelData.drcDataType == MPEG_DRC_EXT_DATA)
800 AACDEC_DRC_PAYLOAD_TYPE drcPayloadType = (AACDEC_DRC_PAYLOAD_TYPE)pThreadBs->channelData.drcDataType;
826 pAacDecoderStaticChannelInfo[ch]->drcData = pThreadBs->channelData;