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 |
11 #include "webrtc/video/video_receive_stream.h" | 11 #include "webrtc/video/video_receive_stream.h" |
12 | 12 |
13 #include <stdlib.h> | 13 #include <stdlib.h> |
14 | 14 |
15 #include <set> | 15 #include <set> |
16 #include <string> | 16 #include <string> |
17 #include <utility> | 17 #include <utility> |
18 | 18 |
19 #include "webrtc/base/checks.h" | 19 #include "webrtc/base/checks.h" |
20 #include "webrtc/base/logging.h" | 20 #include "webrtc/base/logging.h" |
21 #include "webrtc/base/optional.h" | 21 #include "webrtc/base/optional.h" |
22 #include "webrtc/common_video/h264/profile_level_id.h" | 22 #include "webrtc/common_video/h264/profile_level_id.h" |
23 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 23 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
24 #include "webrtc/modules/congestion_controller/include/congestion_controller.h" | 24 #include "webrtc/modules/congestion_controller/include/congestion_controller.h" |
| 25 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" |
25 #include "webrtc/modules/utility/include/process_thread.h" | 26 #include "webrtc/modules/utility/include/process_thread.h" |
26 #include "webrtc/modules/video_coding/frame_object.h" | 27 #include "webrtc/modules/video_coding/frame_object.h" |
27 #include "webrtc/modules/video_coding/include/video_coding.h" | 28 #include "webrtc/modules/video_coding/include/video_coding.h" |
28 #include "webrtc/modules/video_coding/jitter_estimator.h" | 29 #include "webrtc/modules/video_coding/jitter_estimator.h" |
29 #include "webrtc/modules/video_coding/timing.h" | 30 #include "webrtc/modules/video_coding/timing.h" |
30 #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" | 31 #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" |
31 #include "webrtc/system_wrappers/include/clock.h" | 32 #include "webrtc/system_wrappers/include/clock.h" |
32 #include "webrtc/system_wrappers/include/field_trial.h" | 33 #include "webrtc/system_wrappers/include/field_trial.h" |
33 #include "webrtc/video/call_stats.h" | 34 #include "webrtc/video/call_stats.h" |
34 #include "webrtc/video/receive_statistics_proxy.h" | 35 #include "webrtc/video/receive_statistics_proxy.h" |
35 #include "webrtc/video_receive_stream.h" | 36 #include "webrtc/video_receive_stream.h" |
36 #include "webrtc/voice_engine/include/voe_video_sync.h" | 37 #include "webrtc/voice_engine/include/voe_video_sync.h" |
37 | 38 |
38 namespace webrtc { | 39 namespace webrtc { |
39 | 40 |
40 static bool UseSendSideBwe(const VideoReceiveStream::Config& config) { | |
41 if (!config.rtp.transport_cc) | |
42 return false; | |
43 for (const auto& extension : config.rtp.extensions) { | |
44 if (extension.uri == RtpExtension::kTransportSequenceNumberUri) | |
45 return true; | |
46 } | |
47 return false; | |
48 } | |
49 | |
50 std::string VideoReceiveStream::Decoder::ToString() const { | 41 std::string VideoReceiveStream::Decoder::ToString() const { |
51 std::stringstream ss; | 42 std::stringstream ss; |
52 ss << "{decoder: " << (decoder ? "(VideoDecoder)" : "nullptr"); | 43 ss << "{decoder: " << (decoder ? "(VideoDecoder)" : "nullptr"); |
53 ss << ", payload_type: " << payload_type; | 44 ss << ", payload_type: " << payload_type; |
54 ss << ", payload_name: " << payload_name; | 45 ss << ", payload_name: " << payload_name; |
55 ss << ", codec_params: {"; | 46 ss << ", codec_params: {"; |
56 for (const auto& it : codec_params) | 47 for (const auto& it : codec_params) |
57 ss << it.first << ": " << it.second; | 48 ss << it.first << ": " << it.second; |
58 ss << '}'; | 49 ss << '}'; |
59 ss << '}'; | 50 ss << '}'; |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 clock_(Clock::GetRealTimeClock()), | 193 clock_(Clock::GetRealTimeClock()), |
203 decode_thread_(DecodeThreadFunction, this, "DecodingThread"), | 194 decode_thread_(DecodeThreadFunction, this, "DecodingThread"), |
204 congestion_controller_(congestion_controller), | 195 congestion_controller_(congestion_controller), |
205 call_stats_(call_stats), | 196 call_stats_(call_stats), |
206 video_receiver_(clock_, nullptr, this, this, this), | 197 video_receiver_(clock_, nullptr, this, this, this), |
207 stats_proxy_(&config_, clock_), | 198 stats_proxy_(&config_, clock_), |
208 timing_(new VCMTiming(clock_)), | 199 timing_(new VCMTiming(clock_)), |
209 rtp_stream_receiver_( | 200 rtp_stream_receiver_( |
210 &video_receiver_, | 201 &video_receiver_, |
211 congestion_controller_->GetRemoteBitrateEstimator( | 202 congestion_controller_->GetRemoteBitrateEstimator( |
212 UseSendSideBwe(config_)), | 203 CongestionController::UseSendSideBwe( |
| 204 config_.rtp.transport_cc, |
| 205 RtpHeaderExtensionMap(config_.rtp.extensions))), |
213 &transport_adapter_, | 206 &transport_adapter_, |
214 call_stats_->rtcp_rtt_stats(), | 207 call_stats_->rtcp_rtt_stats(), |
215 congestion_controller_->pacer(), | 208 congestion_controller_->pacer(), |
216 packet_router, | 209 packet_router, |
217 remb, | 210 remb, |
218 &config_, | 211 &config_, |
219 &stats_proxy_, | 212 &stats_proxy_, |
220 process_thread_, | 213 process_thread_, |
221 congestion_controller_->GetRetransmissionRateLimiter(), | 214 congestion_controller_->GetRetransmissionRateLimiter(), |
222 this, // NackSender | 215 this, // NackSender |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 process_thread_->RegisterModule(&rtp_stream_sync_); | 249 process_thread_->RegisterModule(&rtp_stream_sync_); |
257 } | 250 } |
258 | 251 |
259 VideoReceiveStream::~VideoReceiveStream() { | 252 VideoReceiveStream::~VideoReceiveStream() { |
260 LOG(LS_INFO) << "~VideoReceiveStream: " << config_.ToString(); | 253 LOG(LS_INFO) << "~VideoReceiveStream: " << config_.ToString(); |
261 Stop(); | 254 Stop(); |
262 | 255 |
263 process_thread_->DeRegisterModule(&rtp_stream_sync_); | 256 process_thread_->DeRegisterModule(&rtp_stream_sync_); |
264 process_thread_->DeRegisterModule(&video_receiver_); | 257 process_thread_->DeRegisterModule(&video_receiver_); |
265 | 258 |
266 congestion_controller_->GetRemoteBitrateEstimator(UseSendSideBwe(config_)) | 259 congestion_controller_ |
| 260 ->GetRemoteBitrateEstimator(CongestionController::UseSendSideBwe( |
| 261 config_.rtp.transport_cc, |
| 262 RtpHeaderExtensionMap(config_.rtp.extensions))) |
267 ->RemoveStream(rtp_stream_receiver_.GetRemoteSsrc()); | 263 ->RemoveStream(rtp_stream_receiver_.GetRemoteSsrc()); |
268 } | 264 } |
269 | 265 |
270 void VideoReceiveStream::SignalNetworkState(NetworkState state) { | 266 void VideoReceiveStream::SignalNetworkState(NetworkState state) { |
271 rtp_stream_receiver_.SignalNetworkState(state); | 267 rtp_stream_receiver_.SignalNetworkState(state); |
272 } | 268 } |
273 | 269 |
274 | 270 |
275 bool VideoReceiveStream::DeliverRtcp(const uint8_t* packet, size_t length) { | 271 bool VideoReceiveStream::DeliverRtcp(const uint8_t* packet, size_t length) { |
276 return rtp_stream_receiver_.DeliverRtcp(packet, length); | 272 return rtp_stream_receiver_.DeliverRtcp(packet, length); |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 RequestKeyFrame(); | 482 RequestKeyFrame(); |
487 } | 483 } |
488 } | 484 } |
489 | 485 |
490 void VideoReceiveStream::RequestKeyFrame() { | 486 void VideoReceiveStream::RequestKeyFrame() { |
491 rtp_stream_receiver_.RequestKeyFrame(); | 487 rtp_stream_receiver_.RequestKeyFrame(); |
492 } | 488 } |
493 | 489 |
494 } // namespace internal | 490 } // namespace internal |
495 } // namespace webrtc | 491 } // namespace webrtc |
OLD | NEW |