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

Unified Diff: webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc

Issue 1738763002: Remove DCHECK on duplicate packets in RemoteEstimatorProxy. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
index 51f93f96ce88a1ceeded24bb3b743d00c80c3cfc..eace9fc8b0a825b69a754706a217d5812cdc61b5 100644
--- a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
+++ b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
@@ -106,7 +106,9 @@ void RemoteEstimatorProxy::OnPacketArrival(uint16_t sequence_number,
window_start_seq_ = seq;
}
- RTC_DCHECK(packet_arrival_times_.end() == packet_arrival_times_.find(seq));
+ // We are only interested in the first time a packet is received.
sprang_webrtc 2016/02/25 10:40:35 Note that the same sequence can appear again in th
+ if (packet_arrival_times_.find(seq) != packet_arrival_times_.end())
+ return;
packet_arrival_times_[seq] = arrival_time;
}
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698