Searched refs:dp_fx (Results 1 – 7 of 7) sorted by relevance
/frameworks/av/media/libeffects/dynamicsproc/aidl/ |
D | DynamicsProcessingContext.h | 76 std::unique_ptr<dp_fx::DPFrequency> mDpFreq = nullptr; 93 dp_fx::DPChannel* getChannel_l(int ch); 94 dp_fx::DPEq* getPreEq_l(int ch); 95 dp_fx::DPEq* getPostEq_l(int ch); 96 dp_fx::DPMbc* getMbc_l(int ch); 97 dp_fx::DPLimiter* getLimiter_l(int ch); 98 dp_fx::DPBandStage* getStageWithType_l(StageType type, int ch); 99 dp_fx::DPEq* getEqWithType_l(StageType type, int ch);
|
D | DynamicsProcessingContext.cpp | 67 dp_fx::DPChannel* leftChannel = mDpFreq->getChannel(0); in setVolumeStereo() 68 dp_fx::DPChannel* rightChannel = mDpFreq->getChannel(1); in setVolumeStereo() 84 mDpFreq.reset(new dp_fx::DPFrequency()); in dpSetFreqDomainVariant_l() 90 int32_t minBlockSize = (int32_t)dp_fx::DPFrequency::getMinBockSize(); in dpSetFreqDomainVariant_l() 121 return setDpChannels_l<dp_fx::DPEq>(channels, StageType::PREEQ); in setPreEq() 126 return setDpChannels_l<dp_fx::DPEq>(channels, StageType::POSTEQ); in setPostEq() 131 return setDpChannels_l<dp_fx::DPMbc>(channels, StageType::MBC); in setMbc() 280 dp_fx::DPChannel* DynamicsProcessingContext::getChannel_l(int channel) { in getChannel_l() 286 dp_fx::DPEq* DynamicsProcessingContext::getPreEq_l(int ch) { in getPreEq_l() 293 dp_fx::DPEq* DynamicsProcessingContext::getPostEq_l(int ch) { in getPostEq_l() [all …]
|
/frameworks/av/media/libeffects/dynamicsproc/ |
D | EffectDynamicsProcessing.cpp | 73 dp_fx::DPBase * mPDynamics; //the effect (or current effect) 219 pContext->mPDynamics = new dp_fx::DPFrequency(); in DP_changeVariant() 233 int32_t minBlockSize = (int32_t)dp_fx::DPFrequency::getMinBockSize(); in DP_configureVariant() 246 ((dp_fx::DPFrequency*)pContext->mPDynamics)->configure(currentBlock, in DP_configureVariant() 383 static dp_fx::DPChannel* DP_getChannel(DynamicsProcessingContext *pContext, in DP_getChannel() 388 dp_fx::DPChannel *pChannel = pContext->mPDynamics->getChannel(channel); in DP_getChannel() 393 static dp_fx::DPEq* DP_getEq(DynamicsProcessingContext *pContext, int32_t channel, in DP_getEq() 395 dp_fx::DPChannel *pChannel = DP_getChannel(pContext, channel); in DP_getEq() 399 dp_fx::DPEq *pEq = (eqType == DP_PARAM_PRE_EQ ? pChannel->getPreEq() : in DP_getEq() 405 static dp_fx::DPEqBand* DP_getEqBand(DynamicsProcessingContext *pContext, int32_t channel, in DP_getEqBand() [all …]
|
/frameworks/av/media/libeffects/dynamicsproc/dsp/ |
D | DPFrequency.h | 30 namespace dp_fx {
|
D | DPBase.cpp | 24 namespace dp_fx { namespace
|
D | DPBase.h | 26 namespace dp_fx {
|
D | DPFrequency.cpp | 25 namespace dp_fx { namespace
|