OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 | 109 |
110 void RTPSenderVideo::SendVideoPacketAsRed(uint8_t* data_buffer, | 110 void RTPSenderVideo::SendVideoPacketAsRed(uint8_t* data_buffer, |
111 const size_t payload_length, | 111 const size_t payload_length, |
112 const size_t rtp_header_length, | 112 const size_t rtp_header_length, |
113 uint16_t media_seq_num, | 113 uint16_t media_seq_num, |
114 const uint32_t capture_timestamp, | 114 const uint32_t capture_timestamp, |
115 int64_t capture_time_ms, | 115 int64_t capture_time_ms, |
116 StorageType media_packet_storage, | 116 StorageType media_packet_storage, |
117 bool protect) { | 117 bool protect) { |
118 std::unique_ptr<RedPacket> red_packet; | 118 std::unique_ptr<RedPacket> red_packet; |
119 std::vector<RedPacket*> fec_packets; | 119 std::vector<std::unique_ptr<RedPacket>> fec_packets; |
120 StorageType fec_storage = kDontRetransmit; | 120 StorageType fec_storage = kDontRetransmit; |
121 uint16_t next_fec_sequence_number = 0; | 121 uint16_t next_fec_sequence_number = 0; |
122 { | 122 { |
123 // Only protect while creating RED and FEC packets, not when sending. | 123 // Only protect while creating RED and FEC packets, not when sending. |
124 rtc::CritScope cs(&crit_); | 124 rtc::CritScope cs(&crit_); |
125 red_packet.reset(producer_fec_.BuildRedPacket( | 125 red_packet = ProducerFec::BuildRedPacket( |
126 data_buffer, payload_length, rtp_header_length, red_payload_type_)); | 126 data_buffer, payload_length, rtp_header_length, red_payload_type_); |
127 if (protect) { | 127 if (protect) { |
128 producer_fec_.AddRtpPacketAndGenerateFec(data_buffer, payload_length, | 128 producer_fec_.AddRtpPacketAndGenerateFec(data_buffer, payload_length, |
129 rtp_header_length); | 129 rtp_header_length); |
130 } | 130 } |
131 uint16_t num_fec_packets = producer_fec_.NumAvailableFecPackets(); | 131 uint16_t num_fec_packets = producer_fec_.NumAvailableFecPackets(); |
132 if (num_fec_packets > 0) { | 132 if (num_fec_packets > 0) { |
133 next_fec_sequence_number = | 133 next_fec_sequence_number = |
134 _rtpSender.AllocateSequenceNumber(num_fec_packets); | 134 _rtpSender.AllocateSequenceNumber(num_fec_packets); |
135 fec_packets = producer_fec_.GetFecPackets( | 135 fec_packets = producer_fec_.GetFecPacketsAsRed( |
136 red_payload_type_, fec_payload_type_, next_fec_sequence_number, | 136 red_payload_type_, fec_payload_type_, next_fec_sequence_number, |
137 rtp_header_length); | 137 rtp_header_length); |
138 RTC_DCHECK_EQ(num_fec_packets, fec_packets.size()); | 138 RTC_DCHECK_EQ(num_fec_packets, fec_packets.size()); |
139 if (_retransmissionSettings & kRetransmitFECPackets) | 139 if (_retransmissionSettings & kRetransmitFECPackets) |
140 fec_storage = kAllowRetransmission; | 140 fec_storage = kAllowRetransmission; |
141 } | 141 } |
142 } | 142 } |
143 if (_rtpSender.SendToNetwork( | 143 if (_rtpSender.SendToNetwork( |
144 red_packet->data(), red_packet->length() - rtp_header_length, | 144 red_packet->data(), red_packet->length() - rtp_header_length, |
145 rtp_header_length, capture_time_ms, media_packet_storage, | 145 rtp_header_length, capture_time_ms, media_packet_storage, |
146 RtpPacketSender::kLowPriority) == 0) { | 146 RtpPacketSender::kLowPriority) == 0) { |
147 rtc::CritScope cs(&stats_crit_); | 147 rtc::CritScope cs(&stats_crit_); |
148 video_bitrate_.Update(red_packet->length(), clock_->TimeInMilliseconds()); | 148 video_bitrate_.Update(red_packet->length(), clock_->TimeInMilliseconds()); |
149 TRACE_EVENT_INSTANT2(TRACE_DISABLED_BY_DEFAULT("webrtc_rtp"), | 149 TRACE_EVENT_INSTANT2(TRACE_DISABLED_BY_DEFAULT("webrtc_rtp"), |
150 "Video::PacketRed", "timestamp", capture_timestamp, | 150 "Video::PacketRed", "timestamp", capture_timestamp, |
151 "seqnum", media_seq_num); | 151 "seqnum", media_seq_num); |
152 } else { | 152 } else { |
153 LOG(LS_WARNING) << "Failed to send RED packet " << media_seq_num; | 153 LOG(LS_WARNING) << "Failed to send RED packet " << media_seq_num; |
154 } | 154 } |
155 for (RedPacket* fec_packet : fec_packets) { | 155 for (const auto& fec_packet : fec_packets) { |
156 if (_rtpSender.SendToNetwork( | 156 if (_rtpSender.SendToNetwork( |
157 fec_packet->data(), fec_packet->length() - rtp_header_length, | 157 fec_packet->data(), fec_packet->length() - rtp_header_length, |
158 rtp_header_length, capture_time_ms, fec_storage, | 158 rtp_header_length, capture_time_ms, fec_storage, |
159 RtpPacketSender::kLowPriority) == 0) { | 159 RtpPacketSender::kLowPriority) == 0) { |
160 rtc::CritScope cs(&stats_crit_); | 160 rtc::CritScope cs(&stats_crit_); |
161 fec_bitrate_.Update(fec_packet->length(), clock_->TimeInMilliseconds()); | 161 fec_bitrate_.Update(fec_packet->length(), clock_->TimeInMilliseconds()); |
162 TRACE_EVENT_INSTANT2(TRACE_DISABLED_BY_DEFAULT("webrtc_rtp"), | 162 TRACE_EVENT_INSTANT2(TRACE_DISABLED_BY_DEFAULT("webrtc_rtp"), |
163 "Video::PacketFec", "timestamp", capture_timestamp, | 163 "Video::PacketFec", "timestamp", capture_timestamp, |
164 "seqnum", next_fec_sequence_number); | 164 "seqnum", next_fec_sequence_number); |
165 } else { | 165 } else { |
166 LOG(LS_WARNING) << "Failed to send FEC packet " | 166 LOG(LS_WARNING) << "Failed to send FEC packet " |
167 << next_fec_sequence_number; | 167 << next_fec_sequence_number; |
168 } | 168 } |
169 delete fec_packet; | |
170 ++next_fec_sequence_number; | 169 ++next_fec_sequence_number; |
171 } | 170 } |
172 } | 171 } |
173 | 172 |
174 void RTPSenderVideo::SetGenericFECStatus(const bool enable, | 173 void RTPSenderVideo::SetGenericFECStatus(const bool enable, |
175 const uint8_t payloadTypeRED, | 174 const uint8_t payloadTypeRED, |
176 const uint8_t payloadTypeFEC) { | 175 const uint8_t payloadTypeFEC) { |
177 RTC_DCHECK(!enable || payloadTypeRED > 0); | 176 RTC_DCHECK(!enable || payloadTypeRED > 0); |
178 rtc::CritScope cs(&crit_); | 177 rtc::CritScope cs(&crit_); |
179 fec_enabled_ = enable; | 178 fec_enabled_ = enable; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 videoType, _rtpSender.MaxDataPayloadLength(), | 239 videoType, _rtpSender.MaxDataPayloadLength(), |
241 video_header ? &(video_header->codecHeader) : nullptr, frameType)); | 240 video_header ? &(video_header->codecHeader) : nullptr, frameType)); |
242 | 241 |
243 StorageType storage; | 242 StorageType storage; |
244 int red_payload_type; | 243 int red_payload_type; |
245 bool first_frame = first_frame_sent_(); | 244 bool first_frame = first_frame_sent_(); |
246 { | 245 { |
247 rtc::CritScope cs(&crit_); | 246 rtc::CritScope cs(&crit_); |
248 FecProtectionParams* fec_params = | 247 FecProtectionParams* fec_params = |
249 frameType == kVideoFrameKey ? &key_fec_params_ : &delta_fec_params_; | 248 frameType == kVideoFrameKey ? &key_fec_params_ : &delta_fec_params_; |
250 producer_fec_.SetFecParameters(fec_params, 0); | 249 // We currently do not use unequal protection in the FEC. |
| 250 // This is signalled both here (by setting the number of important |
| 251 // packets to zero), as well as in ProducerFec::AddRtpPacketAndGenerateFec. |
| 252 constexpr int kNumImportantPackets = 0; |
| 253 producer_fec_.SetFecParameters(fec_params, kNumImportantPackets); |
251 storage = packetizer->GetStorageType(_retransmissionSettings); | 254 storage = packetizer->GetStorageType(_retransmissionSettings); |
252 red_payload_type = red_payload_type_; | 255 red_payload_type = red_payload_type_; |
253 } | 256 } |
254 | 257 |
255 // Register CVO rtp header extension at the first time when we receive a frame | 258 // Register CVO rtp header extension at the first time when we receive a frame |
256 // with pending rotation. | 259 // with pending rotation. |
257 bool video_rotation_active = false; | 260 bool video_rotation_active = false; |
258 if (video_header && video_header->rotation != kVideoRotation_0) { | 261 if (video_header && video_header->rotation != kVideoRotation_0) { |
259 video_rotation_active = _rtpSender.ActivateCVORtpHeaderExtension(); | 262 video_rotation_active = _rtpSender.ActivateCVORtpHeaderExtension(); |
260 } | 263 } |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 rtc::CritScope cs(&crit_); | 359 rtc::CritScope cs(&crit_); |
357 return _retransmissionSettings; | 360 return _retransmissionSettings; |
358 } | 361 } |
359 | 362 |
360 void RTPSenderVideo::SetSelectiveRetransmissions(uint8_t settings) { | 363 void RTPSenderVideo::SetSelectiveRetransmissions(uint8_t settings) { |
361 rtc::CritScope cs(&crit_); | 364 rtc::CritScope cs(&crit_); |
362 _retransmissionSettings = settings; | 365 _retransmissionSettings = settings; |
363 } | 366 } |
364 | 367 |
365 } // namespace webrtc | 368 } // namespace webrtc |
OLD | NEW |