Home
last modified time | relevance | path

Searched refs:best_correlation (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/modules/audio_coding/neteq/
Dtime_stretch.cc105 int16_t best_correlation; in Process() local
107 SetParametersForPassiveSpeech(signal_len, &best_correlation, &peak_index); in Process()
136 best_correlation = WebRtcSpl_DivW32W16(cross_corr, sqrt_energy_prod); in Process()
138 best_correlation = std::min(static_cast<int16_t>(16384), best_correlation); in Process()
143 CheckCriteriaAndStretch(input, input_len, peak_index, best_correlation, in Process()
Daccelerate.cc40 int16_t* best_correlation, in SetParametersForPassiveSpeech() argument
44 *best_correlation = 0; in SetParametersForPassiveSpeech()
51 int16_t best_correlation, in CheckCriteriaAndStretch() argument
58 if ((best_correlation > correlation_threshold) || !active_speech) { in CheckCriteriaAndStretch()
Dpreemptive_expand.cc46 int16_t* best_correlation, in SetParametersForPassiveSpeech() argument
50 *best_correlation = 0; in SetParametersForPassiveSpeech()
63 int16_t best_correlation, in CheckCriteriaAndStretch() argument
72 if (((best_correlation > kCorrelationThreshold) && in CheckCriteriaAndStretch()
Daccelerate.h53 int16_t* best_correlation,
61 int16_t best_correlation,
Dpreemptive_expand.h54 int16_t* best_correlation,
62 int16_t best_correlation,
Dtime_stretch.h66 int16_t* best_correlation,
76 int16_t best_correlation,
Dmerge.cc358 int16_t best_correlation; in CorrelateAndPeakSearch() local
363 &best_correlation); in CorrelateAndPeakSearch()
Dexpand.cc375 int16_t best_correlation[kNumCorrelationCandidates]; in AnalyzeSignal() local
412 best_correlation_index, best_correlation); in AnalyzeSignal()
444 ratio = (best_correlation[i] * (1 << 16)) / best_distortion[i]; in AnalyzeSignal()
445 } else if (best_correlation[i] == 0) { in AnalyzeSignal()