Home | History | Annotate | Download | only in src

Lines Matching full:channeldata

487     pDrcBs->channelData.drcInterpolationScheme = FDKreadBits(bs, 4);  /* drc_interpolation_scheme */
492 pDrcBs->channelData.bandTop[i] = FDKreadBits(bs, 8); /* drc_band_top[i] */
497 pDrcBs->channelData.bandTop[0] = (1024 >> 2) - 1; /* ... comprising the whole spectrum. */;
500 pDrcBs->channelData.numBands = numBands;
513 pDrcBs->channelData.drcValue[i] = FDKreadBits(bs, 1) << 7; /* dyn_rng_sgn[i] */
514 pDrcBs->channelData.drcValue[i] |= FDKreadBits(bs, 7) & 0x7F; /* dyn_rng_ctl[i] */
519 pDrcBs->channelData.drcDataType = MPEG_DRC_EXT_DATA;
602 pDrcBs->channelData.numBands = 1; /* One band ... */
603 pDrcBs->channelData.drcValue[0] = compressionValue; /* ... with one value ... */
604 pDrcBs->channelData.bandTop[0] = (1024 >> 2) - 1; /* ... comprising the whole spectrum. */
607 pDrcBs->channelData.drcDataType = DVB_DRC_ANC_DATA; /* Set DRC payload type to DVB. */
612 pDrcBs->channelData.numBands = 1; /* One band ... */
613 pDrcBs->channelData.drcValue[0] = 0x80; /* ... with aprox. 0dB ... */
614 pDrcBs->channelData.bandTop[0] = (1024 >> 2) - 1; /* ... comprising the whole spectrum. */
615 pDrcBs->channelData.drcDataType = DVB_DRC_ANC_DATA; /* Set DRC payload type to DVB. */
671 threadBs[self->numThreads].channelData.bandTop[0] = (1024 >> 2) - 1;
690 threadBs[self->numThreads].channelData.bandTop[0] = (1024 >> 2) - 1;
714 switch ((AACDEC_DRC_PAYLOAD_TYPE)pThreadBs->channelData.drcDataType) {
756 if ( (pThreadBs->channelData.drcDataType == MPEG_DRC_EXT_DATA)
775 AACDEC_DRC_PAYLOAD_TYPE drcPayloadType = (AACDEC_DRC_PAYLOAD_TYPE)pThreadBs->channelData.drcDataType;
795 pAacDecoderStaticChannelInfo[ch]->drcData = pThreadBs->channelData;