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

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

Issue 2628563003: Propagate packet pacing information to SenTimeHistory (Closed)
Patch Set: . Created 3 years, 11 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 6338f9646f998db7cd0b77585a949eed06f19d2e..9259f012970fe01f9cf020d8fdf8a8d988c3bc3c 100644
--- a/webrtc/modules/congestion_controller/delay_based_bwe.cc
+++ b/webrtc/modules/congestion_controller/delay_based_bwe.cc
@@ -392,4 +392,12 @@ void DelayBasedBwe::SetMinBitrate(int min_bitrate_bps) {
int64_t DelayBasedBwe::GetProbingIntervalMs() const {
return probing_interval_estimator_.GetIntervalMs();
}
+
+void DelayBasedBwe::OnProbingClusterCreated(int cluster_id,
+ int min_bytes,
+ int min_probes) {
+ probe_bitrate_estimator_.OnProbingClusterCreated(cluster_id, min_bytes,
+ min_probes);
+}
+
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698