niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
leozwang@webrtc.org | 39e9659 | 2012-03-01 18:22:48 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #include "video/rtp_video_stream_receiver.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 12 | |
philipel | 7acc4a4 | 2019-09-26 11:25:52 +0200 | [diff] [blame] | 13 | #include <algorithm> |
| 14 | #include <limits> |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 15 | #include <utility> |
ilnik | 04f4d12 | 2017-06-19 07:18:55 -0700 | [diff] [blame] | 16 | #include <vector> |
mflodman@webrtc.org | 4fd5527 | 2013-02-06 17:46:39 +0000 | [diff] [blame] | 17 | |
Steve Anton | bd631a0 | 2019-03-28 10:51:27 -0700 | [diff] [blame] | 18 | #include "absl/algorithm/container.h" |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 19 | #include "absl/memory/memory.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 20 | #include "media/base/media_constants.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 21 | #include "modules/pacing/packet_router.h" |
| 22 | #include "modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" |
| 23 | #include "modules/rtp_rtcp/include/receive_statistics.h" |
| 24 | #include "modules/rtp_rtcp/include/rtp_cvo.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 25 | #include "modules/rtp_rtcp/include/rtp_rtcp.h" |
| 26 | #include "modules/rtp_rtcp/include/ulpfec_receiver.h" |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 27 | #include "modules/rtp_rtcp/source/rtp_format.h" |
philipel | b3e42a4 | 2018-09-13 10:57:14 +0200 | [diff] [blame] | 28 | #include "modules/rtp_rtcp/source/rtp_generic_frame_descriptor_extension.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 29 | #include "modules/rtp_rtcp/source/rtp_header_extensions.h" |
| 30 | #include "modules/rtp_rtcp/source/rtp_packet_received.h" |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 31 | #include "modules/rtp_rtcp/source/rtp_rtcp_config.h" |
Niels Möller | fe407b7 | 2019-09-10 10:48:48 +0200 | [diff] [blame] | 32 | #include "modules/utility/include/process_thread.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 33 | #include "modules/video_coding/frame_object.h" |
| 34 | #include "modules/video_coding/h264_sprop_parameter_sets.h" |
| 35 | #include "modules/video_coding/h264_sps_pps_tracker.h" |
Ilya Nikolaevskiy | 8643b78 | 2018-06-07 16:15:40 +0200 | [diff] [blame] | 36 | #include "modules/video_coding/nack_module.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 37 | #include "modules/video_coding/packet_buffer.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 38 | #include "rtc_base/checks.h" |
| 39 | #include "rtc_base/location.h" |
| 40 | #include "rtc_base/logging.h" |
Jonas Olsson | 366a50c | 2018-09-06 13:41:30 +0200 | [diff] [blame] | 41 | #include "rtc_base/strings/string_builder.h" |
Karl Wiberg | 80ba333 | 2018-02-05 10:33:35 +0100 | [diff] [blame] | 42 | #include "rtc_base/system/fallthrough.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 43 | #include "system_wrappers/include/field_trial.h" |
| 44 | #include "system_wrappers/include/metrics.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 45 | #include "video/receive_statistics_proxy.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 46 | |
| 47 | namespace webrtc { |
| 48 | |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 49 | namespace { |
philipel | 3bf97cf | 2017-08-10 18:10:59 +0200 | [diff] [blame] | 50 | // TODO(philipel): Change kPacketBufferStartSize back to 32 in M63 see: |
| 51 | // crbug.com/752886 |
| 52 | constexpr int kPacketBufferStartSize = 512; |
Johannes Kron | 201596f | 2018-10-22 14:33:39 +0200 | [diff] [blame] | 53 | constexpr int kPacketBufferMaxSize = 2048; |
Danil Chapovalov | f7457e5 | 2019-09-20 17:57:15 +0200 | [diff] [blame] | 54 | |
| 55 | int PacketBufferMaxSize() { |
| 56 | // The group here must be a positive power of 2, in which case that is used as |
| 57 | // size. All other values shall result in the default value being used. |
| 58 | const std::string group_name = |
| 59 | webrtc::field_trial::FindFullName("WebRTC-PacketBufferMaxSize"); |
| 60 | int packet_buffer_max_size = kPacketBufferMaxSize; |
| 61 | if (!group_name.empty() && |
| 62 | (sscanf(group_name.c_str(), "%d", &packet_buffer_max_size) != 1 || |
| 63 | packet_buffer_max_size <= 0 || |
| 64 | // Verify that the number is a positive power of 2. |
| 65 | (packet_buffer_max_size & (packet_buffer_max_size - 1)) != 0)) { |
| 66 | RTC_LOG(LS_WARNING) << "Invalid packet buffer max size: " << group_name; |
| 67 | packet_buffer_max_size = kPacketBufferMaxSize; |
| 68 | } |
| 69 | return packet_buffer_max_size; |
| 70 | } |
| 71 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 72 | } // namespace |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 73 | |
mflodman | c0e58a3 | 2016-04-25 01:26:26 -0700 | [diff] [blame] | 74 | std::unique_ptr<RtpRtcp> CreateRtpRtcpModule( |
Sebastian Jansson | 8026d60 | 2019-03-04 19:39:01 +0100 | [diff] [blame] | 75 | Clock* clock, |
mflodman | c0e58a3 | 2016-04-25 01:26:26 -0700 | [diff] [blame] | 76 | ReceiveStatistics* receive_statistics, |
| 77 | Transport* outgoing_transport, |
| 78 | RtcpRttStats* rtt_stats, |
Erik Språng | e3a10e1 | 2019-08-19 15:45:00 +0200 | [diff] [blame] | 79 | RtcpPacketTypeCounterObserver* rtcp_packet_type_counter_observer, |
| 80 | uint32_t local_ssrc) { |
mflodman | c0e58a3 | 2016-04-25 01:26:26 -0700 | [diff] [blame] | 81 | RtpRtcp::Configuration configuration; |
Sebastian Jansson | 8026d60 | 2019-03-04 19:39:01 +0100 | [diff] [blame] | 82 | configuration.clock = clock; |
mflodman | c0e58a3 | 2016-04-25 01:26:26 -0700 | [diff] [blame] | 83 | configuration.audio = false; |
| 84 | configuration.receiver_only = true; |
| 85 | configuration.receive_statistics = receive_statistics; |
| 86 | configuration.outgoing_transport = outgoing_transport; |
mflodman | c0e58a3 | 2016-04-25 01:26:26 -0700 | [diff] [blame] | 87 | configuration.rtt_stats = rtt_stats; |
| 88 | configuration.rtcp_packet_type_counter_observer = |
| 89 | rtcp_packet_type_counter_observer; |
Erik Språng | 54d5d2c | 2019-08-20 17:22:36 +0200 | [diff] [blame] | 90 | configuration.local_media_ssrc = local_ssrc; |
mflodman | c0e58a3 | 2016-04-25 01:26:26 -0700 | [diff] [blame] | 91 | |
Danil Chapovalov | c44f6cc | 2019-03-06 11:31:09 +0100 | [diff] [blame] | 92 | std::unique_ptr<RtpRtcp> rtp_rtcp = RtpRtcp::Create(configuration); |
mflodman | c0e58a3 | 2016-04-25 01:26:26 -0700 | [diff] [blame] | 93 | rtp_rtcp->SetRTCPStatus(RtcpMode::kCompound); |
| 94 | |
| 95 | return rtp_rtcp; |
| 96 | } |
| 97 | |
stefan@webrtc.org | eb24b04 | 2014-10-14 11:40:13 +0000 | [diff] [blame] | 98 | static const int kPacketLogIntervalMs = 10000; |
| 99 | |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 100 | RtpVideoStreamReceiver::RtcpFeedbackBuffer::RtcpFeedbackBuffer( |
| 101 | KeyFrameRequestSender* key_frame_request_sender, |
| 102 | NackSender* nack_sender, |
| 103 | LossNotificationSender* loss_notification_sender) |
| 104 | : key_frame_request_sender_(key_frame_request_sender), |
| 105 | nack_sender_(nack_sender), |
| 106 | loss_notification_sender_(loss_notification_sender), |
| 107 | request_key_frame_(false) { |
| 108 | RTC_DCHECK(key_frame_request_sender_); |
| 109 | RTC_DCHECK(nack_sender_); |
| 110 | RTC_DCHECK(loss_notification_sender_); |
| 111 | } |
| 112 | |
| 113 | void RtpVideoStreamReceiver::RtcpFeedbackBuffer::RequestKeyFrame() { |
| 114 | rtc::CritScope lock(&cs_); |
| 115 | request_key_frame_ = true; |
| 116 | } |
| 117 | |
| 118 | void RtpVideoStreamReceiver::RtcpFeedbackBuffer::SendNack( |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 119 | const std::vector<uint16_t>& sequence_numbers, |
| 120 | bool buffering_allowed) { |
| 121 | RTC_DCHECK(!sequence_numbers.empty()); |
| 122 | rtc::CritScope lock(&cs_); |
| 123 | nack_sequence_numbers_.insert(nack_sequence_numbers_.end(), |
| 124 | sequence_numbers.cbegin(), |
| 125 | sequence_numbers.cend()); |
| 126 | if (!buffering_allowed) { |
| 127 | // Note that while *buffering* is not allowed, *batching* is, meaning that |
| 128 | // previously buffered messages may be sent along with the current message. |
| 129 | SendBufferedRtcpFeedback(); |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | void RtpVideoStreamReceiver::RtcpFeedbackBuffer::SendLossNotification( |
| 134 | uint16_t last_decoded_seq_num, |
| 135 | uint16_t last_received_seq_num, |
Elad Alon | e86af2c | 2019-06-03 14:37:50 +0200 | [diff] [blame] | 136 | bool decodability_flag, |
| 137 | bool buffering_allowed) { |
| 138 | RTC_DCHECK(buffering_allowed); |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 139 | rtc::CritScope lock(&cs_); |
Elad Alon | 36690cd | 2019-06-04 22:59:54 +0200 | [diff] [blame] | 140 | RTC_DCHECK(!lntf_state_) |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 141 | << "SendLossNotification() called twice in a row with no call to " |
| 142 | "SendBufferedRtcpFeedback() in between."; |
| 143 | lntf_state_ = absl::make_optional<LossNotificationState>( |
| 144 | last_decoded_seq_num, last_received_seq_num, decodability_flag); |
| 145 | } |
| 146 | |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 147 | void RtpVideoStreamReceiver::RtcpFeedbackBuffer::SendBufferedRtcpFeedback() { |
| 148 | bool request_key_frame = false; |
| 149 | std::vector<uint16_t> nack_sequence_numbers; |
| 150 | absl::optional<LossNotificationState> lntf_state; |
| 151 | |
| 152 | { |
| 153 | rtc::CritScope lock(&cs_); |
| 154 | std::swap(request_key_frame, request_key_frame_); |
| 155 | std::swap(nack_sequence_numbers, nack_sequence_numbers_); |
| 156 | std::swap(lntf_state, lntf_state_); |
| 157 | } |
| 158 | |
Elad Alon | e86af2c | 2019-06-03 14:37:50 +0200 | [diff] [blame] | 159 | if (lntf_state) { |
| 160 | // If either a NACK or a key frame request is sent, we should buffer |
| 161 | // the LNTF and wait for them (NACK or key frame request) to trigger |
| 162 | // the compound feedback message. |
| 163 | // Otherwise, the LNTF should be sent out immediately. |
| 164 | const bool buffering_allowed = |
| 165 | request_key_frame || !nack_sequence_numbers.empty(); |
| 166 | |
| 167 | loss_notification_sender_->SendLossNotification( |
| 168 | lntf_state->last_decoded_seq_num, lntf_state->last_received_seq_num, |
| 169 | lntf_state->decodability_flag, buffering_allowed); |
| 170 | } |
| 171 | |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 172 | if (request_key_frame) { |
| 173 | key_frame_request_sender_->RequestKeyFrame(); |
| 174 | } else if (!nack_sequence_numbers.empty()) { |
| 175 | nack_sender_->SendNack(nack_sequence_numbers, true); |
| 176 | } |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 177 | } |
| 178 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 179 | RtpVideoStreamReceiver::RtpVideoStreamReceiver( |
Sebastian Jansson | 8026d60 | 2019-03-04 19:39:01 +0100 | [diff] [blame] | 180 | Clock* clock, |
mflodman | fa66659 | 2016-04-28 23:15:33 -0700 | [diff] [blame] | 181 | Transport* transport, |
| 182 | RtcpRttStats* rtt_stats, |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 183 | PacketRouter* packet_router, |
Tommi | 733b547 | 2016-06-10 17:58:01 +0200 | [diff] [blame] | 184 | const VideoReceiveStream::Config* config, |
nisse | ca5706d | 2017-09-11 02:32:16 -0700 | [diff] [blame] | 185 | ReceiveStatistics* rtp_receive_statistics, |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 186 | ReceiveStatisticsProxy* receive_stats_proxy, |
Erik Språng | 737336d | 2016-07-29 12:59:36 +0200 | [diff] [blame] | 187 | ProcessThread* process_thread, |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 188 | NackSender* nack_sender, |
Niels Möller | 2f5554d | 2019-05-29 13:35:14 +0200 | [diff] [blame] | 189 | KeyFrameRequestSender* keyframe_request_sender, |
Benjamin Wright | 192eeec | 2018-10-17 17:27:25 -0700 | [diff] [blame] | 190 | video_coding::OnCompleteFrameCallback* complete_frame_callback, |
| 191 | rtc::scoped_refptr<FrameDecryptorInterface> frame_decryptor) |
Sebastian Jansson | 8026d60 | 2019-03-04 19:39:01 +0100 | [diff] [blame] | 192 | : clock_(clock), |
Tommi | 733b547 | 2016-06-10 17:58:01 +0200 | [diff] [blame] | 193 | config_(*config), |
mflodman | c0e58a3 | 2016-04-25 01:26:26 -0700 | [diff] [blame] | 194 | packet_router_(packet_router), |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 195 | process_thread_(process_thread), |
Sebastian Jansson | 8026d60 | 2019-03-04 19:39:01 +0100 | [diff] [blame] | 196 | ntp_estimator_(clock), |
Niels Möller | b0573bc | 2017-09-25 10:47:00 +0200 | [diff] [blame] | 197 | rtp_header_extensions_(config_.rtp.extensions), |
nisse | ca5706d | 2017-09-11 02:32:16 -0700 | [diff] [blame] | 198 | rtp_receive_statistics_(rtp_receive_statistics), |
Ilya Nikolaevskiy | 2d821c3 | 2019-06-26 14:39:36 +0200 | [diff] [blame] | 199 | ulpfec_receiver_(UlpfecReceiver::Create(config->rtp.remote_ssrc, |
| 200 | this, |
| 201 | config->rtp.extensions)), |
stefan@webrtc.org | 7bb8f02 | 2013-09-06 13:40:11 +0000 | [diff] [blame] | 202 | receiving_(false), |
mflodman | c0e58a3 | 2016-04-25 01:26:26 -0700 | [diff] [blame] | 203 | last_packet_log_ms_(-1), |
Niels Möller | 2f5554d | 2019-05-29 13:35:14 +0200 | [diff] [blame] | 204 | rtp_rtcp_(CreateRtpRtcpModule(clock, |
| 205 | rtp_receive_statistics_, |
| 206 | transport, |
| 207 | rtt_stats, |
Erik Språng | e3a10e1 | 2019-08-19 15:45:00 +0200 | [diff] [blame] | 208 | receive_stats_proxy, |
| 209 | config_.rtp.local_ssrc)), |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 210 | complete_frame_callback_(complete_frame_callback), |
Niels Möller | 2f5554d | 2019-05-29 13:35:14 +0200 | [diff] [blame] | 211 | keyframe_request_sender_(keyframe_request_sender), |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 212 | // TODO(bugs.webrtc.org/10336): Let |rtcp_feedback_buffer_| communicate |
| 213 | // directly with |rtp_rtcp_|. |
| 214 | rtcp_feedback_buffer_(this, nack_sender, this), |
Danil Chapovalov | f7457e5 | 2019-09-20 17:57:15 +0200 | [diff] [blame] | 215 | packet_buffer_(clock_, |
| 216 | kPacketBufferStartSize, |
| 217 | PacketBufferMaxSize(), |
| 218 | this), |
Benjamin Wright | 52426ed | 2019-03-01 11:01:59 -0800 | [diff] [blame] | 219 | has_received_frame_(false), |
| 220 | frames_decryptable_(false) { |
eladalon | 822ff2b | 2017-08-01 06:30:28 -0700 | [diff] [blame] | 221 | constexpr bool remb_candidate = true; |
Niels Möller | 60f4e29 | 2019-05-20 11:06:33 +0200 | [diff] [blame] | 222 | if (packet_router_) |
| 223 | packet_router_->AddReceiveRtpModule(rtp_rtcp_.get(), remb_candidate); |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 224 | |
Tommi | 733b547 | 2016-06-10 17:58:01 +0200 | [diff] [blame] | 225 | RTC_DCHECK(config_.rtp.rtcp_mode != RtcpMode::kOff) |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 226 | << "A stream should not be configured with RTCP disabled. This value is " |
| 227 | "reserved for internal usage."; |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 228 | // TODO(pbos): What's an appropriate local_ssrc for receive-only streams? |
| 229 | RTC_DCHECK(config_.rtp.local_ssrc != 0); |
| 230 | RTC_DCHECK(config_.rtp.remote_ssrc != config_.rtp.local_ssrc); |
| 231 | |
Tommi | 733b547 | 2016-06-10 17:58:01 +0200 | [diff] [blame] | 232 | rtp_rtcp_->SetRTCPStatus(config_.rtp.rtcp_mode); |
stefan | b4ab381 | 2017-06-09 06:12:11 -0700 | [diff] [blame] | 233 | rtp_rtcp_->SetRemoteSSRC(config_.rtp.remote_ssrc); |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 234 | |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 235 | static const int kMaxPacketAgeToNack = 450; |
Tommi | 733b547 | 2016-06-10 17:58:01 +0200 | [diff] [blame] | 236 | const int max_reordering_threshold = (config_.rtp.nack.rtp_history_ms > 0) |
| 237 | ? kMaxPacketAgeToNack |
| 238 | : kDefaultMaxReorderingThreshold; |
Niels Möller | 87da109 | 2019-05-24 14:04:28 +0200 | [diff] [blame] | 239 | rtp_receive_statistics_->SetMaxReorderingThreshold(config_.rtp.remote_ssrc, |
| 240 | max_reordering_threshold); |
| 241 | // TODO(nisse): For historic reasons, we applied the above |
| 242 | // max_reordering_threshold also for RTX stats, which makes little sense since |
| 243 | // we don't NACK rtx packets. Consider deleting the below block, and rely on |
| 244 | // the default threshold. |
| 245 | if (config_.rtp.rtx_ssrc) { |
| 246 | rtp_receive_statistics_->SetMaxReorderingThreshold( |
| 247 | config_.rtp.rtx_ssrc, max_reordering_threshold); |
| 248 | } |
Tommi | 733b547 | 2016-06-10 17:58:01 +0200 | [diff] [blame] | 249 | if (config_.rtp.rtcp_xr.receiver_reference_time_report) |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 250 | rtp_rtcp_->SetRtcpXrRrtrStatus(true); |
| 251 | |
| 252 | // Stats callback for CNAME changes. |
Niels Möller | 4d7c405 | 2019-08-05 12:45:19 +0200 | [diff] [blame] | 253 | rtp_rtcp_->RegisterRtcpCnameCallback(receive_stats_proxy); |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 254 | |
tommi | dea489f | 2017-03-03 03:20:24 -0800 | [diff] [blame] | 255 | process_thread_->RegisterModule(rtp_rtcp_.get(), RTC_FROM_HERE); |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 256 | |
Elad Alon | fadb181 | 2019-05-24 13:40:02 +0200 | [diff] [blame] | 257 | if (config_.rtp.lntf.enabled) { |
Elad Alon | 7d6a4c0 | 2019-02-25 13:00:51 +0100 | [diff] [blame] | 258 | loss_notification_controller_ = |
Mirko Bonadei | 317a1f0 | 2019-09-17 17:06:18 +0200 | [diff] [blame] | 259 | std::make_unique<LossNotificationController>(&rtcp_feedback_buffer_, |
| 260 | &rtcp_feedback_buffer_); |
Elad Alon | ca2c430 | 2019-05-27 22:43:10 +0200 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | if (config_.rtp.nack.rtp_history_ms != 0) { |
Mirko Bonadei | 317a1f0 | 2019-09-17 17:06:18 +0200 | [diff] [blame] | 264 | nack_module_ = std::make_unique<NackModule>(clock_, &rtcp_feedback_buffer_, |
| 265 | &rtcp_feedback_buffer_); |
tommi | dea489f | 2017-03-03 03:20:24 -0800 | [diff] [blame] | 266 | process_thread_->RegisterModule(nack_module_.get(), RTC_FROM_HERE); |
tommi | f284b7f | 2017-02-27 01:59:36 -0800 | [diff] [blame] | 267 | } |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 268 | |
Elad Alon | a8f5461 | 2018-11-06 11:21:25 +0100 | [diff] [blame] | 269 | reference_finder_ = |
Mirko Bonadei | 317a1f0 | 2019-09-17 17:06:18 +0200 | [diff] [blame] | 270 | std::make_unique<video_coding::RtpFrameReferenceFinder>(this); |
Benjamin Wright | a556448 | 2019-04-03 10:44:18 -0700 | [diff] [blame] | 271 | |
Benjamin Wright | 0076529 | 2018-11-30 16:18:26 -0800 | [diff] [blame] | 272 | // Only construct the encrypted receiver if frame encryption is enabled. |
Benjamin Wright | a556448 | 2019-04-03 10:44:18 -0700 | [diff] [blame] | 273 | if (config_.crypto_options.sframe.require_frame_encryption) { |
Benjamin Wright | 0076529 | 2018-11-30 16:18:26 -0800 | [diff] [blame] | 274 | buffered_frame_decryptor_ = |
Mirko Bonadei | 317a1f0 | 2019-09-17 17:06:18 +0200 | [diff] [blame] | 275 | std::make_unique<BufferedFrameDecryptor>(this, this); |
Benjamin Wright | a556448 | 2019-04-03 10:44:18 -0700 | [diff] [blame] | 276 | if (frame_decryptor != nullptr) { |
| 277 | buffered_frame_decryptor_->SetFrameDecryptor(std::move(frame_decryptor)); |
| 278 | } |
Benjamin Wright | 0076529 | 2018-11-30 16:18:26 -0800 | [diff] [blame] | 279 | } |
mflodman | c0e58a3 | 2016-04-25 01:26:26 -0700 | [diff] [blame] | 280 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 281 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 282 | RtpVideoStreamReceiver::~RtpVideoStreamReceiver() { |
eladalon | c0d481a | 2017-08-02 07:39:07 -0700 | [diff] [blame] | 283 | RTC_DCHECK(secondary_sinks_.empty()); |
| 284 | |
tommi | f284b7f | 2017-02-27 01:59:36 -0800 | [diff] [blame] | 285 | if (nack_module_) { |
| 286 | process_thread_->DeRegisterModule(nack_module_.get()); |
| 287 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 288 | |
tommi | f284b7f | 2017-02-27 01:59:36 -0800 | [diff] [blame] | 289 | process_thread_->DeRegisterModule(rtp_rtcp_.get()); |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 290 | |
Niels Möller | 60f4e29 | 2019-05-20 11:06:33 +0200 | [diff] [blame] | 291 | if (packet_router_) |
| 292 | packet_router_->RemoveReceiveRtpModule(rtp_rtcp_.get()); |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 293 | UpdateHistograms(); |
asapersson@webrtc.org | 0800db7 | 2015-01-15 07:40:20 +0000 | [diff] [blame] | 294 | } |
| 295 | |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 296 | void RtpVideoStreamReceiver::AddReceiveCodec( |
philipel | 022b54e | 2016-12-20 04:15:59 -0800 | [diff] [blame] | 297 | const VideoCodec& video_codec, |
Mirta Dvornicic | fe68daa | 2019-05-23 13:21:12 +0200 | [diff] [blame] | 298 | const std::map<std::string, std::string>& codec_params, |
| 299 | bool raw_payload) { |
| 300 | absl::optional<VideoCodecType> video_type; |
| 301 | if (!raw_payload) { |
| 302 | video_type = video_codec.codecType; |
| 303 | } |
| 304 | payload_type_map_.emplace(video_codec.plType, video_type); |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 305 | pt_codec_params_.emplace(video_codec.plType, codec_params); |
wu@webrtc.org | 822fbd8 | 2013-08-15 23:38:54 +0000 | [diff] [blame] | 306 | } |
| 307 | |
Niels Möller | df9e9ae | 2018-07-31 08:29:53 +0200 | [diff] [blame] | 308 | absl::optional<Syncable::Info> RtpVideoStreamReceiver::GetSyncInfo() const { |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 309 | Syncable::Info info; |
Niels Möller | df9e9ae | 2018-07-31 08:29:53 +0200 | [diff] [blame] | 310 | if (rtp_rtcp_->RemoteNTP(&info.capture_time_ntp_secs, |
| 311 | &info.capture_time_ntp_frac, nullptr, nullptr, |
| 312 | &info.capture_time_source_clock) != 0) { |
| 313 | return absl::nullopt; |
| 314 | } |
Niels Möller | b0d4b41 | 2018-08-28 13:58:15 +0200 | [diff] [blame] | 315 | { |
Chen Xing | 90f3b89 | 2019-06-25 10:16:14 +0200 | [diff] [blame] | 316 | rtc::CritScope lock(&sync_info_lock_); |
Niels Möller | b0d4b41 | 2018-08-28 13:58:15 +0200 | [diff] [blame] | 317 | if (!last_received_rtp_timestamp_ || !last_received_rtp_system_time_ms_) { |
| 318 | return absl::nullopt; |
| 319 | } |
| 320 | info.latest_received_capture_timestamp = *last_received_rtp_timestamp_; |
| 321 | info.latest_receive_time_ms = *last_received_rtp_system_time_ms_; |
| 322 | } |
Niels Möller | df9e9ae | 2018-07-31 08:29:53 +0200 | [diff] [blame] | 323 | |
| 324 | // Leaves info.current_delay_ms uninitialized. |
| 325 | return info; |
wu@webrtc.org | 822fbd8 | 2013-08-15 23:38:54 +0000 | [diff] [blame] | 326 | } |
| 327 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 328 | int32_t RtpVideoStreamReceiver::OnReceivedPayloadData( |
mflodman | fa66659 | 2016-04-28 23:15:33 -0700 | [diff] [blame] | 329 | const uint8_t* payload_data, |
Peter Boström | 0208322 | 2016-06-14 12:52:54 +0200 | [diff] [blame] | 330 | size_t payload_size, |
Niels Möller | 125b5d6 | 2019-03-11 16:11:07 +0100 | [diff] [blame] | 331 | const RTPHeader& rtp_header, |
| 332 | const RTPVideoHeader& video_header, |
Ying Wang | b32bb95 | 2018-10-31 10:12:27 +0100 | [diff] [blame] | 333 | const absl::optional<RtpGenericFrameDescriptor>& generic_descriptor, |
| 334 | bool is_recovered) { |
Niels Möller | 125b5d6 | 2019-03-11 16:11:07 +0100 | [diff] [blame] | 335 | VCMPacket packet(payload_data, payload_size, rtp_header, video_header, |
Chen Xing | f00bf42 | 2019-06-20 10:05:55 +0200 | [diff] [blame] | 336 | ntp_estimator_.Estimate(rtp_header.timestamp), |
| 337 | clock_->TimeInMilliseconds()); |
Elad Alon | 7d6a4c0 | 2019-02-25 13:00:51 +0100 | [diff] [blame] | 338 | packet.generic_descriptor = generic_descriptor; |
| 339 | |
Elad Alon | ca2c430 | 2019-05-27 22:43:10 +0200 | [diff] [blame] | 340 | if (loss_notification_controller_) { |
| 341 | if (is_recovered) { |
| 342 | // TODO(bugs.webrtc.org/10336): Implement support for reordering. |
Niels Möller | a740142 | 2019-09-13 14:18:58 +0200 | [diff] [blame] | 343 | RTC_LOG(LS_INFO) |
Elad Alon | ca2c430 | 2019-05-27 22:43:10 +0200 | [diff] [blame] | 344 | << "LossNotificationController does not support reordering."; |
Niels Möller | a740142 | 2019-09-13 14:18:58 +0200 | [diff] [blame] | 345 | } else if (!generic_descriptor) { |
| 346 | RTC_LOG(LS_WARNING) << "LossNotificationController requires generic " |
| 347 | "frame descriptor, but it is missing."; |
Elad Alon | ca2c430 | 2019-05-27 22:43:10 +0200 | [diff] [blame] | 348 | } else { |
Niels Möller | a740142 | 2019-09-13 14:18:58 +0200 | [diff] [blame] | 349 | loss_notification_controller_->OnReceivedPacket(rtp_header.sequenceNumber, |
| 350 | *generic_descriptor); |
Elad Alon | ca2c430 | 2019-05-27 22:43:10 +0200 | [diff] [blame] | 351 | } |
| 352 | } |
| 353 | |
Niels Möller | 8dad9b4 | 2018-08-22 10:36:35 +0200 | [diff] [blame] | 354 | if (nack_module_) { |
Niels Möller | abbc50e | 2019-04-24 09:41:16 +0200 | [diff] [blame] | 355 | const bool is_keyframe = |
| 356 | video_header.is_first_packet_in_frame && |
| 357 | video_header.frame_type == VideoFrameType::kVideoFrameKey; |
Niels Möller | 8dad9b4 | 2018-08-22 10:36:35 +0200 | [diff] [blame] | 358 | |
| 359 | packet.timesNacked = nack_module_->OnReceivedPacket( |
Niels Möller | 125b5d6 | 2019-03-11 16:11:07 +0100 | [diff] [blame] | 360 | rtp_header.sequenceNumber, is_keyframe, is_recovered); |
Niels Möller | 8dad9b4 | 2018-08-22 10:36:35 +0200 | [diff] [blame] | 361 | } else { |
| 362 | packet.timesNacked = -1; |
| 363 | } |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 364 | |
philipel | 54ca919 | 2017-03-21 05:45:18 -0700 | [diff] [blame] | 365 | if (packet.sizeBytes == 0) { |
Niels Möller | bc01047 | 2018-03-23 13:22:29 +0100 | [diff] [blame] | 366 | NotifyReceiverOfEmptyPacket(packet.seqNum); |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 367 | rtcp_feedback_buffer_.SendBufferedRtcpFeedback(); |
philipel | 54ca919 | 2017-03-21 05:45:18 -0700 | [diff] [blame] | 368 | return 0; |
| 369 | } |
| 370 | |
Niels Möller | d5e02f0 | 2019-02-20 13:12:21 +0100 | [diff] [blame] | 371 | if (packet.codec() == kVideoCodecH264) { |
philipel | a45102f | 2017-02-22 05:30:39 -0800 | [diff] [blame] | 372 | // Only when we start to receive packets will we know what payload type |
| 373 | // that will be used. When we know the payload type insert the correct |
| 374 | // sps/pps into the tracker. |
| 375 | if (packet.payloadType != last_payload_type_) { |
| 376 | last_payload_type_ = packet.payloadType; |
| 377 | InsertSpsPpsIntoTracker(packet.payloadType); |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 378 | } |
| 379 | |
philipel | a45102f | 2017-02-22 05:30:39 -0800 | [diff] [blame] | 380 | switch (tracker_.CopyAndFixBitstream(&packet)) { |
| 381 | case video_coding::H264SpsPpsTracker::kRequestKeyframe: |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 382 | rtcp_feedback_buffer_.RequestKeyFrame(); |
| 383 | rtcp_feedback_buffer_.SendBufferedRtcpFeedback(); |
Karl Wiberg | 80ba333 | 2018-02-05 10:33:35 +0100 | [diff] [blame] | 384 | RTC_FALLTHROUGH(); |
philipel | a45102f | 2017-02-22 05:30:39 -0800 | [diff] [blame] | 385 | case video_coding::H264SpsPpsTracker::kDrop: |
| 386 | return 0; |
| 387 | case video_coding::H264SpsPpsTracker::kInsert: |
| 388 | break; |
| 389 | } |
| 390 | |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 391 | } else { |
philipel | a45102f | 2017-02-22 05:30:39 -0800 | [diff] [blame] | 392 | uint8_t* data = new uint8_t[packet.sizeBytes]; |
| 393 | memcpy(data, packet.dataPtr, packet.sizeBytes); |
| 394 | packet.dataPtr = data; |
mflodman@webrtc.org | ad4ee36 | 2011-11-28 22:39:24 +0000 | [diff] [blame] | 395 | } |
philipel | a45102f | 2017-02-22 05:30:39 -0800 | [diff] [blame] | 396 | |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 397 | rtcp_feedback_buffer_.SendBufferedRtcpFeedback(); |
Danil Chapovalov | f7457e5 | 2019-09-20 17:57:15 +0200 | [diff] [blame] | 398 | if (!packet_buffer_.InsertPacket(&packet)) { |
Johannes Kron | bd3f305 | 2019-08-01 15:45:54 +0200 | [diff] [blame] | 399 | RequestKeyFrame(); |
| 400 | } |
mflodman@webrtc.org | ad4ee36 | 2011-11-28 22:39:24 +0000 | [diff] [blame] | 401 | return 0; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 402 | } |
| 403 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 404 | void RtpVideoStreamReceiver::OnRecoveredPacket(const uint8_t* rtp_packet, |
| 405 | size_t rtp_packet_length) { |
Niels Möller | b0573bc | 2017-09-25 10:47:00 +0200 | [diff] [blame] | 406 | RtpPacketReceived packet; |
| 407 | if (!packet.Parse(rtp_packet, rtp_packet_length)) |
nisse | 30e8931 | 2017-05-29 08:16:37 -0700 | [diff] [blame] | 408 | return; |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 409 | if (packet.PayloadType() == config_.rtp.red_payload_type) { |
| 410 | RTC_LOG(LS_WARNING) << "Discarding recovered packet with RED encapsulation"; |
| 411 | return; |
| 412 | } |
| 413 | |
Niels Möller | b0573bc | 2017-09-25 10:47:00 +0200 | [diff] [blame] | 414 | packet.IdentifyExtensions(rtp_header_extensions_); |
| 415 | packet.set_payload_type_frequency(kVideoPayloadTypeFrequency); |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 416 | // TODO(nisse): UlpfecReceiverImpl::ProcessReceivedFec passes both |
| 417 | // original (decapsulated) media packets and recovered packets to |
| 418 | // this callback. We need a way to distinguish, for setting |
| 419 | // packet.recovered() correctly. Ideally, move RED decapsulation out |
| 420 | // of the Ulpfec implementation. |
Niels Möller | b0573bc | 2017-09-25 10:47:00 +0200 | [diff] [blame] | 421 | |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 422 | ReceivePacket(packet); |
wu@webrtc.org | 822fbd8 | 2013-08-15 23:38:54 +0000 | [diff] [blame] | 423 | } |
| 424 | |
nisse | d2ef314 | 2017-05-11 08:00:58 -0700 | [diff] [blame] | 425 | // This method handles both regular RTP packets and packets recovered |
| 426 | // via FlexFEC. |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 427 | void RtpVideoStreamReceiver::OnRtpPacket(const RtpPacketReceived& packet) { |
Sebastian Jansson | b55015e | 2019-04-09 13:44:04 +0200 | [diff] [blame] | 428 | RTC_DCHECK_RUN_ON(&worker_task_checker_); |
eladalon | c0d481a | 2017-08-02 07:39:07 -0700 | [diff] [blame] | 429 | |
eladalon | 8b07305 | 2017-08-25 00:49:08 -0700 | [diff] [blame] | 430 | if (!receiving_) { |
| 431 | return; |
| 432 | } |
solenberg@webrtc.org | fc32046 | 2014-02-11 15:27:49 +0000 | [diff] [blame] | 433 | |
eladalon | 8b07305 | 2017-08-25 00:49:08 -0700 | [diff] [blame] | 434 | if (!packet.recovered()) { |
Jonas Oreland | 49ac595 | 2018-09-26 16:04:32 +0200 | [diff] [blame] | 435 | // TODO(nisse): Exclude out-of-order packets? |
eladalon | 8b07305 | 2017-08-25 00:49:08 -0700 | [diff] [blame] | 436 | int64_t now_ms = clock_->TimeInMilliseconds(); |
Niels Möller | b0d4b41 | 2018-08-28 13:58:15 +0200 | [diff] [blame] | 437 | { |
Chen Xing | 90f3b89 | 2019-06-25 10:16:14 +0200 | [diff] [blame] | 438 | rtc::CritScope cs(&sync_info_lock_); |
Niels Möller | b0d4b41 | 2018-08-28 13:58:15 +0200 | [diff] [blame] | 439 | last_received_rtp_timestamp_ = packet.Timestamp(); |
| 440 | last_received_rtp_system_time_ms_ = now_ms; |
| 441 | } |
eladalon | 8b07305 | 2017-08-25 00:49:08 -0700 | [diff] [blame] | 442 | // Periodically log the RTP header of incoming packets. |
| 443 | if (now_ms - last_packet_log_ms_ > kPacketLogIntervalMs) { |
Jonas Olsson | 366a50c | 2018-09-06 13:41:30 +0200 | [diff] [blame] | 444 | rtc::StringBuilder ss; |
eladalon | 8b07305 | 2017-08-25 00:49:08 -0700 | [diff] [blame] | 445 | ss << "Packet received on SSRC: " << packet.Ssrc() |
| 446 | << " with payload type: " << static_cast<int>(packet.PayloadType()) |
| 447 | << ", timestamp: " << packet.Timestamp() |
| 448 | << ", sequence number: " << packet.SequenceNumber() |
| 449 | << ", arrival time: " << packet.arrival_time_ms(); |
| 450 | int32_t time_offset; |
| 451 | if (packet.GetExtension<TransmissionOffset>(&time_offset)) { |
| 452 | ss << ", toffset: " << time_offset; |
nisse | 38cc1d6 | 2017-02-13 05:59:46 -0800 | [diff] [blame] | 453 | } |
eladalon | 8b07305 | 2017-08-25 00:49:08 -0700 | [diff] [blame] | 454 | uint32_t send_time; |
| 455 | if (packet.GetExtension<AbsoluteSendTime>(&send_time)) { |
| 456 | ss << ", abs send time: " << send_time; |
| 457 | } |
Mirko Bonadei | 675513b | 2017-11-09 11:09:25 +0100 | [diff] [blame] | 458 | RTC_LOG(LS_INFO) << ss.str(); |
eladalon | 8b07305 | 2017-08-25 00:49:08 -0700 | [diff] [blame] | 459 | last_packet_log_ms_ = now_ms; |
stefan@webrtc.org | eb24b04 | 2014-10-14 11:40:13 +0000 | [diff] [blame] | 460 | } |
| 461 | } |
wu@webrtc.org | a989080 | 2013-12-13 00:21:03 +0000 | [diff] [blame] | 462 | |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 463 | ReceivePacket(packet); |
nisse | 38cc1d6 | 2017-02-13 05:59:46 -0800 | [diff] [blame] | 464 | |
asapersson@webrtc.org | 1457b47 | 2014-05-26 13:06:04 +0000 | [diff] [blame] | 465 | // Update receive statistics after ReceivePacket. |
| 466 | // Receive statistics will be reset if the payload type changes (make sure |
| 467 | // that the first packet is included in the stats). |
nisse | d2ef314 | 2017-05-11 08:00:58 -0700 | [diff] [blame] | 468 | if (!packet.recovered()) { |
Niels Möller | 1f3206c | 2018-09-14 08:26:32 +0200 | [diff] [blame] | 469 | rtp_receive_statistics_->OnRtpPacket(packet); |
nisse | d2ef314 | 2017-05-11 08:00:58 -0700 | [diff] [blame] | 470 | } |
eladalon | c0d481a | 2017-08-02 07:39:07 -0700 | [diff] [blame] | 471 | |
| 472 | for (RtpPacketSinkInterface* secondary_sink : secondary_sinks_) { |
| 473 | secondary_sink->OnRtpPacket(packet); |
| 474 | } |
stefan@webrtc.org | 7bb8f02 | 2013-09-06 13:40:11 +0000 | [diff] [blame] | 475 | } |
| 476 | |
Niels Möller | 4168437 | 2019-03-25 15:51:03 +0100 | [diff] [blame] | 477 | void RtpVideoStreamReceiver::RequestKeyFrame() { |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 478 | // TODO(bugs.webrtc.org/10336): Allow the sender to ignore key frame requests |
| 479 | // issued by anything other than the LossNotificationController if it (the |
| 480 | // sender) is relying on LNTF alone. |
Niels Möller | 2f5554d | 2019-05-29 13:35:14 +0200 | [diff] [blame] | 481 | if (keyframe_request_sender_) { |
| 482 | keyframe_request_sender_->RequestKeyFrame(); |
| 483 | } else { |
Niels Möller | dd0094a | 2019-06-04 14:46:27 +0200 | [diff] [blame] | 484 | rtp_rtcp_->SendPictureLossIndication(); |
Niels Möller | 2f5554d | 2019-05-29 13:35:14 +0200 | [diff] [blame] | 485 | } |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 486 | } |
| 487 | |
Elad Alon | 7d6a4c0 | 2019-02-25 13:00:51 +0100 | [diff] [blame] | 488 | void RtpVideoStreamReceiver::SendLossNotification( |
| 489 | uint16_t last_decoded_seq_num, |
| 490 | uint16_t last_received_seq_num, |
Elad Alon | e86af2c | 2019-06-03 14:37:50 +0200 | [diff] [blame] | 491 | bool decodability_flag, |
| 492 | bool buffering_allowed) { |
Elad Alon | fadb181 | 2019-05-24 13:40:02 +0200 | [diff] [blame] | 493 | RTC_DCHECK(config_.rtp.lntf.enabled); |
Elad Alon | 7d6a4c0 | 2019-02-25 13:00:51 +0100 | [diff] [blame] | 494 | rtp_rtcp_->SendLossNotification(last_decoded_seq_num, last_received_seq_num, |
Elad Alon | e86af2c | 2019-06-03 14:37:50 +0200 | [diff] [blame] | 495 | decodability_flag, buffering_allowed); |
Elad Alon | 7d6a4c0 | 2019-02-25 13:00:51 +0100 | [diff] [blame] | 496 | } |
| 497 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 498 | bool RtpVideoStreamReceiver::IsUlpfecEnabled() const { |
nisse | 3b3622f | 2017-09-26 02:49:21 -0700 | [diff] [blame] | 499 | return config_.rtp.ulpfec_payload_type != -1; |
brandtr | e6f98c7 | 2016-11-11 03:28:30 -0800 | [diff] [blame] | 500 | } |
| 501 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 502 | bool RtpVideoStreamReceiver::IsRetransmissionsEnabled() const { |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 503 | return config_.rtp.nack.rtp_history_ms > 0; |
| 504 | } |
| 505 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 506 | void RtpVideoStreamReceiver::RequestPacketRetransmit( |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 507 | const std::vector<uint16_t>& sequence_numbers) { |
| 508 | rtp_rtcp_->SendNack(sequence_numbers); |
| 509 | } |
| 510 | |
Benjamin Wright | 52426ed | 2019-03-01 11:01:59 -0800 | [diff] [blame] | 511 | bool RtpVideoStreamReceiver::IsDecryptable() const { |
| 512 | return frames_decryptable_.load(); |
| 513 | } |
| 514 | |
Elad Alon | b4643ad | 2019-02-22 11:19:50 +0100 | [diff] [blame] | 515 | void RtpVideoStreamReceiver::OnAssembledFrame( |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 516 | std::unique_ptr<video_coding::RtpFrameObject> frame) { |
Benjamin Wright | 0076529 | 2018-11-30 16:18:26 -0800 | [diff] [blame] | 517 | RTC_DCHECK_RUN_ON(&network_tc_); |
Elad Alon | 7d6a4c0 | 2019-02-25 13:00:51 +0100 | [diff] [blame] | 518 | RTC_DCHECK(frame); |
| 519 | |
| 520 | absl::optional<RtpGenericFrameDescriptor> descriptor = |
| 521 | frame->GetGenericFrameDescriptor(); |
| 522 | |
| 523 | if (loss_notification_controller_ && descriptor) { |
| 524 | loss_notification_controller_->OnAssembledFrame( |
| 525 | frame->first_seq_num(), descriptor->FrameId(), |
| 526 | descriptor->Discardable().value_or(false), |
| 527 | descriptor->FrameDependenciesDiffs()); |
Elad Alon | ca2c430 | 2019-05-27 22:43:10 +0200 | [diff] [blame] | 528 | } |
| 529 | |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 530 | // If frames arrive before a key frame, they would not be decodable. |
| 531 | // In that case, request a key frame ASAP. |
Elad Alon | ca2c430 | 2019-05-27 22:43:10 +0200 | [diff] [blame] | 532 | if (!has_received_frame_) { |
Niels Möller | 8f7ce22 | 2019-03-21 15:43:58 +0100 | [diff] [blame] | 533 | if (frame->FrameType() != VideoFrameType::kVideoFrameKey) { |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 534 | // |loss_notification_controller_|, if present, would have already |
| 535 | // requested a key frame when the first packet for the non-key frame |
| 536 | // had arrived, so no need to replicate the request. |
| 537 | if (!loss_notification_controller_) { |
| 538 | RequestKeyFrame(); |
| 539 | } |
Benjamin Wright | 39feabe | 2018-10-22 13:33:09 -0700 | [diff] [blame] | 540 | } |
Elad Alon | ef09c5b | 2019-05-31 13:25:50 +0200 | [diff] [blame] | 541 | has_received_frame_ = true; |
Benjamin Wright | 39feabe | 2018-10-22 13:33:09 -0700 | [diff] [blame] | 542 | } |
Elad Alon | 7d6a4c0 | 2019-02-25 13:00:51 +0100 | [diff] [blame] | 543 | |
philipel | 7acc4a4 | 2019-09-26 11:25:52 +0200 | [diff] [blame] | 544 | rtc::CritScope lock(&reference_finder_lock_); |
| 545 | // Reset |reference_finder_| if |frame| is new and the codec have changed. |
| 546 | if (current_codec_) { |
| 547 | bool frame_is_newer = |
| 548 | AheadOf(frame->Timestamp(), last_assembled_frame_rtp_timestamp_); |
| 549 | |
| 550 | if (frame->codec_type() != current_codec_) { |
| 551 | if (frame_is_newer) { |
| 552 | // When we reset the |reference_finder_| we don't want new picture ids |
| 553 | // to overlap with old picture ids. To ensure that doesn't happen we |
| 554 | // start from the |last_completed_picture_id_| and add an offset in case |
| 555 | // of reordering. |
| 556 | reference_finder_ = |
| 557 | std::make_unique<video_coding::RtpFrameReferenceFinder>( |
| 558 | this, last_completed_picture_id_ + |
| 559 | std::numeric_limits<uint16_t>::max()); |
| 560 | current_codec_ = frame->codec_type(); |
| 561 | } else { |
| 562 | // Old frame from before the codec switch, discard it. |
| 563 | return; |
| 564 | } |
| 565 | } |
| 566 | |
| 567 | if (frame_is_newer) { |
| 568 | last_assembled_frame_rtp_timestamp_ = frame->Timestamp(); |
| 569 | } |
| 570 | } else { |
| 571 | current_codec_ = frame->codec_type(); |
| 572 | last_assembled_frame_rtp_timestamp_ = frame->Timestamp(); |
| 573 | } |
| 574 | |
Benjamin Wright | 0076529 | 2018-11-30 16:18:26 -0800 | [diff] [blame] | 575 | if (buffered_frame_decryptor_ == nullptr) { |
| 576 | reference_finder_->ManageFrame(std::move(frame)); |
| 577 | } else { |
| 578 | buffered_frame_decryptor_->ManageEncryptedFrame(std::move(frame)); |
Benjamin Wright | 192eeec | 2018-10-17 17:27:25 -0700 | [diff] [blame] | 579 | } |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 580 | } |
| 581 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 582 | void RtpVideoStreamReceiver::OnCompleteFrame( |
philipel | e7c891f | 2018-02-22 14:35:06 +0100 | [diff] [blame] | 583 | std::unique_ptr<video_coding::EncodedFrame> frame) { |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 584 | { |
| 585 | rtc::CritScope lock(&last_seq_num_cs_); |
| 586 | video_coding::RtpFrameObject* rtp_frame = |
| 587 | static_cast<video_coding::RtpFrameObject*>(frame.get()); |
philipel | 0fa82a6 | 2018-03-19 15:34:53 +0100 | [diff] [blame] | 588 | last_seq_num_for_pic_id_[rtp_frame->id.picture_id] = |
| 589 | rtp_frame->last_seq_num(); |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 590 | } |
philipel | 7acc4a4 | 2019-09-26 11:25:52 +0200 | [diff] [blame] | 591 | last_completed_picture_id_ = |
| 592 | std::max(last_completed_picture_id_, frame->id.picture_id); |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 593 | complete_frame_callback_->OnCompleteFrame(std::move(frame)); |
| 594 | } |
| 595 | |
Benjamin Wright | 0076529 | 2018-11-30 16:18:26 -0800 | [diff] [blame] | 596 | void RtpVideoStreamReceiver::OnDecryptedFrame( |
| 597 | std::unique_ptr<video_coding::RtpFrameObject> frame) { |
philipel | 7acc4a4 | 2019-09-26 11:25:52 +0200 | [diff] [blame] | 598 | rtc::CritScope lock(&reference_finder_lock_); |
Benjamin Wright | 0076529 | 2018-11-30 16:18:26 -0800 | [diff] [blame] | 599 | reference_finder_->ManageFrame(std::move(frame)); |
| 600 | } |
| 601 | |
Benjamin Wright | 2af5dcb | 2019-04-09 20:08:41 +0000 | [diff] [blame] | 602 | void RtpVideoStreamReceiver::OnDecryptionStatusChange( |
| 603 | FrameDecryptorInterface::Status status) { |
| 604 | frames_decryptable_.store( |
| 605 | (status == FrameDecryptorInterface::Status::kOk) || |
| 606 | (status == FrameDecryptorInterface::Status::kRecoverable)); |
Benjamin Wright | 52426ed | 2019-03-01 11:01:59 -0800 | [diff] [blame] | 607 | } |
| 608 | |
Benjamin Wright | a556448 | 2019-04-03 10:44:18 -0700 | [diff] [blame] | 609 | void RtpVideoStreamReceiver::SetFrameDecryptor( |
| 610 | rtc::scoped_refptr<FrameDecryptorInterface> frame_decryptor) { |
| 611 | RTC_DCHECK_RUN_ON(&network_tc_); |
| 612 | if (buffered_frame_decryptor_ == nullptr) { |
| 613 | buffered_frame_decryptor_ = |
Mirko Bonadei | 317a1f0 | 2019-09-17 17:06:18 +0200 | [diff] [blame] | 614 | std::make_unique<BufferedFrameDecryptor>(this, this); |
Benjamin Wright | a556448 | 2019-04-03 10:44:18 -0700 | [diff] [blame] | 615 | } |
| 616 | buffered_frame_decryptor_->SetFrameDecryptor(std::move(frame_decryptor)); |
| 617 | } |
| 618 | |
Tommi | 81de14f | 2018-03-25 22:19:25 +0200 | [diff] [blame] | 619 | void RtpVideoStreamReceiver::UpdateRtt(int64_t max_rtt_ms) { |
tommi | f284b7f | 2017-02-27 01:59:36 -0800 | [diff] [blame] | 620 | if (nack_module_) |
| 621 | nack_module_->UpdateRtt(max_rtt_ms); |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 622 | } |
| 623 | |
Danil Chapovalov | b9b146c | 2018-06-15 12:28:07 +0200 | [diff] [blame] | 624 | absl::optional<int64_t> RtpVideoStreamReceiver::LastReceivedPacketMs() const { |
Danil Chapovalov | f7457e5 | 2019-09-20 17:57:15 +0200 | [diff] [blame] | 625 | return packet_buffer_.LastReceivedPacketMs(); |
philipel | 3184f8e | 2017-05-18 08:08:53 -0700 | [diff] [blame] | 626 | } |
| 627 | |
Danil Chapovalov | b9b146c | 2018-06-15 12:28:07 +0200 | [diff] [blame] | 628 | absl::optional<int64_t> RtpVideoStreamReceiver::LastReceivedKeyframePacketMs() |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 629 | const { |
Danil Chapovalov | f7457e5 | 2019-09-20 17:57:15 +0200 | [diff] [blame] | 630 | return packet_buffer_.LastReceivedKeyframePacketMs(); |
philipel | 3184f8e | 2017-05-18 08:08:53 -0700 | [diff] [blame] | 631 | } |
| 632 | |
eladalon | c0d481a | 2017-08-02 07:39:07 -0700 | [diff] [blame] | 633 | void RtpVideoStreamReceiver::AddSecondarySink(RtpPacketSinkInterface* sink) { |
Sebastian Jansson | b55015e | 2019-04-09 13:44:04 +0200 | [diff] [blame] | 634 | RTC_DCHECK_RUN_ON(&worker_task_checker_); |
Steve Anton | bd631a0 | 2019-03-28 10:51:27 -0700 | [diff] [blame] | 635 | RTC_DCHECK(!absl::c_linear_search(secondary_sinks_, sink)); |
eladalon | c0d481a | 2017-08-02 07:39:07 -0700 | [diff] [blame] | 636 | secondary_sinks_.push_back(sink); |
| 637 | } |
| 638 | |
| 639 | void RtpVideoStreamReceiver::RemoveSecondarySink( |
| 640 | const RtpPacketSinkInterface* sink) { |
Sebastian Jansson | b55015e | 2019-04-09 13:44:04 +0200 | [diff] [blame] | 641 | RTC_DCHECK_RUN_ON(&worker_task_checker_); |
Steve Anton | bd631a0 | 2019-03-28 10:51:27 -0700 | [diff] [blame] | 642 | auto it = absl::c_find(secondary_sinks_, sink); |
eladalon | c0d481a | 2017-08-02 07:39:07 -0700 | [diff] [blame] | 643 | if (it == secondary_sinks_.end()) { |
| 644 | // We might be rolling-back a call whose setup failed mid-way. In such a |
| 645 | // case, it's simpler to remove "everything" rather than remember what |
| 646 | // has already been added. |
Mirko Bonadei | 675513b | 2017-11-09 11:09:25 +0100 | [diff] [blame] | 647 | RTC_LOG(LS_WARNING) << "Removal of unknown sink."; |
eladalon | c0d481a | 2017-08-02 07:39:07 -0700 | [diff] [blame] | 648 | return; |
| 649 | } |
| 650 | secondary_sinks_.erase(it); |
| 651 | } |
| 652 | |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 653 | void RtpVideoStreamReceiver::ReceivePacket(const RtpPacketReceived& packet) { |
| 654 | if (packet.payload_size() == 0) { |
Niels Möller | 0b92678 | 2018-08-21 17:49:24 +0200 | [diff] [blame] | 655 | // Padding or keep-alive packet. |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 656 | // TODO(nisse): Could drop empty packets earlier, but need to figure out how |
| 657 | // they should be counted in stats. |
Niels Möller | 0b92678 | 2018-08-21 17:49:24 +0200 | [diff] [blame] | 658 | NotifyReceiverOfEmptyPacket(packet.SequenceNumber()); |
nisse | 30e8931 | 2017-05-29 08:16:37 -0700 | [diff] [blame] | 659 | return; |
stefan@webrtc.org | 7bb8f02 | 2013-09-06 13:40:11 +0000 | [diff] [blame] | 660 | } |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 661 | if (packet.PayloadType() == config_.rtp.red_payload_type) { |
Niels Möller | 1f3206c | 2018-09-14 08:26:32 +0200 | [diff] [blame] | 662 | ParseAndHandleEncapsulatingHeader(packet); |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 663 | return; |
wu@webrtc.org | 822fbd8 | 2013-08-15 23:38:54 +0000 | [diff] [blame] | 664 | } |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 665 | |
Mirta Dvornicic | fe68daa | 2019-05-23 13:21:12 +0200 | [diff] [blame] | 666 | const auto type_it = payload_type_map_.find(packet.PayloadType()); |
| 667 | if (type_it == payload_type_map_.end()) { |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 668 | return; |
| 669 | } |
| 670 | auto depacketizer = |
Mirta Dvornicic | fe68daa | 2019-05-23 13:21:12 +0200 | [diff] [blame] | 671 | absl::WrapUnique(RtpDepacketizer::Create(type_it->second)); |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 672 | |
| 673 | if (!depacketizer) { |
| 674 | RTC_LOG(LS_ERROR) << "Failed to create depacketizer."; |
| 675 | return; |
| 676 | } |
| 677 | RtpDepacketizer::ParsedPayload parsed_payload; |
| 678 | if (!depacketizer->Parse(&parsed_payload, packet.payload().data(), |
| 679 | packet.payload().size())) { |
| 680 | RTC_LOG(LS_WARNING) << "Failed parsing payload."; |
| 681 | return; |
| 682 | } |
| 683 | |
Niels Möller | 125b5d6 | 2019-03-11 16:11:07 +0100 | [diff] [blame] | 684 | RTPHeader rtp_header; |
| 685 | packet.GetHeader(&rtp_header); |
| 686 | RTPVideoHeader video_header = parsed_payload.video_header(); |
| 687 | video_header.rotation = kVideoRotation_0; |
| 688 | video_header.content_type = VideoContentType::UNSPECIFIED; |
| 689 | video_header.video_timing.flags = VideoSendTiming::kInvalid; |
| 690 | video_header.is_last_packet_in_frame = rtp_header.markerBit; |
| 691 | video_header.frame_marking.temporal_id = kNoTemporalIdx; |
Johnny Lee | 1a1c52b | 2019-02-08 14:25:40 -0500 | [diff] [blame] | 692 | |
Ilya Nikolaevskiy | 5546aef | 2018-12-04 15:54:52 +0100 | [diff] [blame] | 693 | if (parsed_payload.video_header().codec == kVideoCodecVP9) { |
| 694 | const RTPVideoHeaderVP9& codec_header = absl::get<RTPVideoHeaderVP9>( |
| 695 | parsed_payload.video_header().video_type_header); |
Niels Möller | 125b5d6 | 2019-03-11 16:11:07 +0100 | [diff] [blame] | 696 | video_header.is_last_packet_in_frame |= codec_header.end_of_frame; |
| 697 | video_header.is_first_packet_in_frame |= codec_header.beginning_of_frame; |
Ilya Nikolaevskiy | 5546aef | 2018-12-04 15:54:52 +0100 | [diff] [blame] | 698 | } |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 699 | |
Niels Möller | 125b5d6 | 2019-03-11 16:11:07 +0100 | [diff] [blame] | 700 | packet.GetExtension<VideoOrientation>(&video_header.rotation); |
| 701 | packet.GetExtension<VideoContentTypeExtension>(&video_header.content_type); |
| 702 | packet.GetExtension<VideoTimingExtension>(&video_header.video_timing); |
| 703 | packet.GetExtension<PlayoutDelayLimits>(&video_header.playout_delay); |
| 704 | packet.GetExtension<FrameMarkingExtension>(&video_header.frame_marking); |
Johnny Lee | 1a1c52b | 2019-02-08 14:25:40 -0500 | [diff] [blame] | 705 | |
Johannes Kron | d51ec58 | 2019-04-15 13:32:41 +0200 | [diff] [blame] | 706 | // Color space should only be transmitted in the last packet of a frame, |
| 707 | // therefore, neglect it otherwise so that last_color_space_ is not reset by |
| 708 | // mistake. |
| 709 | if (video_header.is_last_packet_in_frame) { |
| 710 | video_header.color_space = packet.GetExtension<ColorSpaceExtension>(); |
| 711 | if (video_header.color_space || |
Niels Möller | abbc50e | 2019-04-24 09:41:16 +0200 | [diff] [blame] | 712 | video_header.frame_type == VideoFrameType::kVideoFrameKey) { |
Johannes Kron | d51ec58 | 2019-04-15 13:32:41 +0200 | [diff] [blame] | 713 | // Store color space since it's only transmitted when changed or for key |
| 714 | // frames. Color space will be cleared if a key frame is transmitted |
| 715 | // without color space information. |
| 716 | last_color_space_ = video_header.color_space; |
| 717 | } else if (last_color_space_) { |
| 718 | video_header.color_space = last_color_space_; |
| 719 | } |
Johannes Kron | d0b69a8 | 2018-12-03 14:18:53 +0100 | [diff] [blame] | 720 | } |
Johnny Lee | 1a1c52b | 2019-02-08 14:25:40 -0500 | [diff] [blame] | 721 | |
philipel | 2837edc | 2018-10-02 13:55:47 +0200 | [diff] [blame] | 722 | absl::optional<RtpGenericFrameDescriptor> generic_descriptor_wire; |
| 723 | generic_descriptor_wire.emplace(); |
Elad Alon | ccb9b75 | 2019-02-19 13:01:31 +0100 | [diff] [blame] | 724 | const bool generic_descriptor_v00 = |
| 725 | packet.GetExtension<RtpGenericFrameDescriptorExtension00>( |
| 726 | &generic_descriptor_wire.value()); |
| 727 | const bool generic_descriptor_v01 = |
| 728 | packet.GetExtension<RtpGenericFrameDescriptorExtension01>( |
| 729 | &generic_descriptor_wire.value()); |
| 730 | if (generic_descriptor_v00 && generic_descriptor_v01) { |
| 731 | RTC_LOG(LS_WARNING) << "RTP packet had two different GFD versions."; |
| 732 | return; |
| 733 | } |
| 734 | |
| 735 | if (generic_descriptor_v00 || generic_descriptor_v01) { |
| 736 | if (generic_descriptor_v00) { |
| 737 | generic_descriptor_wire->SetByteRepresentation( |
| 738 | packet.GetRawExtension<RtpGenericFrameDescriptorExtension00>()); |
| 739 | } else { |
| 740 | generic_descriptor_wire->SetByteRepresentation( |
| 741 | packet.GetRawExtension<RtpGenericFrameDescriptorExtension01>()); |
| 742 | } |
| 743 | |
Niels Möller | 125b5d6 | 2019-03-11 16:11:07 +0100 | [diff] [blame] | 744 | video_header.is_first_packet_in_frame = |
philipel | 2837edc | 2018-10-02 13:55:47 +0200 | [diff] [blame] | 745 | generic_descriptor_wire->FirstPacketInSubFrame(); |
Niels Möller | 125b5d6 | 2019-03-11 16:11:07 +0100 | [diff] [blame] | 746 | video_header.is_last_packet_in_frame = |
| 747 | rtp_header.markerBit || generic_descriptor_wire->LastPacketInSubFrame(); |
philipel | fab9129 | 2018-10-17 14:36:08 +0200 | [diff] [blame] | 748 | |
| 749 | if (generic_descriptor_wire->FirstPacketInSubFrame()) { |
Niels Möller | abbc50e | 2019-04-24 09:41:16 +0200 | [diff] [blame] | 750 | video_header.frame_type = |
philipel | fab9129 | 2018-10-17 14:36:08 +0200 | [diff] [blame] | 751 | generic_descriptor_wire->FrameDependenciesDiffs().empty() |
Niels Möller | 8f7ce22 | 2019-03-21 15:43:58 +0100 | [diff] [blame] | 752 | ? VideoFrameType::kVideoFrameKey |
| 753 | : VideoFrameType::kVideoFrameDelta; |
philipel | fab9129 | 2018-10-17 14:36:08 +0200 | [diff] [blame] | 754 | } |
| 755 | |
Niels Möller | 125b5d6 | 2019-03-11 16:11:07 +0100 | [diff] [blame] | 756 | video_header.width = generic_descriptor_wire->Width(); |
| 757 | video_header.height = generic_descriptor_wire->Height(); |
philipel | 2837edc | 2018-10-02 13:55:47 +0200 | [diff] [blame] | 758 | } else { |
| 759 | generic_descriptor_wire.reset(); |
philipel | b3e42a4 | 2018-09-13 10:57:14 +0200 | [diff] [blame] | 760 | } |
| 761 | |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 762 | OnReceivedPayloadData(parsed_payload.payload, parsed_payload.payload_length, |
Niels Möller | abbc50e | 2019-04-24 09:41:16 +0200 | [diff] [blame] | 763 | rtp_header, video_header, generic_descriptor_wire, |
| 764 | packet.recovered()); |
stefan@webrtc.org | 7bb8f02 | 2013-09-06 13:40:11 +0000 | [diff] [blame] | 765 | } |
| 766 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 767 | void RtpVideoStreamReceiver::ParseAndHandleEncapsulatingHeader( |
Niels Möller | 1f3206c | 2018-09-14 08:26:32 +0200 | [diff] [blame] | 768 | const RtpPacketReceived& packet) { |
Sebastian Jansson | b55015e | 2019-04-09 13:44:04 +0200 | [diff] [blame] | 769 | RTC_DCHECK_RUN_ON(&worker_task_checker_); |
Niels Möller | 1f3206c | 2018-09-14 08:26:32 +0200 | [diff] [blame] | 770 | if (packet.PayloadType() == config_.rtp.red_payload_type && |
| 771 | packet.payload_size() > 0) { |
| 772 | if (packet.payload()[0] == config_.rtp.ulpfec_payload_type) { |
Peter Boström | 0b25072 | 2016-04-22 18:23:15 +0200 | [diff] [blame] | 773 | // Notify video_receiver about received FEC packets to avoid NACKing these |
| 774 | // packets. |
Niels Möller | 1f3206c | 2018-09-14 08:26:32 +0200 | [diff] [blame] | 775 | NotifyReceiverOfEmptyPacket(packet.SequenceNumber()); |
asapersson@webrtc.org | 37c0559 | 2015-01-28 13:58:27 +0000 | [diff] [blame] | 776 | } |
Danil Chapovalov | 04fd215 | 2019-09-20 11:40:12 +0200 | [diff] [blame] | 777 | if (!ulpfec_receiver_->AddReceivedRedPacket( |
| 778 | packet, config_.rtp.ulpfec_payload_type)) { |
nisse | 30e8931 | 2017-05-29 08:16:37 -0700 | [diff] [blame] | 779 | return; |
stefan@webrtc.org | 7bb8f02 | 2013-09-06 13:40:11 +0000 | [diff] [blame] | 780 | } |
nisse | 30e8931 | 2017-05-29 08:16:37 -0700 | [diff] [blame] | 781 | ulpfec_receiver_->ProcessReceivedFec(); |
stefan@webrtc.org | 7bb8f02 | 2013-09-06 13:40:11 +0000 | [diff] [blame] | 782 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 783 | } |
| 784 | |
Niels Möller | bc01047 | 2018-03-23 13:22:29 +0100 | [diff] [blame] | 785 | // In the case of a video stream without picture ids and no rtx the |
| 786 | // RtpFrameReferenceFinder will need to know about padding to |
| 787 | // correctly calculate frame references. |
| 788 | void RtpVideoStreamReceiver::NotifyReceiverOfEmptyPacket(uint16_t seq_num) { |
philipel | 7acc4a4 | 2019-09-26 11:25:52 +0200 | [diff] [blame] | 789 | { |
| 790 | rtc::CritScope lock(&reference_finder_lock_); |
| 791 | reference_finder_->PaddingReceived(seq_num); |
| 792 | } |
Danil Chapovalov | f7457e5 | 2019-09-20 17:57:15 +0200 | [diff] [blame] | 793 | packet_buffer_.PaddingReceived(seq_num); |
Niels Möller | bc01047 | 2018-03-23 13:22:29 +0100 | [diff] [blame] | 794 | if (nack_module_) { |
Ying Wang | b32bb95 | 2018-10-31 10:12:27 +0100 | [diff] [blame] | 795 | nack_module_->OnReceivedPacket(seq_num, /* is_keyframe = */ false, |
| 796 | /* is _recovered = */ false); |
asapersson@webrtc.org | 37c0559 | 2015-01-28 13:58:27 +0000 | [diff] [blame] | 797 | } |
Elad Alon | 7d6a4c0 | 2019-02-25 13:00:51 +0100 | [diff] [blame] | 798 | if (loss_notification_controller_) { |
Elad Alon | ca2c430 | 2019-05-27 22:43:10 +0200 | [diff] [blame] | 799 | // TODO(bugs.webrtc.org/10336): Handle empty packets. |
Elad Alon | 7d6a4c0 | 2019-02-25 13:00:51 +0100 | [diff] [blame] | 800 | RTC_LOG(LS_WARNING) |
| 801 | << "LossNotificationController does not expect empty packets."; |
| 802 | } |
asapersson@webrtc.org | 37c0559 | 2015-01-28 13:58:27 +0000 | [diff] [blame] | 803 | } |
| 804 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 805 | bool RtpVideoStreamReceiver::DeliverRtcp(const uint8_t* rtcp_packet, |
| 806 | size_t rtcp_packet_length) { |
Sebastian Jansson | b55015e | 2019-04-09 13:44:04 +0200 | [diff] [blame] | 807 | RTC_DCHECK_RUN_ON(&worker_task_checker_); |
eladalon | 8b07305 | 2017-08-25 00:49:08 -0700 | [diff] [blame] | 808 | |
| 809 | if (!receiving_) { |
| 810 | return false; |
Peter Boström | 4fa7eca | 2016-03-02 15:05:53 +0100 | [diff] [blame] | 811 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 812 | |
Per | 83d0910 | 2016-04-15 14:59:13 +0200 | [diff] [blame] | 813 | rtp_rtcp_->IncomingRtcpPacket(rtcp_packet, rtcp_packet_length); |
wu@webrtc.org | cd70119 | 2014-04-24 22:10:24 +0000 | [diff] [blame] | 814 | |
pkasting@chromium.org | 16825b1 | 2015-01-12 21:51:21 +0000 | [diff] [blame] | 815 | int64_t rtt = 0; |
Niels Möller | 2ff1f2a | 2018-08-09 16:16:34 +0200 | [diff] [blame] | 816 | rtp_rtcp_->RTT(config_.rtp.remote_ssrc, &rtt, nullptr, nullptr, nullptr); |
minyue@webrtc.org | 2c0cdbc | 2014-10-09 10:52:43 +0000 | [diff] [blame] | 817 | if (rtt == 0) { |
| 818 | // Waiting for valid rtt. |
Peter Boström | d1d66ba | 2016-02-08 14:07:14 +0100 | [diff] [blame] | 819 | return true; |
minyue@webrtc.org | 2c0cdbc | 2014-10-09 10:52:43 +0000 | [diff] [blame] | 820 | } |
| 821 | uint32_t ntp_secs = 0; |
| 822 | uint32_t ntp_frac = 0; |
| 823 | uint32_t rtp_timestamp = 0; |
Ilya Nikolaevskiy | 7172ea1 | 2017-10-30 11:17:34 +0100 | [diff] [blame] | 824 | uint32_t recieved_ntp_secs = 0; |
| 825 | uint32_t recieved_ntp_frac = 0; |
| 826 | if (rtp_rtcp_->RemoteNTP(&ntp_secs, &ntp_frac, &recieved_ntp_secs, |
| 827 | &recieved_ntp_frac, &rtp_timestamp) != 0) { |
minyue@webrtc.org | 2c0cdbc | 2014-10-09 10:52:43 +0000 | [diff] [blame] | 828 | // Waiting for RTCP. |
Peter Boström | d1d66ba | 2016-02-08 14:07:14 +0100 | [diff] [blame] | 829 | return true; |
minyue@webrtc.org | 2c0cdbc | 2014-10-09 10:52:43 +0000 | [diff] [blame] | 830 | } |
Ilya Nikolaevskiy | 7172ea1 | 2017-10-30 11:17:34 +0100 | [diff] [blame] | 831 | NtpTime recieved_ntp(recieved_ntp_secs, recieved_ntp_frac); |
| 832 | int64_t time_since_recieved = |
| 833 | clock_->CurrentNtpInMilliseconds() - recieved_ntp.ToMs(); |
| 834 | // Don't use old SRs to estimate time. |
| 835 | if (time_since_recieved <= 1) { |
| 836 | ntp_estimator_.UpdateRtcpTimestamp(rtt, ntp_secs, ntp_frac, rtp_timestamp); |
| 837 | } |
wu@webrtc.org | cd70119 | 2014-04-24 22:10:24 +0000 | [diff] [blame] | 838 | |
Peter Boström | d1d66ba | 2016-02-08 14:07:14 +0100 | [diff] [blame] | 839 | return true; |
wu@webrtc.org | cd70119 | 2014-04-24 22:10:24 +0000 | [diff] [blame] | 840 | } |
| 841 | |
philipel | d4fac69 | 2017-09-04 07:03:46 -0700 | [diff] [blame] | 842 | void RtpVideoStreamReceiver::FrameContinuous(int64_t picture_id) { |
tommi | f284b7f | 2017-02-27 01:59:36 -0800 | [diff] [blame] | 843 | if (!nack_module_) |
| 844 | return; |
| 845 | |
philipel | a45102f | 2017-02-22 05:30:39 -0800 | [diff] [blame] | 846 | int seq_num = -1; |
| 847 | { |
| 848 | rtc::CritScope lock(&last_seq_num_cs_); |
| 849 | auto seq_num_it = last_seq_num_for_pic_id_.find(picture_id); |
| 850 | if (seq_num_it != last_seq_num_for_pic_id_.end()) |
| 851 | seq_num = seq_num_it->second; |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 852 | } |
philipel | a45102f | 2017-02-22 05:30:39 -0800 | [diff] [blame] | 853 | if (seq_num != -1) |
| 854 | nack_module_->ClearUpTo(seq_num); |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 855 | } |
| 856 | |
philipel | d4fac69 | 2017-09-04 07:03:46 -0700 | [diff] [blame] | 857 | void RtpVideoStreamReceiver::FrameDecoded(int64_t picture_id) { |
philipel | a45102f | 2017-02-22 05:30:39 -0800 | [diff] [blame] | 858 | int seq_num = -1; |
| 859 | { |
| 860 | rtc::CritScope lock(&last_seq_num_cs_); |
| 861 | auto seq_num_it = last_seq_num_for_pic_id_.find(picture_id); |
| 862 | if (seq_num_it != last_seq_num_for_pic_id_.end()) { |
| 863 | seq_num = seq_num_it->second; |
| 864 | last_seq_num_for_pic_id_.erase(last_seq_num_for_pic_id_.begin(), |
| 865 | ++seq_num_it); |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 866 | } |
philipel | a45102f | 2017-02-22 05:30:39 -0800 | [diff] [blame] | 867 | } |
| 868 | if (seq_num != -1) { |
Danil Chapovalov | f7457e5 | 2019-09-20 17:57:15 +0200 | [diff] [blame] | 869 | packet_buffer_.ClearTo(seq_num); |
philipel | 7acc4a4 | 2019-09-26 11:25:52 +0200 | [diff] [blame] | 870 | rtc::CritScope lock(&reference_finder_lock_); |
philipel | a45102f | 2017-02-22 05:30:39 -0800 | [diff] [blame] | 871 | reference_finder_->ClearTo(seq_num); |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 872 | } |
| 873 | } |
| 874 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 875 | void RtpVideoStreamReceiver::SignalNetworkState(NetworkState state) { |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 876 | rtp_rtcp_->SetRTCPStatus(state == kNetworkUp ? config_.rtp.rtcp_mode |
| 877 | : RtcpMode::kOff); |
| 878 | } |
| 879 | |
Ilya Nikolaevskiy | d397a0d | 2018-02-21 15:57:09 +0100 | [diff] [blame] | 880 | int RtpVideoStreamReceiver::GetUniqueFramesSeen() const { |
Danil Chapovalov | f7457e5 | 2019-09-20 17:57:15 +0200 | [diff] [blame] | 881 | return packet_buffer_.GetUniqueFramesSeen(); |
Ilya Nikolaevskiy | d397a0d | 2018-02-21 15:57:09 +0100 | [diff] [blame] | 882 | } |
| 883 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 884 | void RtpVideoStreamReceiver::StartReceive() { |
Sebastian Jansson | b55015e | 2019-04-09 13:44:04 +0200 | [diff] [blame] | 885 | RTC_DCHECK_RUN_ON(&worker_task_checker_); |
mflodman@webrtc.org | ad4ee36 | 2011-11-28 22:39:24 +0000 | [diff] [blame] | 886 | receiving_ = true; |
| 887 | } |
| 888 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 889 | void RtpVideoStreamReceiver::StopReceive() { |
Sebastian Jansson | b55015e | 2019-04-09 13:44:04 +0200 | [diff] [blame] | 890 | RTC_DCHECK_RUN_ON(&worker_task_checker_); |
mflodman@webrtc.org | ad4ee36 | 2011-11-28 22:39:24 +0000 | [diff] [blame] | 891 | receiving_ = false; |
| 892 | } |
| 893 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 894 | void RtpVideoStreamReceiver::UpdateHistograms() { |
brandtr | d55c3f6 | 2016-10-31 04:51:33 -0700 | [diff] [blame] | 895 | FecPacketCounter counter = ulpfec_receiver_->GetPacketCounter(); |
asapersson | 0c43f77 | 2016-11-30 01:42:26 -0800 | [diff] [blame] | 896 | if (counter.first_packet_time_ms == -1) |
| 897 | return; |
| 898 | |
| 899 | int64_t elapsed_sec = |
| 900 | (clock_->TimeInMilliseconds() - counter.first_packet_time_ms) / 1000; |
| 901 | if (elapsed_sec < metrics::kMinRunTimeInSeconds) |
| 902 | return; |
| 903 | |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 904 | if (counter.num_packets > 0) { |
asapersson | 1d02d3e | 2016-09-09 22:40:25 -0700 | [diff] [blame] | 905 | RTC_HISTOGRAM_PERCENTAGE( |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 906 | "WebRTC.Video.ReceivedFecPacketsInPercent", |
| 907 | static_cast<int>(counter.num_fec_packets * 100 / counter.num_packets)); |
| 908 | } |
| 909 | if (counter.num_fec_packets > 0) { |
asapersson | 1d02d3e | 2016-09-09 22:40:25 -0700 | [diff] [blame] | 910 | RTC_HISTOGRAM_PERCENTAGE("WebRTC.Video.RecoveredMediaPacketsInPercentOfFec", |
| 911 | static_cast<int>(counter.num_recovered_packets * |
| 912 | 100 / counter.num_fec_packets)); |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 913 | } |
Niels Möller | caef51e | 2019-08-27 09:19:49 +0200 | [diff] [blame] | 914 | if (config_.rtp.ulpfec_payload_type != -1) { |
| 915 | RTC_HISTOGRAM_COUNTS_10000( |
| 916 | "WebRTC.Video.FecBitrateReceivedInKbps", |
| 917 | static_cast<int>(counter.num_bytes * 8 / elapsed_sec / 1000)); |
| 918 | } |
mflodman | dc7d0d2 | 2016-05-06 05:32:22 -0700 | [diff] [blame] | 919 | } |
| 920 | |
nisse | b1f2ff9 | 2017-06-09 04:01:55 -0700 | [diff] [blame] | 921 | void RtpVideoStreamReceiver::InsertSpsPpsIntoTracker(uint8_t payload_type) { |
philipel | 022b54e | 2016-12-20 04:15:59 -0800 | [diff] [blame] | 922 | auto codec_params_it = pt_codec_params_.find(payload_type); |
| 923 | if (codec_params_it == pt_codec_params_.end()) |
| 924 | return; |
| 925 | |
Mirko Bonadei | 675513b | 2017-11-09 11:09:25 +0100 | [diff] [blame] | 926 | RTC_LOG(LS_INFO) << "Found out of band supplied codec parameters for" |
| 927 | << " payload type: " << static_cast<int>(payload_type); |
philipel | 022b54e | 2016-12-20 04:15:59 -0800 | [diff] [blame] | 928 | |
| 929 | H264SpropParameterSets sprop_decoder; |
| 930 | auto sprop_base64_it = |
| 931 | codec_params_it->second.find(cricket::kH264FmtpSpropParameterSets); |
| 932 | |
| 933 | if (sprop_base64_it == codec_params_it->second.end()) |
| 934 | return; |
| 935 | |
johan | 62d02c3 | 2017-01-24 04:38:27 -0800 | [diff] [blame] | 936 | if (!sprop_decoder.DecodeSprop(sprop_base64_it->second.c_str())) |
philipel | 022b54e | 2016-12-20 04:15:59 -0800 | [diff] [blame] | 937 | return; |
| 938 | |
johan | d2b092f | 2017-01-24 02:38:17 -0800 | [diff] [blame] | 939 | tracker_.InsertSpsPpsNalus(sprop_decoder.sps_nalu(), |
| 940 | sprop_decoder.pps_nalu()); |
philipel | 022b54e | 2016-12-20 04:15:59 -0800 | [diff] [blame] | 941 | } |
| 942 | |
mflodman@webrtc.org | ad4ee36 | 2011-11-28 22:39:24 +0000 | [diff] [blame] | 943 | } // namespace webrtc |