HomeSort by relevance Sort by last modified time
    Searched refs:far_bit_counts (Results 1 - 4 of 4) sorted by null

  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator.c 81 if (handle->far_bit_counts != NULL) {
82 free(handle->far_bit_counts);
83 handle->far_bit_counts = NULL;
120 self->far_bit_counts = NULL;
152 self->far_bit_counts = malloc(history_size * sizeof(int));
153 if (self->far_bit_counts == NULL) {
171 memset(handle->far_bit_counts, 0, sizeof(int) * handle->history_size);
201 memmove(&(handle->far_bit_counts[1]), &(handle->far_bit_counts[0]),
203 handle->far_bit_counts[0] = BitCount(binary_far_spectrum)
    [all...]
delay_estimator.h 22 int* far_bit_counts; member in struct:__anon38083
  /external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
delay_estimator.c 267 free(self->far_bit_counts);
268 self->far_bit_counts = NULL;
287 self->far_bit_counts = NULL;
302 self->far_bit_counts = realloc(self->far_bit_counts,
303 history_size * sizeof(*self->far_bit_counts));
304 if ((self->binary_far_history == NULL) || (self->far_bit_counts == NULL)) {
313 memset(&self->far_bit_counts[self->history_size],
315 sizeof(*self->far_bit_counts) * size_diff);
325 memset(self->far_bit_counts, 0, sizeof(int) * self->history_size)
    [all...]
delay_estimator.h 23 int* far_bit_counts; member in struct:__anon20533

Completed in 601 milliseconds