| Index: webrtc/video/video_receive_stream.cc
|
| diff --git a/webrtc/video/video_receive_stream.cc b/webrtc/video/video_receive_stream.cc
|
| index 5f2975b1673a7c7d9cf90e6f07a40ca08e96f8f1..1d86617004bc7ac7e7e584546e501c48f677cce2 100644
|
| --- a/webrtc/video/video_receive_stream.cc
|
| +++ b/webrtc/video/video_receive_stream.cc
|
| @@ -159,30 +159,20 @@ VideoReceiveStream::VideoReceiveStream(
|
| congestion_controller_(congestion_controller),
|
| call_stats_(call_stats),
|
| remb_(remb),
|
| - vcm_(VideoCodingModule::Create(clock_,
|
| - nullptr,
|
| - nullptr,
|
| - this,
|
| - this)),
|
| + vcm_(VideoCodingModule::Create(clock_, nullptr, nullptr, this, this)),
|
| incoming_video_stream_(0, config.disable_prerenderer_smoothing),
|
| stats_proxy_(config_, clock_),
|
| vie_channel_(&transport_adapter_,
|
| process_thread,
|
| - nullptr,
|
| vcm_.get(),
|
| - nullptr,
|
| - nullptr,
|
| - nullptr,
|
| congestion_controller_->GetRemoteBitrateEstimator(
|
| UseSendSideBwe(config_)),
|
| call_stats_->rtcp_rtt_stats(),
|
| congestion_controller_->pacer(),
|
| - congestion_controller_->packet_router(),
|
| - 1,
|
| - false),
|
| + congestion_controller_->packet_router()),
|
| vie_receiver_(vie_channel_.vie_receiver()),
|
| vie_sync_(vcm_.get()),
|
| - rtp_rtcp_(vie_channel_.rtp_rtcp().front()) {
|
| + rtp_rtcp_(vie_channel_.rtp_rtcp()) {
|
| LOG(LS_INFO) << "VideoReceiveStream: " << config_.ToString();
|
|
|
| RTC_DCHECK(process_thread_);
|
|
|