Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dfilters.c69 int32_t *FilterState) //Q16 in AllpassFilterForDec32() argument
78 b = WebRtcSpl_AddSatW32(a, FilterState[j]); //Q16+Q16=Q16 in AllpassFilterForDec32()
82 FilterState[j] = WebRtcSpl_AddSatW32(a << 1, (uint32_t)InOut16[n] << 16); in AllpassFilterForDec32()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dfilterbanks.c31 float *FilterState) in WebRtcIsac_AllPassFilter2Float() argument
37 temp = FilterState[j] + APSectionFactors[j] * InOut[n]; in WebRtcIsac_AllPassFilter2Float()
38 FilterState[j] = -APSectionFactors[j] * temp + InOut[n]; in WebRtcIsac_AllPassFilter2Float()
Dfilter_functions.c207 double* FilterState) { in WebRtcIsac_AllpassFilterForDec() argument
215 InOut[n] = FilterState[j] + APSectionFactors[j]*temp; in WebRtcIsac_AllpassFilterForDec()
216 FilterState[j] = -APSectionFactors[j]*InOut[n] + temp; in WebRtcIsac_AllpassFilterForDec()
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dbackground_noise.h57 const int16_t* FilterState(size_t channel) const;
Dbackground_noise.cc148 const int16_t* BackgroundNoise::FilterState(size_t channel) const { in FilterState() function in webrtc::BackgroundNoise
Dexpand.cc871 background_noise_->FilterState(channel), in GenerateBackgroundNoise()