Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_processing/utility/
Ddelay_estimator.c388 free(self->binary_near_history); in WebRtc_FreeBinaryDelayEstimator()
389 self->binary_near_history = NULL; in WebRtc_FreeBinaryDelayEstimator()
425 self->binary_near_history = in WebRtc_CreateBinaryDelayEstimator()
426 malloc((max_lookahead + 1) * sizeof(*self->binary_near_history)); in WebRtc_CreateBinaryDelayEstimator()
427 if (self->binary_near_history == NULL || in WebRtc_CreateBinaryDelayEstimator()
483 memset(self->binary_near_history, in WebRtc_InitBinaryDelayEstimator()
535 memmove(&(self->binary_near_history[1]), &(self->binary_near_history[0]), in WebRtc_ProcessBinarySpectrum()
537 self->binary_near_history[0] = binary_near_spectrum; in WebRtc_ProcessBinarySpectrum()
538 binary_near_spectrum = self->binary_near_history[self->lookahead]; in WebRtc_ProcessBinarySpectrum()
Ddelay_estimator.h37 uint32_t* binary_near_history; member