Home
last modified time | relevance | path

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

/frameworks/av/media/libeffects/testlibs/
DAudioBiquadFilter.h40 static const int NUM_COEFS = 5; variable
70 void setCoefs(const audio_coef_t coefs[NUM_COEFS], bool immediate = false);
105 static const audio_coef_t IDENTITY_COEFS[NUM_COEFS];
134 audio_coef_t mCoefs[NUM_COEFS];
137 audio_coef_t mTargetCoefs[NUM_COEFS];
154 bool updateCoefs(const audio_coef_t coefs[NUM_COEFS], int frameCount);
DAudioBiquadFilter.cpp26 const audio_coef_t AudioBiquadFilter::IDENTITY_COEFS[AudioBiquadFilter::NUM_COEFS] = { AUDIO_COEF_O…
53 void AudioBiquadFilter::setCoefs(const audio_coef_t coefs[NUM_COEFS], bool immediate) { in setCoefs() argument
99 mCoefDirtyBits = (1 << NUM_COEFS) - 1; in setState()
107 mCoefDirtyBits = (1 << NUM_COEFS) - 1; in setState()
120 bool AudioBiquadFilter::updateCoefs(const audio_coef_t coefs[NUM_COEFS], in updateCoefs() argument
123 for (int i = 0; i < NUM_COEFS; ++i) { in updateCoefs()