Searched refs:peak_period_counter_ms_ (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Ddelay_peak_detector.cc29 peak_period_counter_ms_(-1) {
33 peak_period_counter_ms_ = -1; // Indicate that next peak is the first.
71 if (peak_period_counter_ms_ == -1) {
73 peak_period_counter_ms_ = 0;
74 } else if (peak_period_counter_ms_ <= kMaxPeakPeriodMs) {
78 peak_data.period_ms = peak_period_counter_ms_;
85 peak_period_counter_ms_ = 0;
86 } else if (peak_period_counter_ms_ <= 2 * kMaxPeakPeriodMs) {
89 peak_period_counter_ms_ = 0;
101 if (peak_period_counter_ms_ >
[all...]
H A Ddelay_peak_detector.h49 // Increments the |peak_period_counter_ms_| with |inc_ms|. Only increments
70 int peak_period_counter_ms_; member in class:webrtc::DelayPeakDetector

Completed in 306 milliseconds