HomeSort by relevance Sort by last modified time
    Searched defs:DelayPeakDetector (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
delay_peak_detector.h 22 class DelayPeakDetector {
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);
delay_peak_detector.cc 17 // 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()
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::IncrementCounter(int inc_ms)
    [all...]

Completed in 29 milliseconds