Index: webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc |
diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc |
index 5bd0627afe15485bba34cbbfae1521d3f36b1f39..8ad60aea65aff66f3a0856b94bad65ed280285e5 100644 |
--- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc |
+++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc |
@@ -176,8 +176,7 @@ RemoteBitrateEstimatorAbsSendTime::ProcessClusters(int64_t now_ms) { |
std::min(best_it->GetSendBitrateBps(), best_it->GetRecvBitrateBps()); |
// Make sure that a probe sent on a lower bitrate than our estimate can't |
// reduce the estimate. |
- if (IsBitrateImproving(probe_bitrate_bps) && |
- probe_bitrate_bps > static_cast<int>(incoming_bitrate_.Rate(now_ms))) { |
+ if (IsBitrateImproving(probe_bitrate_bps)) { |
LOG(LS_INFO) << "Probe successful, sent at " |
<< best_it->GetSendBitrateBps() << " bps, received at " |
<< best_it->GetRecvBitrateBps() |