Index: webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc |
diff --git a/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc b/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc |
index f7418c1025a1589ee9545dcf94622eae9693ac47..18a143bbe22b8a000b4d179798583437517b8c6c 100644 |
--- a/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc |
+++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc |
@@ -21,7 +21,8 @@ namespace bwe { |
const int kFeedbackIntervalMs = 50; |
FullBweSender::FullBweSender(int kbps, BitrateObserver* observer, Clock* clock) |
- : bitrate_controller_( |
+ : pacer_(clock, nullptr, 0), |
+ bitrate_controller_( |
BitrateController::CreateBitrateController(clock, observer, &pacer_)), |
stefan-webrtc
2016/05/02 10:56:30
This isn't the correct pacer if a PacedVideoSender
|
rbe_(new RemoteBitrateEstimatorAbsSendTime(this)), |
feedback_observer_(bitrate_controller_->CreateRtcpBandwidthObserver()), |