blob: ae905df95a8db4d5b4c975f82d14320721c5d090 [file] [log] [blame]
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +02001/*
2 * Copyright 2018 The WebRTC project authors. All Rights Reserved.
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#include "video/video_send_stream_impl.h"
11
Yves Gerey3e707812018-11-28 16:47:49 +010012#include <stdio.h>
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020013#include <algorithm>
Yves Gerey3e707812018-11-28 16:47:49 +010014#include <cstdint>
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020015#include <string>
16#include <utility>
17
Steve Anton10542f22019-01-11 09:11:00 -080018#include "api/crypto/crypto_options.h"
19#include "api/rtp_parameters.h"
Mirko Bonadeid9708072019-01-25 20:26:48 +010020#include "api/scoped_refptr.h"
Yves Gerey3e707812018-11-28 16:47:49 +010021#include "api/video_codecs/video_codec.h"
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020022#include "call/rtp_transport_controller_send_interface.h"
Yves Gerey3e707812018-11-28 16:47:49 +010023#include "call/video_send_stream.h"
24#include "common_types.h" // NOLINT(build/include)
25#include "modules/pacing/paced_sender.h"
Steve Anton10542f22019-01-11 09:11:00 -080026#include "rtc_base/atomic_ops.h"
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020027#include "rtc_base/checks.h"
28#include "rtc_base/experiments/alr_experiment.h"
Erik Språngcd76eab2019-01-21 18:06:46 +010029#include "rtc_base/experiments/rate_control_settings.h"
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020030#include "rtc_base/logging.h"
31#include "rtc_base/numerics/safe_conversions.h"
Yves Gerey3e707812018-11-28 16:47:49 +010032#include "rtc_base/sequenced_task_checker.h"
33#include "rtc_base/thread_checker.h"
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020034#include "rtc_base/trace_event.h"
Yves Gerey3e707812018-11-28 16:47:49 +010035#include "system_wrappers/include/clock.h"
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020036#include "system_wrappers/include/field_trial.h"
37
38namespace webrtc {
39namespace internal {
40namespace {
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020041
Erik Språng4e193e42018-09-14 19:01:58 +020042// Max positive size difference to treat allocations as "similar".
43static constexpr int kMaxVbaSizeDifferencePercent = 10;
44// Max time we will throttle similar video bitrate allocations.
45static constexpr int64_t kMaxVbaThrottleTimeMs = 500;
46
Sebastian Janssonecb68972019-01-18 10:30:54 +010047constexpr TimeDelta kEncoderTimeOut = TimeDelta::Seconds<2>();
48
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020049bool TransportSeqNumExtensionConfigured(const VideoSendStream::Config& config) {
50 const std::vector<RtpExtension>& extensions = config.rtp.extensions;
51 return std::find_if(
52 extensions.begin(), extensions.end(), [](const RtpExtension& ext) {
53 return ext.uri == RtpExtension::kTransportSequenceNumberUri;
54 }) != extensions.end();
55}
56
57const char kForcedFallbackFieldTrial[] =
58 "WebRTC-VP8-Forced-Fallback-Encoder-v2";
59
Danil Chapovalovb9b146c2018-06-15 12:28:07 +020060absl::optional<int> GetFallbackMinBpsFromFieldTrial() {
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020061 if (!webrtc::field_trial::IsEnabled(kForcedFallbackFieldTrial))
Danil Chapovalovb9b146c2018-06-15 12:28:07 +020062 return absl::nullopt;
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020063
64 std::string group =
65 webrtc::field_trial::FindFullName(kForcedFallbackFieldTrial);
66 if (group.empty())
Danil Chapovalovb9b146c2018-06-15 12:28:07 +020067 return absl::nullopt;
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020068
69 int min_pixels;
70 int max_pixels;
71 int min_bps;
72 if (sscanf(group.c_str(), "Enabled-%d,%d,%d", &min_pixels, &max_pixels,
73 &min_bps) != 3) {
Danil Chapovalovb9b146c2018-06-15 12:28:07 +020074 return absl::nullopt;
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020075 }
76
77 if (min_bps <= 0)
Danil Chapovalovb9b146c2018-06-15 12:28:07 +020078 return absl::nullopt;
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020079
80 return min_bps;
81}
82
83int GetEncoderMinBitrateBps() {
84 const int kDefaultEncoderMinBitrateBps = 30000;
85 return GetFallbackMinBpsFromFieldTrial().value_or(
86 kDefaultEncoderMinBitrateBps);
87}
88
Erik Språngb57ab382018-09-13 10:52:38 +020089// Calculate max padding bitrate for a multi layer codec.
90int CalculateMaxPadBitrateBps(const std::vector<VideoStream>& streams,
Rasmus Brandtc402dbe2019-02-04 11:09:46 +010091 VideoEncoderConfig::ContentType content_type,
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020092 int min_transmit_bitrate_bps,
Erik Språngb57ab382018-09-13 10:52:38 +020093 bool pad_to_min_bitrate,
94 bool alr_probing) {
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +020095 int pad_up_to_bitrate_bps = 0;
Erik Språngb57ab382018-09-13 10:52:38 +020096
97 // Filter out only the active streams;
98 std::vector<VideoStream> active_streams;
99 for (const VideoStream& stream : streams) {
100 if (stream.active)
101 active_streams.emplace_back(stream);
102 }
103
104 if (active_streams.size() > 1) {
105 if (alr_probing) {
106 // With alr probing, just pad to the min bitrate of the lowest stream,
107 // probing will handle the rest of the rampup.
108 pad_up_to_bitrate_bps = active_streams[0].min_bitrate_bps;
109 } else {
Rasmus Brandtc402dbe2019-02-04 11:09:46 +0100110 // Without alr probing, pad up to start bitrate of the
111 // highest active stream.
112 const double hysteresis_factor =
113 RateControlSettings::ParseFromFieldTrials()
114 .GetSimulcastHysteresisFactor(content_type);
115 const size_t top_active_stream_idx = active_streams.size() - 1;
116 pad_up_to_bitrate_bps = std::min(
117 static_cast<int>(
118 hysteresis_factor *
119 active_streams[top_active_stream_idx].min_bitrate_bps +
120 0.5),
121 active_streams[top_active_stream_idx].target_bitrate_bps);
122
123 // Add target_bitrate_bps of the lower active streams.
124 for (size_t i = 0; i < top_active_stream_idx; ++i) {
Erik Språngb57ab382018-09-13 10:52:38 +0200125 pad_up_to_bitrate_bps += active_streams[i].target_bitrate_bps;
Rasmus Brandtc402dbe2019-02-04 11:09:46 +0100126 }
Erik Språngb57ab382018-09-13 10:52:38 +0200127 }
128 } else if (!active_streams.empty() && pad_to_min_bitrate) {
129 pad_up_to_bitrate_bps = active_streams[0].min_bitrate_bps;
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200130 }
131
132 pad_up_to_bitrate_bps =
133 std::max(pad_up_to_bitrate_bps, min_transmit_bitrate_bps);
134
135 return pad_up_to_bitrate_bps;
136}
137
Benjamin Wright192eeec2018-10-17 17:27:25 -0700138RtpSenderFrameEncryptionConfig CreateFrameEncryptionConfig(
139 const VideoSendStream::Config* config) {
140 RtpSenderFrameEncryptionConfig frame_encryption_config;
141 frame_encryption_config.frame_encryptor = config->frame_encryptor;
142 frame_encryption_config.crypto_options = config->crypto_options;
143 return frame_encryption_config;
144}
145
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200146RtpSenderObservers CreateObservers(CallStats* call_stats,
Niels Möllerfa89d842019-01-30 16:33:45 +0100147 EncoderKeyFrameCallback* encoder_feedback,
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200148 SendStatisticsProxy* stats_proxy,
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200149 SendDelayStats* send_delay_stats) {
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200150 RtpSenderObservers observers;
151 observers.rtcp_rtt_stats = call_stats;
152 observers.intra_frame_callback = encoder_feedback;
153 observers.rtcp_stats = stats_proxy;
154 observers.rtp_stats = stats_proxy;
155 observers.bitrate_observer = stats_proxy;
156 observers.frame_count_observer = stats_proxy;
157 observers.rtcp_type_observer = stats_proxy;
158 observers.send_delay_observer = stats_proxy;
159 observers.send_packet_observer = send_delay_stats;
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200160 return observers;
161}
Erik Språngb57ab382018-09-13 10:52:38 +0200162
163absl::optional<AlrExperimentSettings> GetAlrSettings(
164 VideoEncoderConfig::ContentType content_type) {
165 if (content_type == VideoEncoderConfig::ContentType::kScreen) {
166 return AlrExperimentSettings::CreateFromFieldTrial(
167 AlrExperimentSettings::kScreenshareProbingBweExperimentName);
168 }
169 return AlrExperimentSettings::CreateFromFieldTrial(
170 AlrExperimentSettings::kStrictPacingAndProbingExperimentName);
171}
Erik Språng4e193e42018-09-14 19:01:58 +0200172
173bool SameStreamsEnabled(const VideoBitrateAllocation& lhs,
174 const VideoBitrateAllocation& rhs) {
175 for (size_t si = 0; si < kMaxSpatialLayers; ++si) {
176 for (size_t ti = 0; ti < kMaxTemporalStreams; ++ti) {
177 if (lhs.HasBitrate(si, ti) != rhs.HasBitrate(si, ti)) {
178 return false;
179 }
180 }
181 }
182 return true;
183}
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200184} // namespace
185
Christoffer Rodbro196c5ba2018-11-27 11:56:25 +0100186PacingConfig::PacingConfig()
187 : pacing_factor("factor", PacedSender::kDefaultPaceMultiplier),
188 max_pacing_delay("max_delay",
189 TimeDelta::ms(PacedSender::kMaxQueueLengthMs)) {
190 ParseFieldTrial({&pacing_factor, &max_pacing_delay},
191 field_trial::FindFullName("WebRTC-Video-Pacing"));
192}
193PacingConfig::PacingConfig(const PacingConfig&) = default;
194PacingConfig::~PacingConfig() = default;
195
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200196VideoSendStreamImpl::VideoSendStreamImpl(
Sebastian Jansson572c60f2019-03-04 18:30:41 +0100197 Clock* clock,
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200198 SendStatisticsProxy* stats_proxy,
199 rtc::TaskQueue* worker_queue,
200 CallStats* call_stats,
201 RtpTransportControllerSendInterface* transport,
Sebastian Jansson652dc912018-04-19 17:09:15 +0200202 BitrateAllocatorInterface* bitrate_allocator,
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200203 SendDelayStats* send_delay_stats,
Sebastian Jansson652dc912018-04-19 17:09:15 +0200204 VideoStreamEncoderInterface* video_stream_encoder,
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200205 RtcEventLog* event_log,
206 const VideoSendStream::Config* config,
207 int initial_encoder_max_bitrate,
208 double initial_encoder_bitrate_priority,
209 std::map<uint32_t, RtpState> suspended_ssrcs,
210 std::map<uint32_t, RtpPayloadState> suspended_payload_states,
211 VideoEncoderConfig::ContentType content_type,
Niels Möller46879152019-01-07 15:54:47 +0100212 std::unique_ptr<FecController> fec_controller,
213 MediaTransportInterface* media_transport)
Sebastian Jansson572c60f2019-03-04 18:30:41 +0100214 : clock_(clock),
215 has_alr_probing_(config->periodic_alr_bandwidth_probing ||
Erik Språngb57ab382018-09-13 10:52:38 +0200216 GetAlrSettings(content_type)),
Christoffer Rodbro196c5ba2018-11-27 11:56:25 +0100217 pacing_config_(PacingConfig()),
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200218 stats_proxy_(stats_proxy),
219 config_(config),
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200220 worker_queue_(worker_queue),
Erik Språngcd76eab2019-01-21 18:06:46 +0100221 timed_out_(false),
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200222 call_stats_(call_stats),
223 transport_(transport),
224 bitrate_allocator_(bitrate_allocator),
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200225 max_padding_bitrate_(0),
226 encoder_min_bitrate_bps_(0),
227 encoder_target_rate_bps_(0),
228 encoder_bitrate_priority_(initial_encoder_bitrate_priority),
229 has_packet_feedback_(false),
230 video_stream_encoder_(video_stream_encoder),
Sebastian Jansson572c60f2019-03-04 18:30:41 +0100231 encoder_feedback_(clock, config_->rtp.ssrcs, video_stream_encoder),
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200232 bandwidth_observer_(transport->GetBandwidthObserver()),
Benjamin Wright192eeec2018-10-17 17:27:25 -0700233 rtp_video_sender_(transport_->CreateRtpVideoSender(
Benjamin Wright192eeec2018-10-17 17:27:25 -0700234 suspended_ssrcs,
235 suspended_payload_states,
236 config_->rtp,
Jiawei Ou55718122018-11-09 13:17:39 -0800237 config_->rtcp_report_interval_ms,
Benjamin Wright192eeec2018-10-17 17:27:25 -0700238 config_->send_transport,
239 CreateObservers(call_stats,
240 &encoder_feedback_,
241 stats_proxy_,
242 send_delay_stats),
243 event_log,
244 std::move(fec_controller),
245 CreateFrameEncryptionConfig(config_))),
Niels Möller46879152019-01-07 15:54:47 +0100246 weak_ptr_factory_(this),
247 media_transport_(media_transport) {
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200248 RTC_DCHECK_RUN_ON(worker_queue_);
249 RTC_LOG(LS_INFO) << "VideoSendStreamInternal: " << config_->ToString();
250 weak_ptr_ = weak_ptr_factory_.GetWeakPtr();
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200251
Niels Möller46879152019-01-07 15:54:47 +0100252 if (media_transport_) {
253 // The configured ssrc is interpreted as a channel id, so there must be
254 // exactly one.
255 RTC_DCHECK_EQ(config_->rtp.ssrcs.size(), 1);
Niels Möllerfa89d842019-01-30 16:33:45 +0100256 media_transport_->SetKeyFrameRequestCallback(&encoder_feedback_);
Niels Möller46879152019-01-07 15:54:47 +0100257 } else {
258 RTC_DCHECK(!config_->rtp.ssrcs.empty());
259 }
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200260 RTC_DCHECK(call_stats_);
261 RTC_DCHECK(transport_);
262 RTC_DCHECK_NE(initial_encoder_max_bitrate, 0);
263
264 if (initial_encoder_max_bitrate > 0) {
265 encoder_max_bitrate_bps_ =
266 rtc::dchecked_cast<uint32_t>(initial_encoder_max_bitrate);
267 } else {
268 // TODO(srte): Make sure max bitrate is not set to negative values. We don't
269 // have any way to handle unset values in downstream code, such as the
270 // bitrate allocator. Previously -1 was implicitly casted to UINT32_MAX, a
271 // behaviour that is not safe. Converting to 10 Mbps should be safe for
272 // reasonable use cases as it allows adding the max of multiple streams
273 // without wrappping around.
274 const int kFallbackMaxBitrateBps = 10000000;
275 RTC_DLOG(LS_ERROR) << "ERROR: Initial encoder max bitrate = "
276 << initial_encoder_max_bitrate << " which is <= 0!";
277 RTC_DLOG(LS_INFO) << "Using default encoder max bitrate = 10 Mbps";
278 encoder_max_bitrate_bps_ = kFallbackMaxBitrateBps;
279 }
280
281 RTC_CHECK(AlrExperimentSettings::MaxOneFieldTrialEnabled());
282 // If send-side BWE is enabled, check if we should apply updated probing and
283 // pacing settings.
284 if (TransportSeqNumExtensionConfigured(*config_)) {
285 has_packet_feedback_ = true;
286
Erik Språngb57ab382018-09-13 10:52:38 +0200287 absl::optional<AlrExperimentSettings> alr_settings =
288 GetAlrSettings(content_type);
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200289 if (alr_settings) {
290 transport->EnablePeriodicAlrProbing(true);
291 transport->SetPacingFactor(alr_settings->pacing_factor);
292 configured_pacing_factor_ = alr_settings->pacing_factor;
293 transport->SetQueueTimeLimit(alr_settings->max_paced_queue_time);
294 } else {
Erik Språngcd76eab2019-01-21 18:06:46 +0100295 RateControlSettings rate_control_settings =
296 RateControlSettings::ParseFromFieldTrials();
297
298 transport->EnablePeriodicAlrProbing(
299 rate_control_settings.UseAlrProbing());
300 const double pacing_factor =
301 rate_control_settings.GetPacingFactor().value_or(
302 pacing_config_.pacing_factor);
303 transport->SetPacingFactor(pacing_factor);
304 configured_pacing_factor_ = pacing_factor;
Christoffer Rodbro196c5ba2018-11-27 11:56:25 +0100305 transport->SetQueueTimeLimit(pacing_config_.max_pacing_delay.Get().ms());
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200306 }
307 }
308
309 if (config_->periodic_alr_bandwidth_probing) {
310 transport->EnablePeriodicAlrProbing(true);
311 }
312
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200313 RTC_DCHECK_GE(config_->rtp.payload_type, 0);
314 RTC_DCHECK_LE(config_->rtp.payload_type, 127);
315
316 video_stream_encoder_->SetStartBitrate(
317 bitrate_allocator_->GetStartBitrate(this));
318
319 // Only request rotation at the source when we positively know that the remote
320 // side doesn't support the rotation extension. This allows us to prepare the
321 // encoder in the expectation that rotation is supported - which is the common
322 // case.
323 bool rotation_applied =
324 std::find_if(config_->rtp.extensions.begin(),
325 config_->rtp.extensions.end(),
326 [](const RtpExtension& extension) {
327 return extension.uri == RtpExtension::kVideoRotationUri;
328 }) == config_->rtp.extensions.end();
329
330 video_stream_encoder_->SetSink(this, rotation_applied);
331}
332
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200333VideoSendStreamImpl::~VideoSendStreamImpl() {
334 RTC_DCHECK_RUN_ON(worker_queue_);
Stefan Holmer9416ef82018-07-19 10:34:38 +0200335 RTC_DCHECK(!rtp_video_sender_->IsActive())
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200336 << "VideoSendStreamImpl::Stop not called";
337 RTC_LOG(LS_INFO) << "~VideoSendStreamInternal: " << config_->ToString();
Stefan Holmer9416ef82018-07-19 10:34:38 +0200338 transport_->DestroyRtpVideoSender(rtp_video_sender_);
Niels Möllerfa89d842019-01-30 16:33:45 +0100339 if (media_transport_) {
340 media_transport_->SetKeyFrameRequestCallback(nullptr);
341 }
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200342}
343
344void VideoSendStreamImpl::RegisterProcessThread(
345 ProcessThread* module_process_thread) {
Stefan Holmer9416ef82018-07-19 10:34:38 +0200346 rtp_video_sender_->RegisterProcessThread(module_process_thread);
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200347}
348
349void VideoSendStreamImpl::DeRegisterProcessThread() {
Stefan Holmer9416ef82018-07-19 10:34:38 +0200350 rtp_video_sender_->DeRegisterProcessThread();
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200351}
352
Niels Möller8fb1a6a2019-03-05 14:29:42 +0100353void VideoSendStreamImpl::DeliverRtcp(const uint8_t* packet, size_t length) {
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200354 // Runs on a network thread.
355 RTC_DCHECK(!worker_queue_->IsCurrent());
Stefan Holmer9416ef82018-07-19 10:34:38 +0200356 rtp_video_sender_->DeliverRtcp(packet, length);
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200357}
358
359void VideoSendStreamImpl::UpdateActiveSimulcastLayers(
360 const std::vector<bool> active_layers) {
361 RTC_DCHECK_RUN_ON(worker_queue_);
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200362 RTC_LOG(LS_INFO) << "VideoSendStream::UpdateActiveSimulcastLayers";
Stefan Holmer9416ef82018-07-19 10:34:38 +0200363 bool previously_active = rtp_video_sender_->IsActive();
364 rtp_video_sender_->SetActiveModules(active_layers);
365 if (!rtp_video_sender_->IsActive() && previously_active) {
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200366 // Payload router switched from active to inactive.
367 StopVideoSendStream();
Stefan Holmer9416ef82018-07-19 10:34:38 +0200368 } else if (rtp_video_sender_->IsActive() && !previously_active) {
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200369 // Payload router switched from inactive to active.
370 StartupVideoSendStream();
371 }
372}
373
374void VideoSendStreamImpl::Start() {
375 RTC_DCHECK_RUN_ON(worker_queue_);
376 RTC_LOG(LS_INFO) << "VideoSendStream::Start";
Stefan Holmer9416ef82018-07-19 10:34:38 +0200377 if (rtp_video_sender_->IsActive())
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200378 return;
379 TRACE_EVENT_INSTANT0("webrtc", "VideoSendStream::Start");
Stefan Holmer9416ef82018-07-19 10:34:38 +0200380 rtp_video_sender_->SetActive(true);
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200381 StartupVideoSendStream();
382}
383
384void VideoSendStreamImpl::StartupVideoSendStream() {
385 RTC_DCHECK_RUN_ON(worker_queue_);
Sebastian Jansson464a5572019-02-12 13:32:32 +0100386 bitrate_allocator_->AddObserver(this, GetAllocationConfig());
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200387 // Start monitoring encoder activity.
388 {
Sebastian Janssonecb68972019-01-18 10:30:54 +0100389 RTC_DCHECK(!check_encoder_activity_task_.Running());
390
391 activity_ = false;
392 timed_out_ = false;
Sebastian Janssoncda86dd2019-03-11 17:26:36 +0100393 check_encoder_activity_task_ = RepeatingTaskHandle::DelayedStart(
394 worker_queue_->Get(), kEncoderTimeOut, [this] {
Sebastian Janssonecb68972019-01-18 10:30:54 +0100395 RTC_DCHECK_RUN_ON(worker_queue_);
396 if (!activity_) {
397 if (!timed_out_) {
398 SignalEncoderTimedOut();
399 }
400 timed_out_ = true;
401 } else if (timed_out_) {
402 SignalEncoderActive();
403 timed_out_ = false;
404 }
405 activity_ = false;
406 return kEncoderTimeOut;
407 });
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200408 }
409
410 video_stream_encoder_->SendKeyFrame();
411}
412
413void VideoSendStreamImpl::Stop() {
414 RTC_DCHECK_RUN_ON(worker_queue_);
415 RTC_LOG(LS_INFO) << "VideoSendStream::Stop";
Stefan Holmer9416ef82018-07-19 10:34:38 +0200416 if (!rtp_video_sender_->IsActive())
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200417 return;
418 TRACE_EVENT_INSTANT0("webrtc", "VideoSendStream::Stop");
Stefan Holmer9416ef82018-07-19 10:34:38 +0200419 rtp_video_sender_->SetActive(false);
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200420 StopVideoSendStream();
421}
422
423void VideoSendStreamImpl::StopVideoSendStream() {
424 bitrate_allocator_->RemoveObserver(this);
Sebastian Janssonecb68972019-01-18 10:30:54 +0100425 check_encoder_activity_task_.Stop();
Erik Språng610c7632019-03-06 15:37:33 +0100426 video_stream_encoder_->OnBitrateUpdated(DataRate::Zero(), DataRate::Zero(), 0,
427 0);
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200428 stats_proxy_->OnSetEncoderTargetRate(0);
429}
430
431void VideoSendStreamImpl::SignalEncoderTimedOut() {
432 RTC_DCHECK_RUN_ON(worker_queue_);
Sebastian Janssonecb68972019-01-18 10:30:54 +0100433 // If the encoder has not produced anything the last kEncoderTimeOut and it
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200434 // is supposed to, deregister as BitrateAllocatorObserver. This can happen
435 // if a camera stops producing frames.
436 if (encoder_target_rate_bps_ > 0) {
437 RTC_LOG(LS_INFO) << "SignalEncoderTimedOut, Encoder timed out.";
438 bitrate_allocator_->RemoveObserver(this);
439 }
440}
441
442void VideoSendStreamImpl::OnBitrateAllocationUpdated(
Erik Språng566124a2018-04-23 12:32:22 +0200443 const VideoBitrateAllocation& allocation) {
Erik Språng4e193e42018-09-14 19:01:58 +0200444 if (!worker_queue_->IsCurrent()) {
445 auto ptr = weak_ptr_;
446 worker_queue_->PostTask([=] {
447 if (!ptr.get())
448 return;
449 ptr->OnBitrateAllocationUpdated(allocation);
450 });
451 return;
452 }
453
454 RTC_DCHECK_RUN_ON(worker_queue_);
455
Sebastian Jansson572c60f2019-03-04 18:30:41 +0100456 int64_t now_ms = clock_->TimeInMilliseconds();
Erik Språngf4ef2dd2018-09-11 12:37:51 +0200457 if (encoder_target_rate_bps_ != 0) {
Erik Språng4e193e42018-09-14 19:01:58 +0200458 if (video_bitrate_allocation_context_) {
459 // If new allocation is within kMaxVbaSizeDifferencePercent larger than
460 // the previously sent allocation and the same streams are still enabled,
461 // it is considered "similar". We do not want send similar allocations
462 // more once per kMaxVbaThrottleTimeMs.
463 const VideoBitrateAllocation& last =
464 video_bitrate_allocation_context_->last_sent_allocation;
465 const bool is_similar =
466 allocation.get_sum_bps() >= last.get_sum_bps() &&
467 allocation.get_sum_bps() <
468 (last.get_sum_bps() * (100 + kMaxVbaSizeDifferencePercent)) /
469 100 &&
470 SameStreamsEnabled(allocation, last);
471 if (is_similar &&
472 (now_ms - video_bitrate_allocation_context_->last_send_time_ms) <
473 kMaxVbaThrottleTimeMs) {
474 // This allocation is too similar, cache it and return.
475 video_bitrate_allocation_context_->throttled_allocation = allocation;
476 return;
477 }
478 } else {
479 video_bitrate_allocation_context_.emplace();
480 }
481
482 video_bitrate_allocation_context_->last_sent_allocation = allocation;
483 video_bitrate_allocation_context_->throttled_allocation.reset();
484 video_bitrate_allocation_context_->last_send_time_ms = now_ms;
485
Erik Språngf4ef2dd2018-09-11 12:37:51 +0200486 // Send bitrate allocation metadata only if encoder is not paused.
487 rtp_video_sender_->OnBitrateAllocationUpdated(allocation);
488 }
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200489}
490
491void VideoSendStreamImpl::SignalEncoderActive() {
492 RTC_DCHECK_RUN_ON(worker_queue_);
493 RTC_LOG(LS_INFO) << "SignalEncoderActive, Encoder is active.";
Sebastian Jansson464a5572019-02-12 13:32:32 +0100494 bitrate_allocator_->AddObserver(this, GetAllocationConfig());
495}
496
497MediaStreamAllocationConfig VideoSendStreamImpl::GetAllocationConfig() const {
498 return MediaStreamAllocationConfig{
499 static_cast<uint32_t>(encoder_min_bitrate_bps_),
500 encoder_max_bitrate_bps_,
501 static_cast<uint32_t>(max_padding_bitrate_),
502 /* priority_bitrate */ 0,
503 !config_->suspend_below_min_bitrate,
504 config_->track_id,
505 encoder_bitrate_priority_};
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200506}
507
508void VideoSendStreamImpl::OnEncoderConfigurationChanged(
509 std::vector<VideoStream> streams,
Rasmus Brandtc402dbe2019-02-04 11:09:46 +0100510 VideoEncoderConfig::ContentType content_type,
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200511 int min_transmit_bitrate_bps) {
512 if (!worker_queue_->IsCurrent()) {
513 rtc::WeakPtr<VideoSendStreamImpl> send_stream = weak_ptr_;
Mirko Bonadei80a86872019-02-04 15:01:43 +0100514 worker_queue_->PostTask([send_stream, streams, content_type,
515 min_transmit_bitrate_bps]() mutable {
516 if (send_stream) {
517 send_stream->OnEncoderConfigurationChanged(
518 std::move(streams), content_type, min_transmit_bitrate_bps);
519 }
520 });
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200521 return;
522 }
523 RTC_DCHECK_GE(config_->rtp.ssrcs.size(), streams.size());
524 TRACE_EVENT0("webrtc", "VideoSendStream::OnEncoderConfigurationChanged");
525 RTC_DCHECK_GE(config_->rtp.ssrcs.size(), streams.size());
526 RTC_DCHECK_RUN_ON(worker_queue_);
527
528 encoder_min_bitrate_bps_ =
529 std::max(streams[0].min_bitrate_bps, GetEncoderMinBitrateBps());
530 encoder_max_bitrate_bps_ = 0;
531 double stream_bitrate_priority_sum = 0;
532 for (const auto& stream : streams) {
533 // We don't want to allocate more bitrate than needed to inactive streams.
534 encoder_max_bitrate_bps_ += stream.active ? stream.max_bitrate_bps : 0;
535 if (stream.bitrate_priority) {
536 RTC_DCHECK_GT(*stream.bitrate_priority, 0);
537 stream_bitrate_priority_sum += *stream.bitrate_priority;
538 }
539 }
540 RTC_DCHECK_GT(stream_bitrate_priority_sum, 0);
541 encoder_bitrate_priority_ = stream_bitrate_priority_sum;
542 encoder_max_bitrate_bps_ =
543 std::max(static_cast<uint32_t>(encoder_min_bitrate_bps_),
544 encoder_max_bitrate_bps_);
“Michael277a6562018-06-01 14:09:19 -0500545
Rasmus Brandtc402dbe2019-02-04 11:09:46 +0100546 // TODO(bugs.webrtc.org/10266): Query the VideoBitrateAllocator instead.
“Michael277a6562018-06-01 14:09:19 -0500547 const VideoCodecType codec_type =
548 PayloadStringToCodecType(config_->rtp.payload_name);
549 if (codec_type == kVideoCodecVP9) {
Sergey Silkin8b9b5f92018-12-10 09:28:53 +0100550 max_padding_bitrate_ = has_alr_probing_ ? streams[0].min_bitrate_bps
551 : streams[0].target_bitrate_bps;
“Michael277a6562018-06-01 14:09:19 -0500552 } else {
553 max_padding_bitrate_ = CalculateMaxPadBitrateBps(
Rasmus Brandtc402dbe2019-02-04 11:09:46 +0100554 streams, content_type, min_transmit_bitrate_bps,
555 config_->suspend_below_min_bitrate, has_alr_probing_);
“Michael277a6562018-06-01 14:09:19 -0500556 }
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200557
558 // Clear stats for disabled layers.
559 for (size_t i = streams.size(); i < config_->rtp.ssrcs.size(); ++i) {
560 stats_proxy_->OnInactiveSsrc(config_->rtp.ssrcs[i]);
561 }
562
563 const size_t num_temporal_layers =
564 streams.back().num_temporal_layers.value_or(1);
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200565
566 rtp_video_sender_->SetEncodingData(streams[0].width, streams[0].height,
567 num_temporal_layers);
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200568
Stefan Holmer9416ef82018-07-19 10:34:38 +0200569 if (rtp_video_sender_->IsActive()) {
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200570 // The send stream is started already. Update the allocator with new bitrate
571 // limits.
Sebastian Jansson464a5572019-02-12 13:32:32 +0100572 bitrate_allocator_->AddObserver(this, GetAllocationConfig());
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200573 }
574}
575
576EncodedImageCallback::Result VideoSendStreamImpl::OnEncodedImage(
577 const EncodedImage& encoded_image,
578 const CodecSpecificInfo* codec_specific_info,
579 const RTPFragmentationHeader* fragmentation) {
580 // Encoded is called on whatever thread the real encoder implementation run
581 // on. In the case of hardware encoders, there might be several encoders
582 // running in parallel on different threads.
Sebastian Janssonecb68972019-01-18 10:30:54 +0100583
584 // Indicate that there still is activity going on.
585 activity_ = true;
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200586
Niels Möller46879152019-01-07 15:54:47 +0100587 EncodedImageCallback::Result result(EncodedImageCallback::Result::OK);
588 if (media_transport_) {
589 int64_t frame_id;
590 {
591 // TODO(nisse): Responsibility for allocation of frame ids should move to
592 // VideoStreamEncoder.
593 rtc::CritScope cs(&media_transport_id_lock_);
594 frame_id = media_transport_frame_id_++;
595 }
596 // TODO(nisse): Responsibility for reference meta data should be moved
597 // upstream, ideally close to the encoders, but probably VideoStreamEncoder
598 // will need to do some translation to produce reference info using frame
599 // ids.
600 std::vector<int64_t> referenced_frame_ids;
Niels Möller8f7ce222019-03-21 15:43:58 +0100601 if (encoded_image._frameType != VideoFrameType::kVideoFrameKey) {
Niels Möller46879152019-01-07 15:54:47 +0100602 RTC_DCHECK_GT(frame_id, 0);
603 referenced_frame_ids.push_back(frame_id - 1);
604 }
605 media_transport_->SendVideoFrame(
606 config_->rtp.ssrcs[0], webrtc::MediaTransportEncodedVideoFrame(
607 frame_id, referenced_frame_ids,
608 config_->rtp.payload_type, encoded_image));
609 } else {
610 result = rtp_video_sender_->OnEncodedImage(
611 encoded_image, codec_specific_info, fragmentation);
612 }
Erik Språng4e193e42018-09-14 19:01:58 +0200613 // Check if there's a throttled VideoBitrateAllocation that we should try
614 // sending.
615 rtc::WeakPtr<VideoSendStreamImpl> send_stream = weak_ptr_;
616 auto update_task = [send_stream]() {
617 if (send_stream) {
618 RTC_DCHECK_RUN_ON(send_stream->worker_queue_);
619 auto& context = send_stream->video_bitrate_allocation_context_;
620 if (context && context->throttled_allocation) {
621 send_stream->OnBitrateAllocationUpdated(*context->throttled_allocation);
622 }
623 }
624 };
625 if (!worker_queue_->IsCurrent()) {
626 worker_queue_->PostTask(update_task);
627 } else {
628 update_task();
629 }
630
631 return result;
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200632}
633
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200634std::map<uint32_t, RtpState> VideoSendStreamImpl::GetRtpStates() const {
Stefan Holmer9416ef82018-07-19 10:34:38 +0200635 return rtp_video_sender_->GetRtpStates();
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200636}
637
638std::map<uint32_t, RtpPayloadState> VideoSendStreamImpl::GetRtpPayloadStates()
639 const {
Stefan Holmer9416ef82018-07-19 10:34:38 +0200640 return rtp_video_sender_->GetRtpPayloadStates();
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200641}
642
Sebastian Janssonc0e4d452018-10-25 15:08:32 +0200643uint32_t VideoSendStreamImpl::OnBitrateUpdated(BitrateAllocationUpdate update) {
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200644 RTC_DCHECK_RUN_ON(worker_queue_);
Stefan Holmer9416ef82018-07-19 10:34:38 +0200645 RTC_DCHECK(rtp_video_sender_->IsActive())
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200646 << "VideoSendStream::Start has not been called.";
647
Sebastian Jansson13e59032018-11-21 19:13:07 +0100648 rtp_video_sender_->OnBitrateUpdated(
649 update.target_bitrate.bps(),
650 rtc::dchecked_cast<uint8_t>(update.packet_loss_ratio * 256),
651 update.round_trip_time.ms(), stats_proxy_->GetSendFrameRate());
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200652 encoder_target_rate_bps_ = rtp_video_sender_->GetPayloadBitrateBps();
Erik Språng26111642019-03-26 11:09:04 +0100653 const uint32_t protection_bitrate_bps =
654 rtp_video_sender_->GetProtectionBitrateBps();
Erik Språng610c7632019-03-06 15:37:33 +0100655 DataRate headroom = DataRate::Zero();
Erik Språng26111642019-03-26 11:09:04 +0100656 if (encoder_target_rate_bps_ >
657 encoder_max_bitrate_bps_ + protection_bitrate_bps) {
Erik Språng610c7632019-03-06 15:37:33 +0100658 headroom =
Erik Språng26111642019-03-26 11:09:04 +0100659 DataRate::bps(encoder_target_rate_bps_ -
660 (encoder_max_bitrate_bps_ + protection_bitrate_bps));
Erik Språng610c7632019-03-06 15:37:33 +0100661 }
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200662 encoder_target_rate_bps_ =
663 std::min(encoder_max_bitrate_bps_, encoder_target_rate_bps_);
Sebastian Jansson13e59032018-11-21 19:13:07 +0100664 video_stream_encoder_->OnBitrateUpdated(
Erik Språng610c7632019-03-06 15:37:33 +0100665 DataRate::bps(encoder_target_rate_bps_), headroom,
Sebastian Jansson13e59032018-11-21 19:13:07 +0100666 rtc::dchecked_cast<uint8_t>(update.packet_loss_ratio * 256),
667 update.round_trip_time.ms());
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200668 stats_proxy_->OnSetEncoderTargetRate(encoder_target_rate_bps_);
Erik Språng26111642019-03-26 11:09:04 +0100669 return protection_bitrate_bps;
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200670}
671
Sebastian Jansson8e0b15b2018-04-18 19:19:22 +0200672} // namespace internal
673} // namespace webrtc