Home
last modified time | relevance | path

Searched refs:DelayPeakDetector (Results 1 – 12 of 12) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/
Ddelay_peak_detector.cc24 DelayPeakDetector::~DelayPeakDetector() = default;
26 DelayPeakDetector::DelayPeakDetector() in DelayPeakDetector() function in webrtc::DelayPeakDetector
32 void DelayPeakDetector::Reset() { in Reset()
39 void DelayPeakDetector::SetPacketAudioLength(int length_ms) { in SetPacketAudioLength()
45 bool DelayPeakDetector::peak_found() { in peak_found()
49 int DelayPeakDetector::MaxPeakHeight() const { in MaxPeakHeight()
58 int DelayPeakDetector::MaxPeakPeriod() const { in MaxPeakPeriod()
67 bool DelayPeakDetector::Update(int inter_arrival_time, int target_level) { in Update()
100 void DelayPeakDetector::IncrementCounter(int inc_ms) { in IncrementCounter()
106 bool DelayPeakDetector::CheckPeakConditions() { in CheckPeakConditions()
Ddelay_peak_detector_unittest.cc19 TEST(DelayPeakDetector, CreateAndDestroy) { in TEST() argument
20 DelayPeakDetector* detector = new DelayPeakDetector(); in TEST()
25 TEST(DelayPeakDetector, EmptyHistory) { in TEST() argument
26 DelayPeakDetector detector; in TEST()
34 TEST(DelayPeakDetector, TriggerPeakMode) { in TEST() argument
35 DelayPeakDetector detector; in TEST()
85 TEST(DelayPeakDetector, DoNotTriggerPeakMode) { in TEST() argument
86 DelayPeakDetector detector; in TEST()
Ddelay_peak_detector.h22 class DelayPeakDetector {
24 DelayPeakDetector();
25 virtual ~DelayPeakDetector();
72 RTC_DISALLOW_COPY_AND_ASSIGN(DelayPeakDetector);
Ddelay_manager.h25 class DelayPeakDetector; variable
35 DelayManager(size_t max_packets_in_buffer, DelayPeakDetector* peak_detector);
157 DelayPeakDetector& peak_detector_;
Dneteq.cc49 DelayPeakDetector* delay_peak_detector = new DelayPeakDetector; in Create()
Dneteq_impl.h39 class DelayPeakDetector; variable
66 DelayPeakDetector* delay_peak_detector,
347 const rtc::scoped_ptr<DelayPeakDetector> delay_peak_detector_
Ddecision_logic_unittest.cc28 DelayPeakDetector delay_peak_detector; in TEST()
Ddelay_manager.cc26 DelayPeakDetector* peak_detector) in DelayManager()
Dneteq_impl_unittest.cc107 delay_peak_detector_ = new DelayPeakDetector; in CreateInstance()
210 DelayPeakDetector* delay_peak_detector_;
Dneteq_impl.cc60 DelayPeakDetector* delay_peak_detector, in NetEqImpl()
/external/webrtc/webrtc/modules/audio_coding/neteq/mock/
Dmock_delay_peak_detector.h20 class MockDelayPeakDetector : public DelayPeakDetector {
Dmock_delay_manager.h23 DelayPeakDetector* peak_detector) in MockDelayManager()