Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Unified Diff: webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy_unittest.cc

Issue 2468413009: Revert of Change TWCC send interval to reduce overhead on low BW situations. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy_unittest.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy_unittest.cc b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy_unittest.cc
index 56001d266e924865354c9714cdafe86e16c4f932..9821568260c0cf82e0df7c97821409f162271246 100644
--- a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy_unittest.cc
+++ b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy_unittest.cc
@@ -42,7 +42,7 @@
void Process() {
clock_.AdvanceTimeMilliseconds(
- RemoteEstimatorProxy::kDefaultSendIntervalMs);
+ RemoteEstimatorProxy::kDefaultProcessIntervalMs);
proxy_.Process();
}
@@ -350,35 +350,4 @@
Process();
}
-TEST_F(RemoteEstimatorProxyTest, TimeUntilNextProcessIsZeroBeforeFirstProcess) {
- EXPECT_EQ(0, proxy_.TimeUntilNextProcess());
-}
-
-TEST_F(RemoteEstimatorProxyTest, TimeUntilNextProcessIsDefaultOnUnkownBitrate) {
- Process();
- EXPECT_EQ(RemoteEstimatorProxy::kDefaultSendIntervalMs,
- proxy_.TimeUntilNextProcess());
-}
-
-TEST_F(RemoteEstimatorProxyTest, TimeUntilNextProcessIsMinIntervalOn300kbps) {
- Process();
- proxy_.OnBitrateChanged(300000);
- EXPECT_EQ(RemoteEstimatorProxy::kMinSendIntervalMs,
- proxy_.TimeUntilNextProcess());
-}
-
-TEST_F(RemoteEstimatorProxyTest, TimeUntilNextProcessIsMaxIntervalOn20kbps) {
- Process();
- proxy_.OnBitrateChanged(20000);
- EXPECT_EQ(RemoteEstimatorProxy::kMaxSendIntervalMs,
- proxy_.TimeUntilNextProcess());
-}
-
-TEST_F(RemoteEstimatorProxyTest, TwccReportsUse5PercentOfAvailableBandwidth) {
- Process();
- proxy_.OnBitrateChanged(80000);
- // 80kbps * 0.05 = TwccReportSize(68B * 8b/B) * 1000ms / SendInterval(136ms)
- EXPECT_EQ(136, proxy_.TimeUntilNextProcess());
-}
-
} // namespace webrtc
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698