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

Unified Diff: webrtc/modules/remote_bitrate_estimator/test/bwe.cc

Issue 2999073002: Tweaked version of BBR for WebRTC. (Closed)
Patch Set: Updated according to comments. Created 3 years, 4 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/test/bwe.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe.cc
index 755e59d04b5883266a5b43c317e01ffd78e27131..abc301cfca704d61cf6b5d682c7b8270a8ff9184 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/bwe.cc
+++ b/webrtc/modules/remote_bitrate_estimator/test/bwe.cc
@@ -95,7 +95,7 @@ BweSender* CreateBweSender(BandwidthEstimatorType estimator,
case kNadaEstimator:
return new NadaBweSender(kbps, observer, clock);
case kBbrEstimator:
- return new BbrBweSender(clock);
+ return new BbrBweSender(observer, clock);
case kTcpEstimator:
FALLTHROUGH();
case kNullEstimator:

Powered by Google App Engine
This is Rietveld 408576698