• Home
  • Raw
  • Download

Lines Matching refs:channelData

465     pDrcBs->channelData.drcInterpolationScheme = FDKreadBits(bs, 4);  /* drc_interpolation_scheme */  in aacDecoder_drcParse()
470 pDrcBs->channelData.bandTop[i] = FDKreadBits(bs, 8); /* drc_band_top[i] */ in aacDecoder_drcParse()
475 pDrcBs->channelData.bandTop[0] = 255; in aacDecoder_drcParse()
478 pDrcBs->channelData.numBands = numBands; in aacDecoder_drcParse()
491 pDrcBs->channelData.drcValue[i] = FDKreadBits(bs, 1) << 7; /* dyn_rng_sgn[i] */ in aacDecoder_drcParse()
492 pDrcBs->channelData.drcValue[i] |= FDKreadBits(bs, 7) & 0x7F; /* dyn_rng_ctl[i] */ in aacDecoder_drcParse()
497 pDrcBs->channelData.drcDataType = MPEG_DRC_EXT_DATA; in aacDecoder_drcParse()
580 pDrcBs->channelData.numBands = 1; /* One band ... */ in aacDecoder_drcReadCompression()
581 pDrcBs->channelData.drcValue[0] = compressionValue; /* ... with one value ... */ in aacDecoder_drcReadCompression()
582 pDrcBs->channelData.bandTop[0] = (1024 >> 2) - 1; /* ... comprising the whole spectrum. */ in aacDecoder_drcReadCompression()
585 …pDrcBs->channelData.drcDataType = DVB_DRC_ANC_DATA; /* Set DRC payload type to DVB. */ in aacDecoder_drcReadCompression()
590 pDrcBs->channelData.numBands = 1; /* One band ... */ in aacDecoder_drcReadCompression()
591 pDrcBs->channelData.drcValue[0] = 0x80; /* ... with aprox. 0dB ... */ in aacDecoder_drcReadCompression()
592 pDrcBs->channelData.bandTop[0] = (1024 >> 2) - 1; /* ... comprising the whole spectrum. */ in aacDecoder_drcReadCompression()
593 …pDrcBs->channelData.drcDataType = DVB_DRC_ANC_DATA; /* Set DRC payload type to DVB. */ in aacDecoder_drcReadCompression()
642 threadBs[self->numThreads].channelData.bandTop[0] = (1024 >> 2) - 1; in aacDecoder_drcExtractAndMap()
661 threadBs[self->numThreads].channelData.bandTop[0] = (1024 >> 2) - 1; in aacDecoder_drcExtractAndMap()
685 switch ((AACDEC_DRC_PAYLOAD_TYPE)pThreadBs->channelData.drcDataType) { in aacDecoder_drcExtractAndMap()
727 if ( (pThreadBs->channelData.drcDataType == MPEG_DRC_EXT_DATA) in aacDecoder_drcExtractAndMap()
746 …AACDEC_DRC_PAYLOAD_TYPE drcPayloadType = (AACDEC_DRC_PAYLOAD_TYPE)pThreadBs->channelData.drcDataTy… in aacDecoder_drcExtractAndMap()
765 pAacDecoderStaticChannelInfo[ch]->drcData = pThreadBs->channelData; in aacDecoder_drcExtractAndMap()