Home
last modified time | relevance | path

Searched refs:GetJitterEstimate (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/
Djitter_estimator_tests.cc72 EXPECT_GT(regular_estimator_.GetJitterEstimate(0), 0); in TEST_F()
74 EXPECT_EQ(low_rate_estimator_.GetJitterEstimate(0), 0); in TEST_F()
89 EXPECT_GT(regular_estimator_.GetJitterEstimate(0), 0); in TEST_F()
90 EXPECT_GT(low_rate_estimator_.GetJitterEstimate(0), 0); in TEST_F()
91 EXPECT_GE(regular_estimator_.GetJitterEstimate(0), in TEST_F()
92 low_rate_estimator_.GetJitterEstimate(0)); in TEST_F()
106 EXPECT_EQ(regular_estimator_.GetJitterEstimate(0), in TEST_F()
107 low_rate_estimator_.GetJitterEstimate(0)); in TEST_F()
126 int threshold = regular_estimator_.GetJitterEstimate(0) / 2; in TEST_F()
136 if (regular_estimator_.GetJitterEstimate(0) < threshold) { in TEST_F()
[all …]
Djitter_estimator.h53 int GetJitterEstimate(double rttMultiplier);
Djitter_estimator.cc387 int VCMJitterEstimator::GetJitterEstimate(double rttMultiplier) { in GetJitterEstimate() function in webrtc::VCMJitterEstimator
Djitter_buffer.cc923 return jitter_estimate_.GetJitterEstimate(rtt_mult); in EstimatedJitterMs()