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

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
accelerate.cc 36 int16_t* best_correlation,
40 *best_correlation = 0;
45 int16_t best_correlation, bool active_speech,
48 if ((best_correlation > kCorrelationThreshold) || !active_speech) {
accelerate.h 50 // Sets the parameters |best_correlation| and |peak_index| to suitable
53 int16_t* best_correlation,
60 int16_t best_correlation, bool active_speech,
preemptive_expand.cc 42 int16_t* best_correlation,
46 *best_correlation = 0;
49 // but we must ensure that best_correlation is not larger than the length of
51 // but we must ensure that best_correlation is not larger than the new data.
58 int16_t best_correlation, bool active_speech,
66 if (((best_correlation > kCorrelationThreshold) &&
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);
time_stretch.h 65 // Sets the parameters |best_correlation| and |peak_index| to suitable
69 int16_t* best_correlation,
77 int16_t best_correlation, bool active_speech,
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 443 milliseconds