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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 clock_(Clock::GetRealTimeClock()), | 157 clock_(Clock::GetRealTimeClock()), |
158 decode_thread_(DecodeThreadFunction, this, "DecodingThread"), | 158 decode_thread_(DecodeThreadFunction, this, "DecodingThread"), |
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_(0, config.disable_prerenderer_smoothing), |
168 0, | |
169 config.renderer ? config.renderer->SmoothsRenderedFrames() : false), | |
170 stats_proxy_(config_, clock_), | 168 stats_proxy_(config_, clock_), |
171 vie_channel_(&transport_adapter_, | 169 vie_channel_(&transport_adapter_, |
172 process_thread, | 170 process_thread, |
173 nullptr, | 171 nullptr, |
174 vcm_.get(), | 172 vcm_.get(), |
175 nullptr, | 173 nullptr, |
176 nullptr, | 174 nullptr, |
177 nullptr, | 175 nullptr, |
178 congestion_controller_->GetRemoteBitrateEstimator( | 176 congestion_controller_->GetRemoteBitrateEstimator( |
179 UseSendSideBwe(config_)), | 177 UseSendSideBwe(config_)), |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 const std::vector<uint16_t>& sequence_numbers) { | 428 const std::vector<uint16_t>& sequence_numbers) { |
431 rtp_rtcp_->SendNack(sequence_numbers); | 429 rtp_rtcp_->SendNack(sequence_numbers); |
432 } | 430 } |
433 | 431 |
434 void VideoReceiveStream::RequestKeyFrame() { | 432 void VideoReceiveStream::RequestKeyFrame() { |
435 rtp_rtcp_->RequestKeyFrame(); | 433 rtp_rtcp_->RequestKeyFrame(); |
436 } | 434 } |
437 | 435 |
438 } // namespace internal | 436 } // namespace internal |
439 } // namespace webrtc | 437 } // namespace webrtc |
OLD | NEW |