Searched defs:DelayPeakDetector (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Ddelay_peak_detector.h22 class DelayPeakDetector { class in namespace:webrtc
24 DelayPeakDetector();
25 virtual ~DelayPeakDetector() {}
28 // Notifies the DelayPeakDetector of how much audio data is carried in each
44 // Updates the DelayPeakDetector with a new inter-arrival time (in packets)
72 DISALLOW_COPY_AND_ASSIGN(DelayPeakDetector);
H A Ddelay_peak_detector.cc17 // The DelayPeakDetector keeps track of severe inter-arrival times, called
21 // peak-mode is engaged and the DelayManager asks the DelayPeakDetector for
24 DelayPeakDetector::DelayPeakDetector() function in class:webrtc::DelayPeakDetector
30 void DelayPeakDetector::Reset() {
37 void DelayPeakDetector::SetPacketAudioLength(int length_ms) {
43 int DelayPeakDetector::MaxPeakHeight() const {
52 int DelayPeakDetector::MaxPeakPeriod() const {
61 bool DelayPeakDetector::Update(int inter_arrival_time, int target_level) {
94 void DelayPeakDetector
[all...]

Completed in 72 milliseconds