Home
last modified time | relevance | path

Searched refs:OnRttUpdate (Results 1 – 20 of 20) sorted by relevance

/external/webrtc/webrtc/video/
Dcall_stats_unittest.cc30 MOCK_METHOD2(OnRttUpdate, void(int64_t, int64_t));
51 rtcp_rtt_stats->OnRttUpdate(kRtt); in TEST_F()
52 EXPECT_CALL(stats_observer, OnRttUpdate(kRtt, kRtt)).Times(1); in TEST_F()
58 EXPECT_CALL(stats_observer, OnRttUpdate(_, _)).Times(0); in TEST_F()
69 rtcp_rtt_stats->OnRttUpdate(100); in TEST_F()
72 EXPECT_CALL(stats_observer, OnRttUpdate(_, _)).Times(0); in TEST_F()
77 EXPECT_CALL(stats_observer, OnRttUpdate(_, _)).Times(1); in TEST_F()
82 rtcp_rtt_stats->OnRttUpdate(100); in TEST_F()
83 EXPECT_CALL(stats_observer, OnRttUpdate(_, _)).Times(0); in TEST_F()
88 EXPECT_CALL(stats_observer, OnRttUpdate(_, _)).Times(1); in TEST_F()
[all …]
Dcall_stats.cc79 virtual void OnRttUpdate(int64_t rtt) { in OnRttUpdate() function in webrtc::RtcpObserver
80 owner_->OnRttUpdate(rtt); in OnRttUpdate()
127 (*it)->OnRttUpdate(avg_rtt_ms_, max_rtt_ms_); in Process()
163 void CallStats::OnRttUpdate(int64_t rtt) { in OnRttUpdate() function in webrtc::CallStats
Dcall_stats.h56 void OnRttUpdate(int64_t rtt);
Dvie_channel.cc54 virtual void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) { in OnRttUpdate() function in webrtc::ChannelStatsObserver
55 owner_->OnRttUpdate(avg_rtt_ms, max_rtt_ms); in OnRttUpdate()
1059 void ViEChannel::OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) { in OnRttUpdate() function in webrtc::ViEChannel
Dvie_channel.h280 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms);
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
Dtransport_feedback_adapter.cc130 void TransportFeedbackAdapter::OnRttUpdate(int64_t avg_rtt_ms, in OnRttUpdate() function in webrtc::TransportFeedbackAdapter
133 bitrate_estimator_->OnRttUpdate(avg_rtt_ms, max_rtt_ms); in OnRttUpdate()
Dtransport_feedback_adapter.h53 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override;
Dremote_bitrate_estimator_single_stream.h36 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override;
Dremote_estimator_proxy.h48 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override {} in OnRttUpdate() function
Dremote_bitrate_estimator_abs_send_time.h85 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override;
Dremote_bitrate_estimator_single_stream.cc187 void RemoteBitrateEstimatorSingleStream::OnRttUpdate(int64_t avg_rtt_ms, in OnRttUpdate() function in webrtc::RemoteBitrateEstimatorSingleStream
Dremote_bitrate_estimator_abs_send_time.cc381 void RemoteBitrateEstimatorAbsSendTime::OnRttUpdate(int64_t avg_rtt_ms, in OnRttUpdate() function in webrtc::RemoteBitrateEstimatorAbsSendTime
/external/webrtc/webrtc/modules/remote_bitrate_estimator/include/mock/
Dmock_remote_bitrate_estimator.h32 MOCK_METHOD2(OnRttUpdate, void(int64_t, int64_t));
/external/webrtc/webrtc/call/
Dcongestion_controller.cc71 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override { in OnRttUpdate() function in webrtc::__anon9ac7c0410111::WrappingBitrateEstimator
73 rbe_->OnRttUpdate(avg_rtt_ms, max_rtt_ms); in OnRttUpdate()
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
Dsend_side.cc61 rbe_->OnRttUpdate(rtt_ms, rtt_ms); in GiveFeedback()
Dremb.cc77 estimator_->OnRttUpdate(50, 50); in RembReceiver()
/external/webrtc/webrtc/modules/rtp_rtcp/include/
Drtp_rtcp_defines.h321 virtual void OnRttUpdate(int64_t rtt) = 0;
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtp_rtcp_impl.cc146 rtt_stats_->OnRttUpdate(max_rtt); in Process()
174 rtt_stats_->OnRttUpdate(rtt_ms); in Process()
Drtp_rtcp_impl_unittest.cc46 void OnRttUpdate(int64_t rtt_ms) override { rtt_ms_ = rtt_ms; } in OnRttUpdate() function in webrtc::__anon865dfefd0111::RtcpRttStatsTestImpl
/external/webrtc/webrtc/modules/include/
Dmodule_common_types.h445 virtual void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) = 0;