Home
last modified time | relevance | path

Searched refs:pChannel (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libeffects/dynamicsproc/
DEffectDynamicsProcessing.cpp388 dp_fx::DPChannel *pChannel = pContext->mPDynamics->getChannel(channel); in DP_getChannel() local
389 ALOGE_IF(pChannel == NULL, "DPChannel NULL. invalid channel %d", channel); in DP_getChannel()
390 return pChannel; in DP_getChannel()
395 dp_fx::DPChannel *pChannel = DP_getChannel(pContext, channel); in DP_getEq() local
396 if (pChannel == NULL) { in DP_getEq()
399 dp_fx::DPEq *pEq = (eqType == DP_PARAM_PRE_EQ ? pChannel->getPreEq() : in DP_getEq()
400 (eqType == DP_PARAM_POST_EQ ? pChannel->getPostEq() : NULL)); in DP_getEq()
417 dp_fx::DPChannel * pChannel = DP_getChannel(pContext, channel); in DP_getMbc() local
418 if (pChannel == NULL) { in DP_getMbc()
421 dp_fx::DPMbc *pMbc = pChannel->getMbc(); in DP_getMbc()
[all …]
/frameworks/av/media/libeffects/dynamicsproc/dsp/
DDPFrequency.cpp80 DPChannel *pChannel = dpBase.getChannel(0); in initBuffers() local
81 if (pChannel != nullptr) { in initBuffers()
82 mPreEqInUse = pChannel->getPreEq()->isInUse(); in initBuffers()
83 mMbcInUse = pChannel->getMbc()->isInUse(); in initBuffers()
84 mPostEqInUse = pChannel->getPostEq()->isInUse(); in initBuffers()
85 mLimiterInUse = pChannel->getLimiter()->isInUse(); in initBuffers()
184 DPChannel *pChannel = getChannel(channelIndex); in updateParameters() local
186 if (pChannel == nullptr) { in updateParameters()
194 IS_CHANGED(changed, cb.inputGainDb, pChannel->getInputGain()); in updateParameters()
197 DPEq *pPreEq = pChannel->getPreEq(); in updateParameters()
[all …]