Searched refs:bandCount (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libeffects/dynamicsproc/dsp/
H A DDPBase.cpp39 void DPBandStage::init(bool inUse, bool enabled, int bandCount) { argument
41 mBandCount = inUse ? bandCount : 0;
109 void DPEq::init(bool inUse, bool enabled, uint32_t bandCount) { argument
110 DPBandStage::init(inUse, enabled, bandCount);
131 void DPMbc::init(bool inUse, bool enabled, uint32_t bandCount) { argument
132 DPBandStage::init(inUse, enabled, bandCount);
134 mBands.resize(bandCount);
H A DDPBase.h67 void init(bool inUse, bool enabled, int bandCount);
71 void setBandCount(uint32_t bandCount) { argument
72 mBandCount = bandCount;
188 void init(bool inUse, bool enabled, uint32_t bandCount);
199 void init(bool inUse, bool enabled, uint32_t bandCount);
/frameworks/base/media/java/android/media/audiofx/
H A DDynamicsProcessing.java370 * @param bandCount number of bands this stage will handle. If stage is not inUse, bandcount
373 public BandStage(boolean inUse, boolean enabled, int bandCount) { argument
375 mBandCount = isInUse() ? bandCount : 0;
718 * @param bandCount number of bands for this Equalizer stage. Can't be changed while effect
721 public Eq(boolean inUse, boolean enabled, int bandCount) { argument
722 super(inUse, enabled, bandCount);
724 mBands = new EqBand[bandCount];
725 for (int b = 0; b < bandCount; b++) {
727 if (bandCount > 1) {
729 b * (mMaxFreqLog - mMinFreqLog)/(bandCount
808 Mbc(boolean inUse, boolean enabled, int bandCount) argument
[all...]
/frameworks/av/media/libeffects/dynamicsproc/
H A DEffectDynamicsProcessing.cpp760 ALOGVV(" %s channel: %d, inUse::%d, enabled:%d, bandCount:%d\n",
829 ALOGVV("DP_PARAM_MBC channel: %d, inUse::%d, enabled:%d, bandCount:%d\n", channel,
1043 // bandCount};
1047 const int32_t bandCount = values[2].i;
1048 ALOGVV(" %s channel: %d, inUse::%d, enabled:%d, bandCount:%d\n",
1050 values[2].i, bandCount);
1062 if ((int32_t)pEq->getBandCount() != bandCount) {
1064 pEq->getBandCount(), bandCount);
1127 // bandCount};
1131 const int32_t bandCount
[all...]

Completed in 75 milliseconds