Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dfilters.c67 const int32_t *APSectionFactors, //Q15 in AllpassFilterForDec32() argument
76 …a = WEBRTC_SPL_MUL_16_32_RSFT16(InOut16[n], APSectionFactors[j]); //Q0*Q31=Q31 shifted 16 gives Q15 in AllpassFilterForDec32()
80 a = WEBRTC_SPL_MUL_16_32_RSFT16(b >> 16, -APSectionFactors[j]); in AllpassFilterForDec32()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dfilterbanks.c29 static void WebRtcIsac_AllPassFilter2Float(float *InOut, const float *APSectionFactors, 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.c205 const double* APSectionFactors, 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()