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

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

Issue 2224173003: Probe bitrate estimator correction. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Feedback fixes Created 4 years, 4 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/probe_bitrate_estimator.cc
diff --git a/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc b/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc
index 4a6362529157543297de7a4f868783af675068b9..561fde939180b74e0cad8b606952487c984eabbd 100644
--- a/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc
+++ b/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc
@@ -32,6 +32,10 @@ ProbingResult::ProbingResult() : bps(kNoEstimate), timestamp(0) {}
ProbingResult::ProbingResult(int bps, int64_t timestamp)
: bps(bps), timestamp(timestamp) {}
+bool ProbingResult::valid() const {
+ return bps != kNoEstimate;
+}
+
ProbeBitrateEstimator::ProbeBitrateEstimator() : last_valid_cluster_id_(0) {}
ProbingResult ProbeBitrateEstimator::PacketFeedback(
@@ -52,7 +56,7 @@ ProbingResult ProbeBitrateEstimator::PacketFeedback(
std::min(cluster->first_receive_ms, packet_info.arrival_time_ms);
cluster->last_receive_ms =
std::max(cluster->last_receive_ms, packet_info.arrival_time_ms);
- cluster->size += packet_info.payload_size;
+ cluster->size += packet_info.payload_size * 8;
cluster->num_probes += 1;
// Clean up old clusters.
@@ -62,10 +66,18 @@ ProbingResult ProbeBitrateEstimator::PacketFeedback(
if (cluster->num_probes < kMinNumProbesValidCluster)
return ProbingResult();
- int send_interval_ms = cluster->last_send_ms - cluster->first_send_ms;
- int receive_interval_ms =
+ float send_interval_ms = cluster->last_send_ms - cluster->first_send_ms;
+ float receive_interval_ms =
cluster->last_receive_ms - cluster->first_receive_ms;
+ // Since the send/receive interval does not include the send/receive time of
+ // the last/first packet we expand the interval by the average inverval
+ // between the probing packets.
+ float interval_correction =
+ static_cast<float>(cluster->num_probes) / (cluster->num_probes - 1);
+ send_interval_ms *= interval_correction;
+ receive_interval_ms *= interval_correction;
+
if (send_interval_ms == 0 || receive_interval_ms == 0) {
LOG(LS_INFO) << "Probing unsuccessful, invalid send/receive interval"
<< " [cluster id: " << packet_info.probe_cluster_id
@@ -74,7 +86,6 @@ ProbingResult ProbeBitrateEstimator::PacketFeedback(
return ProbingResult();
}
-
float send_bps = static_cast<float>(cluster->size) / send_interval_ms * 1000;
float receive_bps =
static_cast<float>(cluster->size) / receive_interval_ms * 1000;

Powered by Google App Engine
This is Rietveld 408576698