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

Unified Diff: webrtc/call/rampup_tests.cc

Issue 2777333003: Enable trendline experiment and bayesian bitrate estimator experiment by default. (Closed)
Patch Set: Tests passing. Created 3 years, 9 months 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
Index: webrtc/call/rampup_tests.cc
diff --git a/webrtc/call/rampup_tests.cc b/webrtc/call/rampup_tests.cc
index 0a2a7384d8dd7d0ad1eec0a1c68a88ee3b8b939c..9b7dbb828df203a3d3adcacf9a91b0b8433f5d1d 100644
--- a/webrtc/call/rampup_tests.cc
+++ b/webrtc/call/rampup_tests.cc
@@ -25,6 +25,7 @@ static const int kExpectedHighVideoBitrateBps = 80000;
static const int kExpectedHighAudioBitrateBps = 30000;
static const int kLowBandwidthLimitBps = 20000;
static const int kExpectedLowBitrateBps = 20000;
+static const int kUnlimitedCapacityBps = 10000000;
std::vector<uint32_t> GenerateSsrcs(size_t num_streams, uint32_t ssrc_offset) {
std::vector<uint32_t> ssrcs;
@@ -417,8 +418,9 @@ RampUpDownUpTester::RampUpDownUpTester(size_t num_video_streams,
rtx,
red,
report_perf_stats),
- link_rates_({GetHighLinkCapacity(), kLowBandwidthLimitBps / 1000,
- GetHighLinkCapacity(), 0}),
+ link_rates_({GetExpectedHighBitrate() / 1000,
+ kLowBandwidthLimitBps / 1000, kUnlimitedCapacityBps / 1000,
terelius 2017/03/31 11:07:21 Do we really want to use kUnlimitedCapacityBps in
stefan-webrtc 2017/03/31 13:28:44 Done.
+ 0}),
test_state_(kFirstRampup),
next_state_(kTransitionToNextState),
state_start_ms_(clock_->TimeInMilliseconds()),
@@ -488,10 +490,6 @@ int RampUpDownUpTester::GetExpectedHighBitrate() const {
return expected_bitrate_bps;
}
-int RampUpDownUpTester::GetHighLinkCapacity() const {
- return 4 * GetExpectedHighBitrate() / (3 * 1000);
-}
-
size_t RampUpDownUpTester::GetFecBytes() const {
size_t flex_fec_bytes = 0;
if (num_flexfec_streams_ > 0) {

Powered by Google App Engine
This is Rietveld 408576698