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

Unified Diff: webrtc/modules/congestion_controller/delay_based_bwe.cc

Issue 2407143002: Remove GetFeedbackInterval in sender side BWE. (Closed)
Patch Set: Responsed to comments Created 3 years, 10 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/modules/congestion_controller/delay_based_bwe.cc
diff --git a/webrtc/modules/congestion_controller/delay_based_bwe.cc b/webrtc/modules/congestion_controller/delay_based_bwe.cc
index 7a20b3eedb4fea1556931d8935c5218591a71a8d..f08f97790f8113358dcdf39ae6beeb8d2a5fe30f 100644
--- a/webrtc/modules/congestion_controller/delay_based_bwe.cc
+++ b/webrtc/modules/congestion_controller/delay_based_bwe.cc
@@ -131,15 +131,21 @@ DelayBasedBwe::BitrateEstimator::BitrateEstimator()
bitrate_estimate_(-1.0f),
bitrate_estimate_var_(50.0f),
old_estimator_(kBitrateWindowMs, 8000),
- in_experiment_(BitrateEstimateExperimentIsEnabled()) {}
+ in_experiment_(BitrateEstimateExperimentIsEnabled()),
+ last_result_was_valid_(false) {}
void DelayBasedBwe::BitrateEstimator::Update(int64_t now_ms, int bytes) {
if (!in_experiment_) {
old_estimator_.Update(bytes, now_ms);
rtc::Optional<uint32_t> rate = old_estimator_.Rate(now_ms);
bitrate_estimate_ = -1.0f;
- if (rate)
+ if (rate) {
bitrate_estimate_ = *rate / 1000.0f;
+ last_result_was_valid_ = true;
+ } else if (last_result_was_valid_) {
+ old_estimator_.Reset();
+ last_result_was_valid_ = false;
+ }
return;
}
int rate_window_ms = kRateWindowMs;
@@ -215,7 +221,6 @@ DelayBasedBwe::DelayBasedBwe(Clock* clock)
trendline_estimator_(),
detector_(),
receiver_incoming_bitrate_(),
- last_update_ms_(-1),
last_seen_packet_ms_(-1),
uma_recorded_(false),
trendline_window_size_(kDefaultTrendlineWindowSize),
@@ -249,9 +254,12 @@ DelayBasedBwe::Result DelayBasedBwe::IncomingPacketFeedbackVector(
Result aggregated_result;
for (const auto& packet_info : packet_feedback_vector) {
Result result = IncomingPacketInfo(packet_info);
- if (result.updated)
- aggregated_result = result;
+ if (result.probe) {
+ aggregated_result.probe = true;
+ aggregated_result.target_bitrate_bps = result.target_bitrate_bps;
+ }
}
+ MaybeUpdateEstimate(&aggregated_result);
terelius 2017/02/08 12:44:45 Yes, I think we should run some tests and/or monit
michaelt 2017/02/08 12:57:11 I'm a bit afraid that if we move the function in t
terelius 2017/02/21 13:51:48 Note that the current version of the code essentia
michaelt 2017/02/21 14:52:43 To me, it is cleaner when we feed the overused def
terelius 2017/02/21 15:10:09 I agree it is cleaner, but the rest of the code is
stefan-webrtc 2017/02/21 15:14:08 I don't think we should run a finch experiment sin
michaelt 2017/02/21 15:27:56 Sounds ok to me.
michaelt 2017/02/22 09:40:48 Done.
return aggregated_result;
}
@@ -313,46 +321,40 @@ DelayBasedBwe::Result DelayBasedBwe::IncomingPacketInfo(
}
}
- int probing_bps = 0;
if (info.probe_cluster_id != PacketInfo::kNotAProbe) {
- probing_bps = probe_bitrate_estimator_.HandleProbeAndEstimateBitrate(info);
+ int probing_bps =
+ probe_bitrate_estimator_.HandleProbeAndEstimateBitrate(info);
+ if (probing_bps > 0) {
+ result.target_bitrate_bps = probing_bps;
+ result.probe = true;
+ }
}
+
+ return result;
+}
+
+void DelayBasedBwe::MaybeUpdateEstimate(Result* result) {
+ RTC_DCHECK(result);
rtc::Optional<uint32_t> acked_bitrate_bps =
receiver_incoming_bitrate_.bitrate_bps();
+ int64_t now_ms = clock_->TimeInMilliseconds();
// Currently overusing the bandwidth.
if (detector_.State() == kBwOverusing) {
if (acked_bitrate_bps &&
rate_control_.TimeToReduceFurther(now_ms, *acked_bitrate_bps)) {
- result.updated =
- UpdateEstimate(info.arrival_time_ms, now_ms, acked_bitrate_bps,
- &result.target_bitrate_bps);
+ result->updated = UpdateEstimate(now_ms, acked_bitrate_bps,
+ &result->target_bitrate_bps);
}
- } else if (probing_bps > 0) {
- // No overuse, but probing measured a bitrate.
- rate_control_.SetEstimate(probing_bps, info.arrival_time_ms);
- result.probe = true;
- result.updated =
- UpdateEstimate(info.arrival_time_ms, now_ms, acked_bitrate_bps,
- &result.target_bitrate_bps);
- }
- if (!result.updated &&
- (last_update_ms_ == -1 ||
- now_ms - last_update_ms_ > rate_control_.GetFeedbackInterval())) {
- result.updated =
- UpdateEstimate(info.arrival_time_ms, now_ms, acked_bitrate_bps,
- &result.target_bitrate_bps);
- }
- if (result.updated) {
- last_update_ms_ = now_ms;
- BWE_TEST_LOGGING_PLOT(1, "target_bitrate_bps", now_ms,
- result.target_bitrate_bps);
+ } else {
+ if (result->probe) {
+ rate_control_.SetEstimate(result->target_bitrate_bps, now_ms);
+ }
+ result->updated =
+ UpdateEstimate(now_ms, acked_bitrate_bps, &result->target_bitrate_bps);
}
-
- return result;
}
-bool DelayBasedBwe::UpdateEstimate(int64_t arrival_time_ms,
- int64_t now_ms,
+bool DelayBasedBwe::UpdateEstimate(int64_t now_ms,
rtc::Optional<uint32_t> acked_bitrate_bps,
uint32_t* target_bitrate_bps) {
// TODO(terelius): RateControlInput::noise_var is deprecated and will be
@@ -360,6 +362,7 @@ bool DelayBasedBwe::UpdateEstimate(int64_t arrival_time_ms,
const RateControlInput input(detector_.State(), acked_bitrate_bps, 0);
rate_control_.Update(&input, now_ms);
*target_bitrate_bps = rate_control_.UpdateBandwidthEstimate(now_ms);
+ BWE_TEST_LOGGING_PLOT(1, "target_bitrate_bps", now_ms, *target_bitrate_bps);
return rate_control_.ValidEstimate();
}

Powered by Google App Engine
This is Rietveld 408576698