Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_processing/utility/
Ddelay_estimator.c267 free(self->far_bit_counts); in WebRtc_FreeBinaryDelayEstimatorFarend()
268 self->far_bit_counts = NULL; in WebRtc_FreeBinaryDelayEstimatorFarend()
287 self->far_bit_counts = NULL; in WebRtc_CreateBinaryDelayEstimatorFarend()
302 self->far_bit_counts = realloc(self->far_bit_counts, in WebRtc_AllocateFarendBufferMemory()
303 history_size * sizeof(*self->far_bit_counts)); in WebRtc_AllocateFarendBufferMemory()
304 if ((self->binary_far_history == NULL) || (self->far_bit_counts == NULL)) { in WebRtc_AllocateFarendBufferMemory()
313 memset(&self->far_bit_counts[self->history_size], in WebRtc_AllocateFarendBufferMemory()
315 sizeof(*self->far_bit_counts) * size_diff); in WebRtc_AllocateFarendBufferMemory()
325 memset(self->far_bit_counts, 0, sizeof(int) * self->history_size); in WebRtc_InitBinaryDelayEstimatorFarend()
354 memmove(&self->far_bit_counts[dest_index], in WebRtc_SoftResetBinaryDelayEstimatorFarend()
[all …]
Ddelay_estimator.h23 int* far_bit_counts; member