HomeSort by relevance Sort by last modified time
    Searched full:value_best_candidate (Results 1 - 1 of 1) sorted by null

  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator.c 190 int32_t value_best_candidate = 16384; // 32 in Q9, (max |mean_bit_counts|). local
239 // Find |candidate_delay|, |value_best_candidate| and |value_worst_candidate|
242 if (handle->mean_bit_counts[i] < value_best_candidate) {
243 value_best_candidate = handle->mean_bit_counts[i];
251 // The |value_best_candidate| is a good indicator on the probability of
252 // |candidate_delay| being an accurate delay (a small |value_best_candidate|
266 (value_worst_candidate - value_best_candidate > kProbabilityMinSpread)) {
269 // difference between |value_worst_candidate| and |value_best_candidate| has
271 int32_t threshold = value_best_candidate + kProbabilityOffset;
282 if (value_worst_candidate > value_best_candidate + kProbabilityOffset)
    [all...]

Completed in 135 milliseconds