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

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
time_stretch.cc 105 int16_t best_correlation; local
107 SetParametersForPassiveSpeech(signal_len, &best_correlation, &peak_index);
136 best_correlation = WebRtcSpl_DivW32W16(cross_corr, sqrt_energy_prod);
137 // Make sure |best_correlation| is no larger than 1 in Q14.
138 best_correlation = std::min(static_cast<int16_t>(16384), best_correlation);
144 input, input_len, peak_index, best_correlation, active_speech, output);
merge.cc 340 int16_t best_correlation; local
345 &best_correlation);
expand.cc 315 int16_t best_correlation[kNumCorrelationCandidates]; local
351 best_correlation_index, best_correlation);
377 // f[i] = best_correlation[i] / best_distortion[i].
383 ratio = (best_correlation[i] << 16) / best_distortion[i];
384 } else if (best_correlation[i] == 0) {
    [all...]

Completed in 207 milliseconds