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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 namespace internal { | 110 namespace internal { |
111 VideoSendStream::VideoSendStream( | 111 VideoSendStream::VideoSendStream( |
112 int num_cpu_cores, | 112 int num_cpu_cores, |
113 ProcessThread* module_process_thread, | 113 ProcessThread* module_process_thread, |
114 CallStats* call_stats, | 114 CallStats* call_stats, |
115 CongestionController* congestion_controller, | 115 CongestionController* congestion_controller, |
116 BitrateAllocator* bitrate_allocator, | 116 BitrateAllocator* bitrate_allocator, |
117 const VideoSendStream::Config& config, | 117 const VideoSendStream::Config& config, |
118 const VideoEncoderConfig& encoder_config, | 118 const VideoEncoderConfig& encoder_config, |
119 const std::map<uint32_t, RtpState>& suspended_ssrcs) | 119 const std::map<uint32_t, RtpState>& suspended_ssrcs) |
120 : stats_proxy_(Clock::GetRealTimeClock(), config), | 120 : stats_proxy_(Clock::GetRealTimeClock(), config, encoder_config), |
121 transport_adapter_(config.send_transport), | 121 transport_adapter_(config.send_transport), |
122 encoded_frame_proxy_(config.post_encode_callback), | 122 encoded_frame_proxy_(config.post_encode_callback), |
123 config_(config), | 123 config_(config), |
124 suspended_ssrcs_(suspended_ssrcs), | 124 suspended_ssrcs_(suspended_ssrcs), |
125 module_process_thread_(module_process_thread), | 125 module_process_thread_(module_process_thread), |
126 call_stats_(call_stats), | 126 call_stats_(call_stats), |
127 congestion_controller_(congestion_controller), | 127 congestion_controller_(congestion_controller), |
128 encoder_feedback_(new EncoderStateFeedback()), | 128 encoder_feedback_(new EncoderStateFeedback()), |
129 use_config_bitrate_(true) { | 129 use_config_bitrate_(true) { |
130 LOG(LS_INFO) << "VideoSendStream: " << config_.ToString(); | 130 LOG(LS_INFO) << "VideoSendStream: " << config_.ToString(); |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 | 428 |
429 if (!SetSendCodec(video_codec)) | 429 if (!SetSendCodec(video_codec)) |
430 return false; | 430 return false; |
431 | 431 |
432 // Clear stats for disabled layers. | 432 // Clear stats for disabled layers. |
433 for (size_t i = video_codec.numberOfSimulcastStreams; | 433 for (size_t i = video_codec.numberOfSimulcastStreams; |
434 i < config_.rtp.ssrcs.size(); ++i) { | 434 i < config_.rtp.ssrcs.size(); ++i) { |
435 stats_proxy_.OnInactiveSsrc(config_.rtp.ssrcs[i]); | 435 stats_proxy_.OnInactiveSsrc(config_.rtp.ssrcs[i]); |
436 } | 436 } |
437 | 437 |
| 438 stats_proxy_.SetContentType(config.content_type); |
| 439 |
438 RTC_DCHECK_GE(config.min_transmit_bitrate_bps, 0); | 440 RTC_DCHECK_GE(config.min_transmit_bitrate_bps, 0); |
439 vie_encoder_->SetMinTransmitBitrate(config.min_transmit_bitrate_bps / 1000); | 441 vie_encoder_->SetMinTransmitBitrate(config.min_transmit_bitrate_bps / 1000); |
440 | 442 |
441 encoder_config_ = config; | 443 encoder_config_ = config; |
442 use_config_bitrate_ = false; | 444 use_config_bitrate_ = false; |
443 return true; | 445 return true; |
444 } | 446 } |
445 | 447 |
446 bool VideoSendStream::DeliverRtcp(const uint8_t* packet, size_t length) { | 448 bool VideoSendStream::DeliverRtcp(const uint8_t* packet, size_t length) { |
447 return vie_channel_->ReceivedRTCPPacket(packet, length) == 0; | 449 return vie_channel_->ReceivedRTCPPacket(packet, length) == 0; |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
571 vie_encoder_->SetSsrcs(used_ssrcs); | 573 vie_encoder_->SetSsrcs(used_ssrcs); |
572 | 574 |
573 // Restart the media flow | 575 // Restart the media flow |
574 vie_encoder_->Restart(); | 576 vie_encoder_->Restart(); |
575 | 577 |
576 return true; | 578 return true; |
577 } | 579 } |
578 | 580 |
579 } // namespace internal | 581 } // namespace internal |
580 } // namespace webrtc | 582 } // namespace webrtc |
OLD | NEW |