Home
last modified time | relevance | path

Searched refs:mCoefs (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/av/media/libeffects/testlibs/
H A DAudioBiquadFilter.cpp44 memcpy(mCoefs, IDENTITY_COEFS, sizeof(mCoefs)); in reset()
57 memcpy(mCoefs, coefs, sizeof(mCoefs)); in setCoefs()
72 memcpy(mCoefs, mTargetCoefs, sizeof(mCoefs)); in enable()
81 memcpy(mCoefs, IDENTITY_COEFS, sizeof(mCoefs)); in disable()
127 mCoefs[i] += maxDelta; in updateCoefs()
129 mCoefs[i] -= maxDelta; in updateCoefs()
131 mCoefs[i] = coefs[i]; in updateCoefs()
156 const audio_coef_t b0 = mCoefs[0]; in process_normal_mono()
157 const audio_coef_t b1 = mCoefs[1]; in process_normal_mono()
158 const audio_coef_t b2 = mCoefs[2]; in process_normal_mono()
[all …]
H A DAudioBiquadFilter.h134 audio_coef_t mCoefs[NUM_COEFS]; variable
/aosp12/system/media/audio_utils/include/audio_utils/
H A DBiquadFilter.h432 mCoefs = other.mCoefs;
440 mCoefs = std::move(other.mCoefs);
448 && mCoefs == other.mCoefs
508 if (coefs.size() == mCoefs.size()) {
545 return mCoefs; in getCoefficients()
556 return details::isStable(mCoefs[3], mCoefs[4]);
560 mCoefs[3 * mChannelCount + channelIndex],
575 category |= (mCoefs[i] != 0) << i; in setOptimization()
578 if (mCoefs[i * mChannelCount + j] != 0) { in setOptimization()
621 mCoefs.data(), mChannelCount); in process()
[all …]