Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 159 congestion_controller_(congestion_controller), | 159 congestion_controller_(congestion_controller), |
| 160 call_stats_(call_stats), | 160 call_stats_(call_stats), |
| 161 remb_(remb), | 161 remb_(remb), |
| 162 vcm_(VideoCodingModule::Create(clock_, | 162 vcm_(VideoCodingModule::Create(clock_, |
| 163 nullptr, | 163 nullptr, |
| 164 nullptr, | 164 nullptr, |
| 165 this, | 165 this, |
| 166 this)), | 166 this)), |
| 167 incoming_video_stream_( | 167 incoming_video_stream_( |
| 168 0, | 168 0, |
| 169 config.renderer ? config.renderer->SmoothsRenderedFrames() : false), | 169 config.renderer ? config.disable_prerenderer_smoothing : false), |
|
pbos-webrtc
2016/03/21 16:53:35
I think you can remove this conditional now
nisse-webrtc
2016/03/22 07:45:31
Done.
| |
| 170 stats_proxy_(config_, clock_), | 170 stats_proxy_(config_, clock_), |
| 171 vie_channel_(&transport_adapter_, | 171 vie_channel_(&transport_adapter_, |
| 172 process_thread, | 172 process_thread, |
| 173 nullptr, | 173 nullptr, |
| 174 vcm_.get(), | 174 vcm_.get(), |
| 175 nullptr, | 175 nullptr, |
| 176 nullptr, | 176 nullptr, |
| 177 nullptr, | 177 nullptr, |
| 178 congestion_controller_->GetRemoteBitrateEstimator( | 178 congestion_controller_->GetRemoteBitrateEstimator( |
| 179 UseSendSideBwe(config_)), | 179 UseSendSideBwe(config_)), |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 430 const std::vector<uint16_t>& sequence_numbers) { | 430 const std::vector<uint16_t>& sequence_numbers) { |
| 431 rtp_rtcp_->SendNack(sequence_numbers); | 431 rtp_rtcp_->SendNack(sequence_numbers); |
| 432 } | 432 } |
| 433 | 433 |
| 434 void VideoReceiveStream::RequestKeyFrame() { | 434 void VideoReceiveStream::RequestKeyFrame() { |
| 435 rtp_rtcp_->RequestKeyFrame(); | 435 rtp_rtcp_->RequestKeyFrame(); |
| 436 } | 436 } |
| 437 | 437 |
| 438 } // namespace internal | 438 } // namespace internal |
| 439 } // namespace webrtc | 439 } // namespace webrtc |
| OLD | NEW |