Home
last modified time | relevance | path

Searched refs:FilterState (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dfilters.c68 int32_t *FilterState) //Q16 in AllpassFilterForDec32() argument
77 b = WebRtcSpl_AddSatW32(a, FilterState[j]); //Q16+Q16=Q16 in AllpassFilterForDec32()
81 FilterState[j] = WebRtcSpl_AddSatW32(a << 1, (uint32_t)InOut16[n] << 16); in AllpassFilterForDec32()
/external/webrtc/modules/audio_coding/codecs/isac/main/source/
Disac_vad.c160 float* FilterState) { in WebRtcIsac_AllPassFilter2Float() argument
165 temp = FilterState[j] + APSectionFactors[j] * InOut[n]; in WebRtcIsac_AllPassFilter2Float()
166 FilterState[j] = -APSectionFactors[j] * temp + InOut[n]; in WebRtcIsac_AllPassFilter2Float()
Disac_vad.h37 float* FilterState);
Dpitch_estimator.c132 double* FilterState) { in WebRtcIsac_AllpassFilterForDec() argument
140 InOut[n] = FilterState[j] + APSectionFactors[j] * temp; in WebRtcIsac_AllpassFilterForDec()
141 FilterState[j] = -APSectionFactors[j] * InOut[n] + temp; in WebRtcIsac_AllpassFilterForDec()
/external/webrtc/modules/audio_coding/neteq/
Dbackground_noise.cc144 memcpy(noise_samples - kNoiseLpcOrder, FilterState(channel), in GenerateBackgroundNoise()
200 const int16_t* BackgroundNoise::FilterState(size_t channel) const { in FilterState() function in webrtc::BackgroundNoise
Dbackground_noise.h66 const int16_t* FilterState(size_t channel) const;