Home
last modified time | relevance | path

Searched refs:bandCount (Results 1 – 9 of 9) sorted by relevance

/frameworks/av/media/libeffects/dynamicsproc/dsp/
DDPBase.cpp39 void DPBandStage::init(bool inUse, bool enabled, int bandCount) { in init() argument
41 mBandCount = inUse ? bandCount : 0; in init()
109 void DPEq::init(bool inUse, bool enabled, uint32_t bandCount) { in init() argument
110 DPBandStage::init(inUse, enabled, bandCount); in init()
131 void DPMbc::init(bool inUse, bool enabled, uint32_t bandCount) { in init() argument
132 DPBandStage::init(inUse, enabled, bandCount); in init()
134 mBands.resize(bandCount); in init()
DDPBase.h67 void init(bool inUse, bool enabled, int bandCount);
71 void setBandCount(uint32_t bandCount) { in setBandCount() argument
72 mBandCount = bandCount; in setBandCount()
188 void init(bool inUse, bool enabled, uint32_t bandCount);
199 void init(bool inUse, bool enabled, uint32_t bandCount);
/frameworks/av/media/libaudiohal/impl/effectsAidlConversion/
DAidlConversionDynamicsProcessing.cpp181 RETURN_STATUS_IF_ERROR(param.writeToValue(&engine.preEqStage.bandCount)); in getParameter()
183 RETURN_STATUS_IF_ERROR(param.writeToValue(&engine.mbcStage.bandCount)); in getParameter()
185 RETURN_STATUS_IF_ERROR(param.writeToValue(&engine.postEqStage.bandCount)); in getParameter()
294 RETURN_IF_ERROR(param.readFromValue(&engine.preEqStage.bandCount)); in readEngineArchitectureFromParam()
296 RETURN_IF_ERROR(param.readFromValue(&engine.mbcStage.bandCount)); in readEngineArchitectureFromParam()
298 RETURN_IF_ERROR(param.readFromValue(&engine.postEqStage.bandCount)); in readEngineArchitectureFromParam()
319 int32_t inUse, bandCount; in getChannelConfig() local
323 bandCount = mEngine.preEqStage.bandCount; in getChannelConfig()
331 bandCount = mEngine.postEqStage.bandCount; in getChannelConfig()
339 bandCount = mEngine.mbcStage.bandCount; in getChannelConfig()
[all …]
/frameworks/base/media/java/android/media/audiofx/
DDynamicsProcessing.java373 public BandStage(boolean inUse, boolean enabled, int bandCount) { in BandStage() argument
375 mBandCount = isInUse() ? bandCount : 0; in BandStage()
721 public Eq(boolean inUse, boolean enabled, int bandCount) { in Eq() argument
722 super(inUse, enabled, bandCount); in Eq()
724 mBands = new EqBand[bandCount]; in Eq()
725 for (int b = 0; b < bandCount; b++) { in Eq()
727 if (bandCount > 1) { in Eq()
729 b * (mMaxFreqLog - mMinFreqLog)/(bandCount -1)); in Eq()
808 public Mbc(boolean inUse, boolean enabled, int bandCount) { in Mbc() argument
809 super(inUse, enabled, bandCount); in Mbc()
[all …]
/frameworks/av/media/libeffects/dynamicsproc/aidl/
DDynamicsProcessingContext.h82 .preEqStage = {.inUse = true, .bandCount = kBandCount},
83 .postEqStage = {.inUse = true, .bandCount = kBandCount},
84 .mbcStage = {.inUse = true, .bandCount = kBandCount},
DDynamicsProcessingContext.cpp85 mDpFreq->init(mChannelCount, engine.preEqStage.inUse, engine.preEqStage.bandCount, in dpSetFreqDomainVariant_l()
86 engine.mbcStage.inUse, engine.mbcStage.bandCount, engine.postEqStage.inUse, in dpSetFreqDomainVariant_l()
87 engine.postEqStage.bandCount, engine.limiterInUse); in dpSetFreqDomainVariant_l()
137 !validateBandConfig(bands, mChannelCount, mEngineArchitecture.preEqStage.bandCount), in setPreEqBand()
145 !validateBandConfig(bands, mChannelCount, mEngineArchitecture.postEqStage.bandCount), in setPostEqBand()
153 !validateBandConfig(bands, mChannelCount, mEngineArchitecture.mbcStage.bandCount), in setMbcBand()
198 auto maxBand = mEngineArchitecture.mbcStage.bandCount; in getMbcBand()
371 auto maxBand = mEngineArchitecture.preEqStage.bandCount; in getEqBandConfigs()
DDynamicsProcessing.cpp70 .preEqStage = {.inUse = false, .bandCount = 0},
71 .postEqStage = {.inUse = false, .bandCount = 0},
72 .mbcStage = {.inUse = false, .bandCount = 0},
79 .preEqStage = {.inUse = true, .bandCount = 128},
80 .postEqStage = {.inUse = true, .bandCount = 128},
81 .mbcStage = {.inUse = true, .bandCount = 128},
/frameworks/av/media/libeffects/dynamicsproc/
DEffectDynamicsProcessing.cpp1044 const int32_t bandCount = values[2].i; in DP_setParameter() local
1047 values[2].i, bandCount); in DP_setParameter()
1059 if ((int32_t)pEq->getBandCount() != bandCount) { in DP_setParameter()
1061 pEq->getBandCount(), bandCount); in DP_setParameter()
1128 const int32_t bandCount = values[2].i; in DP_setParameter() local
1130 enabled, bandCount); in DP_setParameter()
1141 if ((int32_t)pMbc->getBandCount() != bandCount) { in DP_setParameter()
1143 pMbc->getBandCount(), bandCount); in DP_setParameter()
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...