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 c69bd1a429da5b0eb3e867644d4eaf5b97706cf1..875d1820abe1db973e903c262b1a0744e1028ec6 100644 |
--- a/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc |
+++ b/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc |
@@ -115,6 +115,12 @@ int ProbeBitrateEstimator::HandleProbeAndEstimateBitrate( |
return std::min(send_bps, receive_bps); |
} |
+void ProbeBitrateEstimator::OnProbingClusterCreated(int cluster_id, |
+ int min_bytes, |
+ int min_probes) { |
+ // TODO(philipel): Use this info to make better estimates. |
+} |
+ |
void ProbeBitrateEstimator::EraseOldClusters(int64_t timestamp_ms) { |
for (auto it = clusters_.begin(); it != clusters_.end();) { |
if (it->second.last_receive_ms < timestamp_ms) { |