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

  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator.c 65 if (handle->mean_bit_counts != NULL) {
66 free(handle->mean_bit_counts);
67 handle->mean_bit_counts = NULL;
117 self->mean_bit_counts = NULL;
126 self->mean_bit_counts = malloc(history_size * sizeof(int32_t));
127 if (self->mean_bit_counts == NULL) {
173 handle->mean_bit_counts[i] = (20 << 9); // 20 in Q9.
190 int32_t value_best_candidate = 16384; // 32 in Q9, (max |mean_bit_counts|).
222 // Update |mean_bit_counts|, which is the smoothed version of |bit_counts|.
228 // Update |mean_bit_counts| only when far-end signal has something t
    [all...]
delay_estimator.h 21 int32_t* mean_bit_counts; member in struct:__anon15306

Completed in 48 milliseconds