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

Unified Diff: webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp.cc

Issue 2126793002: Reset InterArrival if arrival time clock makes a jump. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Cleanup Created 4 years, 5 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/remote_bitrate_estimator/tools/bwe_rtp.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp.cc b/webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp.cc
index 7ae6ede363eee66019ebc367f517a460b768f08d..2b2e2653d658e9b4ccfb05a510be1ebbd60d8a46 100644
--- a/webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp.cc
+++ b/webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp.cc
@@ -117,9 +117,9 @@ bool ParseArgsAndSetupEstimator(int argc,
switch (extension) {
case webrtc::kRtpExtensionAbsoluteSendTime: {
*estimator =
- new webrtc::RemoteBitrateEstimatorAbsSendTime(observer);
- *estimator_used = "AbsoluteSendTimeRemoteBitrateEstimator";
- break;
+ new webrtc::RemoteBitrateEstimatorAbsSendTime(observer, clock);
+ *estimator_used = "AbsoluteSendTimeRemoteBitrateEstimator";
+ break;
}
case webrtc::kRtpExtensionTransmissionTimeOffset: {
*estimator =

Powered by Google App Engine
This is Rietveld 408576698