Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_processing/utility/
Ddelay_estimator.c73 if (handle->binary_far_history != NULL) { in WebRtc_FreeBinaryDelayEstimator()
74 free(handle->binary_far_history); in WebRtc_FreeBinaryDelayEstimator()
75 handle->binary_far_history = NULL; in WebRtc_FreeBinaryDelayEstimator()
119 self->binary_far_history = NULL; in WebRtc_CreateBinaryDelayEstimator()
139 self->binary_far_history = malloc(history_size * sizeof(uint32_t)); in WebRtc_CreateBinaryDelayEstimator()
140 if (self->binary_far_history == NULL) { in WebRtc_CreateBinaryDelayEstimator()
167 memset(handle->binary_far_history, 0, in WebRtc_InitBinaryDelayEstimator()
195 memmove(&(handle->binary_far_history[1]), &(handle->binary_far_history[0]), in WebRtc_ProcessBinarySpectrum()
197 handle->binary_far_history[0] = binary_far_spectrum; in WebRtc_ProcessBinarySpectrum()
218 handle->binary_far_history, in WebRtc_ProcessBinarySpectrum()
Ddelay_estimator.h29 uint32_t* binary_far_history; member