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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 nullptr, | 171 nullptr, |
172 nullptr, | 172 nullptr, |
173 congestion_controller_->GetRemoteBitrateEstimator( | 173 congestion_controller_->GetRemoteBitrateEstimator( |
174 UseSendSideBwe(config_)), | 174 UseSendSideBwe(config_)), |
175 call_stats_->rtcp_rtt_stats(), | 175 call_stats_->rtcp_rtt_stats(), |
176 congestion_controller_->pacer(), | 176 congestion_controller_->pacer(), |
177 congestion_controller_->packet_router(), | 177 congestion_controller_->packet_router(), |
178 1, | 178 1, |
179 false), | 179 false), |
180 vie_receiver_(vie_channel_.vie_receiver()), | 180 vie_receiver_(vie_channel_.vie_receiver()), |
181 rtp_rtcp_(vie_channel_.rtp_rtcp()) { | 181 rtp_rtcp_(vie_channel_.rtp_rtcp().front()) { |
182 LOG(LS_INFO) << "VideoReceiveStream: " << config_.ToString(); | 182 LOG(LS_INFO) << "VideoReceiveStream: " << config_.ToString(); |
183 | 183 |
184 RTC_DCHECK(process_thread_); | 184 RTC_DCHECK(process_thread_); |
185 RTC_DCHECK(congestion_controller_); | 185 RTC_DCHECK(congestion_controller_); |
186 RTC_DCHECK(call_stats_); | 186 RTC_DCHECK(call_stats_); |
187 RTC_DCHECK(remb_); | 187 RTC_DCHECK(remb_); |
188 RTC_CHECK(vie_channel_.Init() == 0); | 188 RTC_CHECK(vie_channel_.Init() == 0); |
189 | 189 |
190 // Register the channel to receive stats updates. | 190 // Register the channel to receive stats updates. |
191 call_stats_->RegisterStatsObserver(vie_channel_.GetStatsObserver()); | 191 call_stats_->RegisterStatsObserver(vie_channel_.GetStatsObserver()); |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 return true; | 416 return true; |
417 } | 417 } |
418 | 418 |
419 void VideoReceiveStream::Decode() { | 419 void VideoReceiveStream::Decode() { |
420 static const int kMaxDecodeWaitTimeMs = 50; | 420 static const int kMaxDecodeWaitTimeMs = 50; |
421 vcm_->Decode(kMaxDecodeWaitTimeMs); | 421 vcm_->Decode(kMaxDecodeWaitTimeMs); |
422 } | 422 } |
423 | 423 |
424 } // namespace internal | 424 } // namespace internal |
425 } // namespace webrtc | 425 } // namespace webrtc |
OLD | NEW |