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

  /external/webrtc/webrtc/modules/audio_coding/neteq/
accelerate.cc 36 int16_t* best_correlation,
40 *best_correlation = 0;
47 int16_t best_correlation,
54 if ((best_correlation > correlation_threshold) || !active_speech) {
accelerate.h 51 // Sets the parameters |best_correlation| and |peak_index| to suitable
54 int16_t* best_correlation,
62 int16_t best_correlation,
preemptive_expand.h 53 // Sets the parameters |best_correlation| and |peak_index| to suitable
56 int16_t* best_correlation,
64 int16_t best_correlation,
preemptive_expand.cc 43 int16_t* best_correlation,
47 *best_correlation = 0;
50 // but we must ensure that best_correlation is not larger than the length of
52 // but we must ensure that best_correlation is not larger than the new data.
61 int16_t best_correlation,
70 if (((best_correlation > kCorrelationThreshold) &&
time_stretch.cc 104 int16_t best_correlation; local
106 SetParametersForPassiveSpeech(signal_len, &best_correlation, &peak_index);
135 best_correlation = WebRtcSpl_DivW32W16(cross_corr, sqrt_energy_prod);
136 // Make sure |best_correlation| is no larger than 1 in Q14.
137 best_correlation = std::min(static_cast<int16_t>(16384), best_correlation);
143 CheckCriteriaAndStretch(input, input_len, peak_index, best_correlation,
time_stretch.h 66 // Sets the parameters |best_correlation| and |peak_index| to suitable
70 int16_t* best_correlation,
80 int16_t best_correlation,
merge.cc 357 int16_t best_correlation; local
362 &best_correlation);
expand.cc 356 int16_t best_correlation[kNumCorrelationCandidates]; local
392 best_correlation_index, best_correlation);
418 // f[i] = best_correlation[i] / best_distortion[i].
424 ratio = (best_correlation[i] << 16) / best_distortion[i];
425 } else if (best_correlation[i] == 0) {
    [all...]

Completed in 86 milliseconds