Home
last modified time | relevance | path

Searched refs:detector_ (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/
Ddelay_manager_unittest.cc42 MockDelayPeakDetector detector_; member in webrtc::DelayManagerTest
54 EXPECT_CALL(detector_, Reset()) in SetUp()
56 dm_ = new DelayManager(kMaxNumberOfPackets, &detector_); in SetUp()
60 EXPECT_CALL(detector_, SetPacketAudioLength(lengt_ms)); in SetPacketAudioLength()
72 EXPECT_CALL(detector_, IncrementCounter(kTimeStepMs)) in IncreaseTime()
78 EXPECT_CALL(detector_, Die()); in TearDown()
101 EXPECT_CALL(detector_, SetPacketAudioLength(kLengthMs)) in TEST_F()
111 EXPECT_CALL(detector_, peak_found()) in TEST_F()
120 EXPECT_CALL(detector_, IncrementCounter(kTimeStepMs)) in TEST_F()
135 EXPECT_CALL(detector_, Update(1, 1)) in TEST_F()
[all …]
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
Dremote_bitrate_estimator_abs_send_time.cc110 detector_(OverUseDetectorOptions()), in RemoteBitrateEstimatorAbsSendTime()
270 const BandwidthUsage prior_state = detector_.State(); in IncomingPacketInfo()
310 estimator_.Update(t_delta, ts_delta_ms, size_delta, detector_.State()); in IncomingPacketInfo()
311 detector_.Detect(estimator_.offset(), ts_delta_ms, in IncomingPacketInfo()
315 if (detector_.State() == kBwOverusing) { in IncomingPacketInfo()
370 const RateControlInput input(detector_.State(), in UpdateEstimate()
Dremote_bitrate_estimator_abs_send_time.h136 OveruseDetector detector_ GUARDED_BY(crit_sect_.get());
/external/webrtc/webrtc/modules/audio_processing/transient/
Dtransient_suppressor.cc101 detector_.reset(new TransientDetector(detection_rate_hz)); in Initialize()
193 float detector_result = detector_->Detect( in Suppress()
199 using_reference_ = detector_->using_reference(); in Suppress()
Dtransient_suppressor.h74 rtc::scoped_ptr<TransientDetector> detector_; variable