Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_processing/utility/
Ddelay_estimator.c65 if (handle->mean_bit_counts != NULL) { in WebRtc_FreeBinaryDelayEstimator()
66 free(handle->mean_bit_counts); in WebRtc_FreeBinaryDelayEstimator()
67 handle->mean_bit_counts = NULL; in WebRtc_FreeBinaryDelayEstimator()
117 self->mean_bit_counts = NULL; in WebRtc_CreateBinaryDelayEstimator()
126 self->mean_bit_counts = malloc(history_size * sizeof(int32_t)); in WebRtc_CreateBinaryDelayEstimator()
127 if (self->mean_bit_counts == NULL) { in WebRtc_CreateBinaryDelayEstimator()
173 handle->mean_bit_counts[i] = (20 << 9); // 20 in Q9. in WebRtc_InitBinaryDelayEstimator()
235 WebRtc_MeanEstimatorFix(bit_count, shifts, &(handle->mean_bit_counts[i])); in WebRtc_ProcessBinarySpectrum()
242 if (handle->mean_bit_counts[i] < value_best_candidate) { in WebRtc_ProcessBinarySpectrum()
243 value_best_candidate = handle->mean_bit_counts[i]; in WebRtc_ProcessBinarySpectrum()
[all …]
Ddelay_estimator.h21 int32_t* mean_bit_counts; member