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

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

Issue 2340763004: Add AlrDetector (Closed)
Patch Set: Addressed comments Created 4 years, 3 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/packet_sender.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/test/packet_sender.cc b/webrtc/modules/remote_bitrate_estimator/test/packet_sender.cc
index 06fbc6e91323c162680b77e31bbfb8bd57112e3f..47e7ba8b26e6f7ee31bae2af4fe372d1b5639db6 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/packet_sender.cc
+++ b/webrtc/modules/remote_bitrate_estimator/test/packet_sender.cc
@@ -156,8 +156,7 @@ uint32_t VideoSender::TargetBitrateKbps() {
PacedVideoSender::PacedVideoSender(PacketProcessorListener* listener,
VideoSource* source,
BandwidthEstimatorType estimator)
- : VideoSender(listener, source, estimator),
- pacer_(&clock_, this) {
+ : VideoSender(listener, source, estimator), pacer_(&clock_, this, nullptr) {
modules_.push_back(&pacer_);
pacer_.SetEstimatedBitrate(source->bits_per_second());
}

Powered by Google App Engine
This is Rietveld 408576698