Home
last modified time | relevance | path

Searched refs:delay_history_ (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/audio_processing/aec3/
Dclockdrift_detector.cc16 delay_history_.fill(0); in ClockdriftDetector()
22 if (delay_estimate == delay_history_[0]) { in Update()
31 const int d1 = delay_history_[0] - delay_estimate; in Update()
32 const int d2 = delay_history_[1] - delay_estimate; in Update()
33 const int d3 = delay_history_[2] - delay_estimate; in Update()
57 delay_history_[2] = delay_history_[1]; in Update()
58 delay_history_[1] = delay_history_[0]; in Update()
59 delay_history_[0] = delay_estimate; in Update()
Dclockdrift_detector.h34 std::array<int, 3> delay_history_;
/external/webrtc/modules/audio_coding/neteq/
Ddelay_manager.cc221 delay_history_.push_back(delay); in UpdateDelayHistory()
222 while (timestamp - delay_history_.front().timestamp > in UpdateDelayHistory()
224 delay_history_.pop_front(); in UpdateDelayHistory()
234 for (const PacketDelay& delay : delay_history_) { in CalculateRelativePacketArrivalDelay()
303 delay_history_.clear(); in Reset()
Ddelay_manager.h175 std::deque<PacketDelay> delay_history_; variable