Home
last modified time | relevance | path

Searched refs:peak_value (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/
Ddsp_helper.cc104 size_t* peak_index, int16_t* peak_value) { in PeakDetection() argument
126 &peak_value[i]); in PeakDetection()
131 &peak_value[i]); in PeakDetection()
134 peak_value[i] = (data[peak_index[i]] + data[peak_index[i] + 1]) >> 1; in PeakDetection()
138 peak_value[i] = data[peak_index[i]]; in PeakDetection()
151 size_t* peak_index, int16_t* peak_value) { in ParabolicFit() argument
205 *peak_value = (den * kParabolaCoefficients[fit_index[fs_mult - flag]][1] in ParabolicFit()
224 *peak_value = (temp_term_1 + temp_term_2 + temp_term_3) / 256; in ParabolicFit()
233 *peak_value = signal_points[1]; in ParabolicFit()
Ddsp_helper.h83 size_t* peak_index, int16_t* peak_value);
92 size_t* peak_index, int16_t* peak_value);
Dtime_stretch.cc64 int16_t peak_value; in Process() local
66 fs_mult_, &peak_index, &peak_value); in Process()