Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/utility/
Ddelay_estimator.cc280 free(self->far_bit_counts); in WebRtc_FreeBinaryDelayEstimatorFarend()
281 self->far_bit_counts = NULL; in WebRtc_FreeBinaryDelayEstimatorFarend()
301 self->far_bit_counts = NULL; in WebRtc_CreateBinaryDelayEstimatorFarend()
316 self->far_bit_counts = static_cast<int*>(realloc( in WebRtc_AllocateFarendBufferMemory()
317 self->far_bit_counts, history_size * sizeof(*self->far_bit_counts))); in WebRtc_AllocateFarendBufferMemory()
318 if ((self->binary_far_history == NULL) || (self->far_bit_counts == NULL)) { in WebRtc_AllocateFarendBufferMemory()
326 memset(&self->far_bit_counts[self->history_size], 0, in WebRtc_AllocateFarendBufferMemory()
327 sizeof(*self->far_bit_counts) * size_diff); in WebRtc_AllocateFarendBufferMemory()
337 memset(self->far_bit_counts, 0, sizeof(int) * self->history_size); in WebRtc_InitBinaryDelayEstimatorFarend()
367 memmove(&self->far_bit_counts[dest_index], &self->far_bit_counts[src_index], in WebRtc_SoftResetBinaryDelayEstimatorFarend()
[all …]
Ddelay_estimator.h25 int* far_bit_counts; member