Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_processing/utility/
Ddelay_estimator.c95 int history_size = max_delay + lookahead; in WebRtc_CreateBinaryDelayEstimator() local
106 if (history_size < 2) { in WebRtc_CreateBinaryDelayEstimator()
122 self->history_size = history_size; in WebRtc_CreateBinaryDelayEstimator()
126 self->mean_bit_counts = malloc(history_size * sizeof(int32_t)); in WebRtc_CreateBinaryDelayEstimator()
132 self->bit_counts = malloc(history_size * sizeof(int32_t)); in WebRtc_CreateBinaryDelayEstimator()
139 self->binary_far_history = malloc(history_size * sizeof(uint32_t)); in WebRtc_CreateBinaryDelayEstimator()
152 self->far_bit_counts = malloc(history_size * sizeof(int)); in WebRtc_CreateBinaryDelayEstimator()
166 memset(handle->bit_counts, 0, sizeof(int32_t) * handle->history_size); in WebRtc_InitBinaryDelayEstimator()
168 sizeof(uint32_t) * handle->history_size); in WebRtc_InitBinaryDelayEstimator()
171 memset(handle->far_bit_counts, 0, sizeof(int) * handle->history_size); in WebRtc_InitBinaryDelayEstimator()
[all …]
Ddelay_estimator.h40 int history_size; member