Home
last modified time | relevance | path

Searched refs:peak_history_ (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/
Ddelay_peak_detector.cc35 peak_history_.clear(); in Reset()
52 for (it = peak_history_.begin(); it != peak_history_.end(); ++it) { in MaxPeakHeight()
61 for (it = peak_history_.begin(); it != peak_history_.end(); ++it) { in MaxPeakPeriod()
80 peak_history_.push_back(peak_data); in Update()
81 while (peak_history_.size() > kMaxNumPeaks) { in Update()
83 peak_history_.pop_front(); in Update()
107 size_t s = peak_history_.size(); in CheckPeakConditions()
Ddelay_peak_detector.h67 std::list<Peak> peak_history_; variable