Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_processing/utility/
Ddelay_estimator.c264 free(self->binary_far_history); in WebRtc_FreeBinaryDelayEstimatorFarend()
265 self->binary_far_history = NULL; in WebRtc_FreeBinaryDelayEstimatorFarend()
286 self->binary_far_history = NULL; in WebRtc_CreateBinaryDelayEstimatorFarend()
299 self->binary_far_history = in WebRtc_AllocateFarendBufferMemory()
300 realloc(self->binary_far_history, in WebRtc_AllocateFarendBufferMemory()
301 history_size * sizeof(*self->binary_far_history)); in WebRtc_AllocateFarendBufferMemory()
304 if ((self->binary_far_history == NULL) || (self->far_bit_counts == NULL)) { in WebRtc_AllocateFarendBufferMemory()
310 memset(&self->binary_far_history[self->history_size], in WebRtc_AllocateFarendBufferMemory()
312 sizeof(*self->binary_far_history) * size_diff); in WebRtc_AllocateFarendBufferMemory()
324 memset(self->binary_far_history, 0, sizeof(uint32_t) * self->history_size); in WebRtc_InitBinaryDelayEstimatorFarend()
[all …]
Ddelay_estimator.h25 uint32_t* binary_far_history; member