Home
last modified time | relevance | path

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

/external/webrtc/src/common_audio/signal_processing/
Dfilter_ar.c23 int x_length, in WebRtcSpl_FilterAR() argument
39 for (i = 0; i < x_length; i++) in WebRtcSpl_FilterAR()
70 if (x_length >= state_length) in WebRtcSpl_FilterAR()
72 WebRtcSpl_CopyFromEndW16(filtered, x_length, a_length - 1, state); in WebRtcSpl_FilterAR()
73 WebRtcSpl_CopyFromEndW16(filtered_low, x_length, a_length - 1, state_low); in WebRtcSpl_FilterAR()
76 for (i = 0; i < state_length - x_length; i++) in WebRtcSpl_FilterAR()
78 state[i] = state[i + x_length]; in WebRtcSpl_FilterAR()
79 state_low[i] = state_low[i + x_length]; in WebRtcSpl_FilterAR()
81 for (i = 0; i < x_length; i++) in WebRtcSpl_FilterAR()
83 state[state_length - x_length + i] = filtered[i]; in WebRtcSpl_FilterAR()
[all …]