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

/frameworks/av/media/libeffects/dynamicsproc/dsp/
H A DDPBase.cpp50 void DPBandBase::init(bool enabled, float cutoffFrequency){ argument
52 mCutoofFrequencyHz = cutoffFrequency;
62 void DPEqBand::init(bool enabled, float cutoffFrequency, float gain) { argument
63 DPBandBase::init(enabled, cutoffFrequency);
90 void DPMbcBand::init(bool enabled, float cutoffFrequency, float attackTime, float releaseTime, argument
93 DPBandBase::init(enabled, cutoffFrequency);
H A DDPBase.h82 void init(bool enabled, float cutoffFrequency);
92 void setCutoffFrequency(float cutoffFrequency) { argument
93 mCutoofFrequencyHz = cutoffFrequency;
104 void init(bool enabled, float cutoffFrequency, float gain);
115 void init(bool enabled, float cutoffFrequency, float attackTime, float releaseTime,
/frameworks/av/media/libeffects/dynamicsproc/
H A DEffectDynamicsProcessing.cpp796 ALOGVV("%s channel: %d, band::%d, enabled:%d, cutoffFrequency:%f, gain%f\n",
844 // 0.0f /*1 cutoffFrequency */,
878 ALOGVV(" mbcBand channel: %d, band::%d, enabled:%d, cutoffFrequency:%f, attackTime:%f,"
1093 const float cutoffFrequency = values[1].f;
1097 ALOGVV(" %s channel: %d, band::%d, enabled:%d, cutoffFrequency:%f, gain%f\n",
1099 enabled, cutoffFrequency, gain);
1112 eqBand.init(enabled != 0, cutoffFrequency, gain);
1176 const float cutoffFrequency = values[1].f;
1187 ALOGVV(" mbcBand channel: %d, band::%d, enabled:%d, cutoffFrequency:%f, attackTime:%f,"
1190 channel, band, enabled, cutoffFrequency, attackTim
[all...]
/frameworks/base/media/java/android/media/audiofx/
H A DDynamicsProcessing.java407 * @param cutoffFrequency topmost frequency number (in Hz) this band will process. The
410 * band number, thus band 0 cutoffFrequency <= band 1 cutoffFrequency, and so on.
412 public BandBase(boolean enabled, float cutoffFrequency) { argument
414 mCutoffFrequency = cutoffFrequency;
441 * gets cutoffFrequency for this band in Hertz (Hz)
442 * @return cutoffFrequency for this band in Hertz (Hz)
452 * band number, thus band 0 cutoffFrequency <= band 1 cutoffFrequency, and so on.
462 * Equalizer bands have three controllable parameters: enabled/disabled, cutoffFrequency an
477 EqBand(boolean enabled, float cutoffFrequency, float gain) argument
553 MbcBand(boolean enabled, float cutoffFrequency, float attackTime, float releaseTime, float ratio, float threshold, float kneeWidth, float noiseGateThreshold, float expanderRatio, float preGain, float postGain) argument
[all...]

Completed in 37 milliseconds