OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NUM_COEFS
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libeffects/testlibs/
AudioBiquadFilter.h
40
static const int
NUM_COEFS
= 5;
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);
AudioBiquadFilter.cpp
26
const audio_coef_t AudioBiquadFilter::IDENTITY_COEFS[AudioBiquadFilter::
NUM_COEFS
] = { AUDIO_COEF_ONE, 0, 0, 0, 0 };
53
void AudioBiquadFilter::setCoefs(const audio_coef_t coefs[
NUM_COEFS
], bool immediate) {
99
mCoefDirtyBits = (1 <<
NUM_COEFS
) - 1;
107
mCoefDirtyBits = (1 <<
NUM_COEFS
) - 1;
120
bool AudioBiquadFilter::updateCoefs(const audio_coef_t coefs[
NUM_COEFS
],
123
for (int i = 0; i <
NUM_COEFS
; ++i) {
Completed in 50 milliseconds