blob: ddf4671694fde3bd989c562d3996ec7dc825ffc4 [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
stefan@webrtc.org07b45a52012-02-02 08:37:48 +00002 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:25 +00003 *
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 Bonadei92ea95e2017-09-15 06:47:31 +020011#include "video/video_stream_encoder.h"
mflodman@webrtc.org84d17832011-12-01 17:02:23 +000012
stefan@webrtc.orgc3cc3752013-06-04 09:36:56 +000013#include <algorithm>
perkj57c21f92016-06-17 07:27:16 -070014#include <limits>
sprangc5d62e22017-04-02 23:53:04 -070015#include <numeric>
Per512ecb32016-09-23 15:52:06 +020016#include <utility>
niklase@google.com470e71d2011-07-07 08:21:25 +000017
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018#include "api/video/i420_buffer.h"
19#include "common_video/include/video_bitrate_allocator.h"
20#include "common_video/include/video_frame.h"
21#include "modules/pacing/paced_sender.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020022#include "modules/video_coding/include/video_codec_initializer.h"
23#include "modules/video_coding/include/video_coding.h"
24#include "modules/video_coding/include/video_coding_defines.h"
25#include "rtc_base/arraysize.h"
26#include "rtc_base/checks.h"
27#include "rtc_base/location.h"
28#include "rtc_base/logging.h"
Karl Wiberg80ba3332018-02-05 10:33:35 +010029#include "rtc_base/system/fallthrough.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020030#include "rtc_base/timeutils.h"
31#include "rtc_base/trace_event.h"
32#include "video/overuse_frame_detector.h"
33#include "video/send_statistics_proxy.h"
nisseea3a7982017-05-15 02:42:11 -070034
niklase@google.com470e71d2011-07-07 08:21:25 +000035namespace webrtc {
36
perkj26091b12016-09-01 01:17:40 -070037namespace {
sprangb1ca0732017-02-01 08:38:12 -080038
asapersson6ffb67d2016-09-12 00:10:45 -070039// Time interval for logging frame counts.
40const int64_t kFrameLogIntervalMs = 60000;
sprangc5d62e22017-04-02 23:53:04 -070041const int kMinFramerateFps = 2;
sprangfda496a2017-06-15 04:21:07 -070042const int kMaxFramerateFps = 120;
perkj26091b12016-09-01 01:17:40 -070043
kthelgason2bc68642017-02-07 07:02:22 -080044// The maximum number of frames to drop at beginning of stream
45// to try and achieve desired bitrate.
46const int kMaxInitialFramedrop = 4;
47
kthelgason2bc68642017-02-07 07:02:22 -080048uint32_t MaximumFrameSizeForBitrate(uint32_t kbps) {
49 if (kbps > 0) {
50 if (kbps < 300 /* qvga */) {
51 return 320 * 240;
52 } else if (kbps < 500 /* vga */) {
53 return 640 * 480;
54 }
55 }
56 return std::numeric_limits<uint32_t>::max();
57}
58
asaperssonf7e294d2017-06-13 23:25:22 -070059// Initial limits for kBalanced degradation preference.
60int MinFps(int pixels) {
61 if (pixels <= 320 * 240) {
62 return 7;
63 } else if (pixels <= 480 * 270) {
64 return 10;
65 } else if (pixels <= 640 * 480) {
66 return 15;
67 } else {
68 return std::numeric_limits<int>::max();
69 }
70}
71
72int MaxFps(int pixels) {
73 if (pixels <= 320 * 240) {
74 return 10;
75 } else if (pixels <= 480 * 270) {
76 return 15;
77 } else {
78 return std::numeric_limits<int>::max();
79 }
80}
81
asapersson09f05612017-05-15 23:40:18 -070082bool IsResolutionScalingEnabled(
83 VideoSendStream::DegradationPreference degradation_preference) {
84 return degradation_preference ==
85 VideoSendStream::DegradationPreference::kMaintainFramerate ||
86 degradation_preference ==
87 VideoSendStream::DegradationPreference::kBalanced;
88}
89
90bool IsFramerateScalingEnabled(
91 VideoSendStream::DegradationPreference degradation_preference) {
92 return degradation_preference ==
93 VideoSendStream::DegradationPreference::kMaintainResolution ||
94 degradation_preference ==
95 VideoSendStream::DegradationPreference::kBalanced;
96}
97
perkj26091b12016-09-01 01:17:40 -070098} // namespace
99
mflodmancc3d4422017-08-03 08:27:51 -0700100class VideoStreamEncoder::ConfigureEncoderTask : public rtc::QueuedTask {
Pera48ddb72016-09-29 11:48:50 +0200101 public:
mflodmancc3d4422017-08-03 08:27:51 -0700102 ConfigureEncoderTask(VideoStreamEncoder* video_stream_encoder,
Pera48ddb72016-09-29 11:48:50 +0200103 VideoEncoderConfig config,
asapersson5f7226f2016-11-25 04:37:00 -0800104 size_t max_data_payload_length,
105 bool nack_enabled)
mflodmancc3d4422017-08-03 08:27:51 -0700106 : video_stream_encoder_(video_stream_encoder),
Pera48ddb72016-09-29 11:48:50 +0200107 config_(std::move(config)),
asapersson5f7226f2016-11-25 04:37:00 -0800108 max_data_payload_length_(max_data_payload_length),
109 nack_enabled_(nack_enabled) {}
Pera48ddb72016-09-29 11:48:50 +0200110
111 private:
112 bool Run() override {
mflodmancc3d4422017-08-03 08:27:51 -0700113 video_stream_encoder_->ConfigureEncoderOnTaskQueue(
asapersson5f7226f2016-11-25 04:37:00 -0800114 std::move(config_), max_data_payload_length_, nack_enabled_);
Pera48ddb72016-09-29 11:48:50 +0200115 return true;
116 }
117
mflodmancc3d4422017-08-03 08:27:51 -0700118 VideoStreamEncoder* const video_stream_encoder_;
Pera48ddb72016-09-29 11:48:50 +0200119 VideoEncoderConfig config_;
120 size_t max_data_payload_length_;
asapersson5f7226f2016-11-25 04:37:00 -0800121 bool nack_enabled_;
Pera48ddb72016-09-29 11:48:50 +0200122};
123
mflodmancc3d4422017-08-03 08:27:51 -0700124class VideoStreamEncoder::EncodeTask : public rtc::QueuedTask {
perkj26091b12016-09-01 01:17:40 -0700125 public:
perkjd52063f2016-09-07 06:32:18 -0700126 EncodeTask(const VideoFrame& frame,
mflodmancc3d4422017-08-03 08:27:51 -0700127 VideoStreamEncoder* video_stream_encoder,
nissee0e3bdf2017-01-18 02:16:20 -0800128 int64_t time_when_posted_us,
asapersson6ffb67d2016-09-12 00:10:45 -0700129 bool log_stats)
nissedf2ceb82016-12-15 06:29:53 -0800130 : frame_(frame),
mflodmancc3d4422017-08-03 08:27:51 -0700131 video_stream_encoder_(video_stream_encoder),
nissee0e3bdf2017-01-18 02:16:20 -0800132 time_when_posted_us_(time_when_posted_us),
asapersson6ffb67d2016-09-12 00:10:45 -0700133 log_stats_(log_stats) {
mflodmancc3d4422017-08-03 08:27:51 -0700134 ++video_stream_encoder_->posted_frames_waiting_for_encode_;
perkj26091b12016-09-01 01:17:40 -0700135 }
136
137 private:
138 bool Run() override {
mflodmancc3d4422017-08-03 08:27:51 -0700139 RTC_DCHECK_RUN_ON(&video_stream_encoder_->encoder_queue_);
mflodmancc3d4422017-08-03 08:27:51 -0700140 video_stream_encoder_->stats_proxy_->OnIncomingFrame(frame_.width(),
141 frame_.height());
142 ++video_stream_encoder_->captured_frame_count_;
Yuwei Huangd9f99c12017-10-24 15:40:52 -0700143 const int posted_frames_waiting_for_encode =
144 video_stream_encoder_->posted_frames_waiting_for_encode_.fetch_sub(1);
145 RTC_DCHECK_GT(posted_frames_waiting_for_encode, 0);
146 if (posted_frames_waiting_for_encode == 1) {
mflodmancc3d4422017-08-03 08:27:51 -0700147 video_stream_encoder_->EncodeVideoFrame(frame_, time_when_posted_us_);
perkj26091b12016-09-01 01:17:40 -0700148 } else {
149 // There is a newer frame in flight. Do not encode this frame.
Mirko Bonadei675513b2017-11-09 11:09:25 +0100150 RTC_LOG(LS_VERBOSE)
perkj26091b12016-09-01 01:17:40 -0700151 << "Incoming frame dropped due to that the encoder is blocked.";
mflodmancc3d4422017-08-03 08:27:51 -0700152 ++video_stream_encoder_->dropped_frame_count_;
Ilya Nikolaevskiyd79314f2017-10-23 10:45:37 +0200153 video_stream_encoder_->stats_proxy_->OnFrameDroppedInEncoderQueue();
asapersson6ffb67d2016-09-12 00:10:45 -0700154 }
155 if (log_stats_) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100156 RTC_LOG(LS_INFO) << "Number of frames: captured "
157 << video_stream_encoder_->captured_frame_count_
158 << ", dropped (due to encoder blocked) "
159 << video_stream_encoder_->dropped_frame_count_
160 << ", interval_ms " << kFrameLogIntervalMs;
mflodmancc3d4422017-08-03 08:27:51 -0700161 video_stream_encoder_->captured_frame_count_ = 0;
162 video_stream_encoder_->dropped_frame_count_ = 0;
perkj26091b12016-09-01 01:17:40 -0700163 }
164 return true;
165 }
166 VideoFrame frame_;
mflodmancc3d4422017-08-03 08:27:51 -0700167 VideoStreamEncoder* const video_stream_encoder_;
nissee0e3bdf2017-01-18 02:16:20 -0800168 const int64_t time_when_posted_us_;
asapersson6ffb67d2016-09-12 00:10:45 -0700169 const bool log_stats_;
perkj26091b12016-09-01 01:17:40 -0700170};
171
perkja49cbd32016-09-16 07:53:41 -0700172// VideoSourceProxy is responsible ensuring thread safety between calls to
mflodmancc3d4422017-08-03 08:27:51 -0700173// VideoStreamEncoder::SetSource that will happen on libjingle's worker thread
174// when a video capturer is connected to the encoder and the encoder task queue
perkja49cbd32016-09-16 07:53:41 -0700175// (encoder_queue_) where the encoder reports its VideoSinkWants.
mflodmancc3d4422017-08-03 08:27:51 -0700176class VideoStreamEncoder::VideoSourceProxy {
perkja49cbd32016-09-16 07:53:41 -0700177 public:
mflodmancc3d4422017-08-03 08:27:51 -0700178 explicit VideoSourceProxy(VideoStreamEncoder* video_stream_encoder)
179 : video_stream_encoder_(video_stream_encoder),
hbos8d609f62017-04-10 07:39:05 -0700180 degradation_preference_(
181 VideoSendStream::DegradationPreference::kDegradationDisabled),
perkj803d97f2016-11-01 11:45:46 -0700182 source_(nullptr) {}
perkja49cbd32016-09-16 07:53:41 -0700183
hbos8d609f62017-04-10 07:39:05 -0700184 void SetSource(
185 rtc::VideoSourceInterface<VideoFrame>* source,
186 const VideoSendStream::DegradationPreference& degradation_preference) {
perkj803d97f2016-11-01 11:45:46 -0700187 // Called on libjingle's worker thread.
perkja49cbd32016-09-16 07:53:41 -0700188 RTC_DCHECK_CALLED_SEQUENTIALLY(&main_checker_);
189 rtc::VideoSourceInterface<VideoFrame>* old_source = nullptr;
perkj803d97f2016-11-01 11:45:46 -0700190 rtc::VideoSinkWants wants;
perkja49cbd32016-09-16 07:53:41 -0700191 {
192 rtc::CritScope lock(&crit_);
sprangc5d62e22017-04-02 23:53:04 -0700193 degradation_preference_ = degradation_preference;
perkja49cbd32016-09-16 07:53:41 -0700194 old_source = source_;
195 source_ = source;
sprangfda496a2017-06-15 04:21:07 -0700196 wants = GetActiveSinkWantsInternal();
perkja49cbd32016-09-16 07:53:41 -0700197 }
198
199 if (old_source != source && old_source != nullptr) {
mflodmancc3d4422017-08-03 08:27:51 -0700200 old_source->RemoveSink(video_stream_encoder_);
perkja49cbd32016-09-16 07:53:41 -0700201 }
202
203 if (!source) {
204 return;
205 }
206
mflodmancc3d4422017-08-03 08:27:51 -0700207 source->AddOrUpdateSink(video_stream_encoder_, wants);
perkja49cbd32016-09-16 07:53:41 -0700208 }
209
perkj803d97f2016-11-01 11:45:46 -0700210 void SetWantsRotationApplied(bool rotation_applied) {
211 rtc::CritScope lock(&crit_);
212 sink_wants_.rotation_applied = rotation_applied;
sprangc5d62e22017-04-02 23:53:04 -0700213 if (source_)
mflodmancc3d4422017-08-03 08:27:51 -0700214 source_->AddOrUpdateSink(video_stream_encoder_, sink_wants_);
sprangc5d62e22017-04-02 23:53:04 -0700215 }
216
sprangfda496a2017-06-15 04:21:07 -0700217 rtc::VideoSinkWants GetActiveSinkWants() {
218 rtc::CritScope lock(&crit_);
219 return GetActiveSinkWantsInternal();
perkj803d97f2016-11-01 11:45:46 -0700220 }
221
asaperssonf7e294d2017-06-13 23:25:22 -0700222 void ResetPixelFpsCount() {
223 rtc::CritScope lock(&crit_);
224 sink_wants_.max_pixel_count = std::numeric_limits<int>::max();
225 sink_wants_.target_pixel_count.reset();
226 sink_wants_.max_framerate_fps = std::numeric_limits<int>::max();
227 if (source_)
mflodmancc3d4422017-08-03 08:27:51 -0700228 source_->AddOrUpdateSink(video_stream_encoder_, sink_wants_);
asaperssonf7e294d2017-06-13 23:25:22 -0700229 }
230
Ã…sa Perssonc3ed6302017-11-16 14:04:52 +0100231 bool RequestResolutionLowerThan(int pixel_count,
232 int min_pixels_per_frame,
233 bool* min_pixels_reached) {
perkj803d97f2016-11-01 11:45:46 -0700234 // Called on the encoder task queue.
235 rtc::CritScope lock(&crit_);
asapersson13874762017-06-07 00:01:02 -0700236 if (!source_ || !IsResolutionScalingEnabled(degradation_preference_)) {
asapersson02465b82017-04-10 01:12:52 -0700237 // This can happen since |degradation_preference_| is set on libjingle's
238 // worker thread but the adaptation is done on the encoder task queue.
asaperssond0de2952017-04-21 01:47:31 -0700239 return false;
perkj803d97f2016-11-01 11:45:46 -0700240 }
asapersson13874762017-06-07 00:01:02 -0700241 // The input video frame size will have a resolution less than or equal to
242 // |max_pixel_count| depending on how the source can scale the frame size.
kthelgason5e13d412016-12-01 03:59:51 -0800243 const int pixels_wanted = (pixel_count * 3) / 5;
Ã…sa Perssonc3ed6302017-11-16 14:04:52 +0100244 if (pixels_wanted >= sink_wants_.max_pixel_count) {
245 return false;
246 }
247 if (pixels_wanted < min_pixels_per_frame) {
248 *min_pixels_reached = true;
asaperssond0de2952017-04-21 01:47:31 -0700249 return false;
asapersson13874762017-06-07 00:01:02 -0700250 }
Mirko Bonadei675513b2017-11-09 11:09:25 +0100251 RTC_LOG(LS_INFO) << "Scaling down resolution, max pixels: "
252 << pixels_wanted;
sprangc5d62e22017-04-02 23:53:04 -0700253 sink_wants_.max_pixel_count = pixels_wanted;
Oskar Sundbom8e07c132018-01-08 16:45:42 +0100254 sink_wants_.target_pixel_count = rtc::nullopt;
mflodmancc3d4422017-08-03 08:27:51 -0700255 source_->AddOrUpdateSink(video_stream_encoder_,
256 GetActiveSinkWantsInternal());
asaperssond0de2952017-04-21 01:47:31 -0700257 return true;
sprangc5d62e22017-04-02 23:53:04 -0700258 }
259
sprangfda496a2017-06-15 04:21:07 -0700260 int RequestFramerateLowerThan(int fps) {
sprangc5d62e22017-04-02 23:53:04 -0700261 // Called on the encoder task queue.
asapersson13874762017-06-07 00:01:02 -0700262 // The input video frame rate will be scaled down to 2/3, rounding down.
sprangfda496a2017-06-15 04:21:07 -0700263 int framerate_wanted = (fps * 2) / 3;
264 return RestrictFramerate(framerate_wanted) ? framerate_wanted : -1;
perkj803d97f2016-11-01 11:45:46 -0700265 }
266
asapersson13874762017-06-07 00:01:02 -0700267 bool RequestHigherResolutionThan(int pixel_count) {
268 // Called on the encoder task queue.
perkj803d97f2016-11-01 11:45:46 -0700269 rtc::CritScope lock(&crit_);
asapersson13874762017-06-07 00:01:02 -0700270 if (!source_ || !IsResolutionScalingEnabled(degradation_preference_)) {
asapersson02465b82017-04-10 01:12:52 -0700271 // This can happen since |degradation_preference_| is set on libjingle's
272 // worker thread but the adaptation is done on the encoder task queue.
asapersson13874762017-06-07 00:01:02 -0700273 return false;
perkj803d97f2016-11-01 11:45:46 -0700274 }
asapersson13874762017-06-07 00:01:02 -0700275 int max_pixels_wanted = pixel_count;
276 if (max_pixels_wanted != std::numeric_limits<int>::max())
277 max_pixels_wanted = pixel_count * 4;
sprangc5d62e22017-04-02 23:53:04 -0700278
asapersson13874762017-06-07 00:01:02 -0700279 if (max_pixels_wanted <= sink_wants_.max_pixel_count)
280 return false;
281
282 sink_wants_.max_pixel_count = max_pixels_wanted;
283 if (max_pixels_wanted == std::numeric_limits<int>::max()) {
sprangc5d62e22017-04-02 23:53:04 -0700284 // Remove any constraints.
285 sink_wants_.target_pixel_count.reset();
sprangc5d62e22017-04-02 23:53:04 -0700286 } else {
287 // On step down we request at most 3/5 the pixel count of the previous
288 // resolution, so in order to take "one step up" we request a resolution
289 // as close as possible to 5/3 of the current resolution. The actual pixel
290 // count selected depends on the capabilities of the source. In order to
291 // not take a too large step up, we cap the requested pixel count to be at
292 // most four time the current number of pixels.
Oskar Sundbom8e07c132018-01-08 16:45:42 +0100293 sink_wants_.target_pixel_count = (pixel_count * 5) / 3;
sprangc5d62e22017-04-02 23:53:04 -0700294 }
Mirko Bonadei675513b2017-11-09 11:09:25 +0100295 RTC_LOG(LS_INFO) << "Scaling up resolution, max pixels: "
296 << max_pixels_wanted;
mflodmancc3d4422017-08-03 08:27:51 -0700297 source_->AddOrUpdateSink(video_stream_encoder_,
298 GetActiveSinkWantsInternal());
asapersson13874762017-06-07 00:01:02 -0700299 return true;
sprangc5d62e22017-04-02 23:53:04 -0700300 }
301
sprangfda496a2017-06-15 04:21:07 -0700302 // Request upgrade in framerate. Returns the new requested frame, or -1 if
303 // no change requested. Note that maxint may be returned if limits due to
304 // adaptation requests are removed completely. In that case, consider
305 // |max_framerate_| to be the current limit (assuming the capturer complies).
306 int RequestHigherFramerateThan(int fps) {
asapersson13874762017-06-07 00:01:02 -0700307 // Called on the encoder task queue.
308 // The input frame rate will be scaled up to the last step, with rounding.
309 int framerate_wanted = fps;
310 if (fps != std::numeric_limits<int>::max())
311 framerate_wanted = (fps * 3) / 2;
312
sprangfda496a2017-06-15 04:21:07 -0700313 return IncreaseFramerate(framerate_wanted) ? framerate_wanted : -1;
asapersson13874762017-06-07 00:01:02 -0700314 }
315
316 bool RestrictFramerate(int fps) {
sprangc5d62e22017-04-02 23:53:04 -0700317 // Called on the encoder task queue.
318 rtc::CritScope lock(&crit_);
asapersson13874762017-06-07 00:01:02 -0700319 if (!source_ || !IsFramerateScalingEnabled(degradation_preference_))
320 return false;
321
322 const int fps_wanted = std::max(kMinFramerateFps, fps);
323 if (fps_wanted >= sink_wants_.max_framerate_fps)
324 return false;
325
Mirko Bonadei675513b2017-11-09 11:09:25 +0100326 RTC_LOG(LS_INFO) << "Scaling down framerate: " << fps_wanted;
asapersson13874762017-06-07 00:01:02 -0700327 sink_wants_.max_framerate_fps = fps_wanted;
mflodmancc3d4422017-08-03 08:27:51 -0700328 source_->AddOrUpdateSink(video_stream_encoder_,
329 GetActiveSinkWantsInternal());
asapersson13874762017-06-07 00:01:02 -0700330 return true;
331 }
332
333 bool IncreaseFramerate(int fps) {
334 // Called on the encoder task queue.
335 rtc::CritScope lock(&crit_);
336 if (!source_ || !IsFramerateScalingEnabled(degradation_preference_))
337 return false;
338
339 const int fps_wanted = std::max(kMinFramerateFps, fps);
340 if (fps_wanted <= sink_wants_.max_framerate_fps)
341 return false;
342
Mirko Bonadei675513b2017-11-09 11:09:25 +0100343 RTC_LOG(LS_INFO) << "Scaling up framerate: " << fps_wanted;
asapersson13874762017-06-07 00:01:02 -0700344 sink_wants_.max_framerate_fps = fps_wanted;
mflodmancc3d4422017-08-03 08:27:51 -0700345 source_->AddOrUpdateSink(video_stream_encoder_,
346 GetActiveSinkWantsInternal());
asapersson13874762017-06-07 00:01:02 -0700347 return true;
perkj803d97f2016-11-01 11:45:46 -0700348 }
349
perkja49cbd32016-09-16 07:53:41 -0700350 private:
sprangfda496a2017-06-15 04:21:07 -0700351 rtc::VideoSinkWants GetActiveSinkWantsInternal()
danilchapa37de392017-09-09 04:17:22 -0700352 RTC_EXCLUSIVE_LOCKS_REQUIRED(&crit_) {
sprangfda496a2017-06-15 04:21:07 -0700353 rtc::VideoSinkWants wants = sink_wants_;
354 // Clear any constraints from the current sink wants that don't apply to
355 // the used degradation_preference.
356 switch (degradation_preference_) {
357 case VideoSendStream::DegradationPreference::kBalanced:
358 break;
359 case VideoSendStream::DegradationPreference::kMaintainFramerate:
360 wants.max_framerate_fps = std::numeric_limits<int>::max();
361 break;
362 case VideoSendStream::DegradationPreference::kMaintainResolution:
363 wants.max_pixel_count = std::numeric_limits<int>::max();
364 wants.target_pixel_count.reset();
365 break;
366 case VideoSendStream::DegradationPreference::kDegradationDisabled:
367 wants.max_pixel_count = std::numeric_limits<int>::max();
368 wants.target_pixel_count.reset();
369 wants.max_framerate_fps = std::numeric_limits<int>::max();
370 }
371 return wants;
372 }
373
perkja49cbd32016-09-16 07:53:41 -0700374 rtc::CriticalSection crit_;
375 rtc::SequencedTaskChecker main_checker_;
mflodmancc3d4422017-08-03 08:27:51 -0700376 VideoStreamEncoder* const video_stream_encoder_;
danilchapa37de392017-09-09 04:17:22 -0700377 rtc::VideoSinkWants sink_wants_ RTC_GUARDED_BY(&crit_);
hbos8d609f62017-04-10 07:39:05 -0700378 VideoSendStream::DegradationPreference degradation_preference_
danilchapa37de392017-09-09 04:17:22 -0700379 RTC_GUARDED_BY(&crit_);
380 rtc::VideoSourceInterface<VideoFrame>* source_ RTC_GUARDED_BY(&crit_);
perkja49cbd32016-09-16 07:53:41 -0700381
382 RTC_DISALLOW_COPY_AND_ASSIGN(VideoSourceProxy);
383};
384
Ã…sa Persson0122e842017-10-16 12:19:23 +0200385VideoStreamEncoder::VideoStreamEncoder(
386 uint32_t number_of_cores,
387 SendStatisticsProxy* stats_proxy,
388 const VideoSendStream::Config::EncoderSettings& settings,
389 rtc::VideoSinkInterface<VideoFrame>* pre_encode_callback,
Ã…sa Persson0122e842017-10-16 12:19:23 +0200390 std::unique_ptr<OveruseFrameDetector> overuse_detector)
perkj26091b12016-09-01 01:17:40 -0700391 : shutdown_event_(true /* manual_reset */, false),
392 number_of_cores_(number_of_cores),
kthelgason2bc68642017-02-07 07:02:22 -0800393 initial_rampup_(0),
perkja49cbd32016-09-16 07:53:41 -0700394 source_proxy_(new VideoSourceProxy(this)),
Pera48ddb72016-09-29 11:48:50 +0200395 sink_(nullptr),
perkj26091b12016-09-01 01:17:40 -0700396 settings_(settings),
kthelgason1cdddc92017-08-24 03:52:48 -0700397 codec_type_(PayloadStringToCodecType(settings.payload_name)),
Niels Möllera0565992017-10-24 11:37:08 +0200398 video_sender_(Clock::GetRealTimeClock(), this),
Niels Möller73f29cb2018-01-31 16:09:31 +0100399 overuse_detector_(std::move(overuse_detector)),
Peter Boström7083e112015-09-22 16:28:51 +0200400 stats_proxy_(stats_proxy),
perkj26091b12016-09-01 01:17:40 -0700401 pre_encode_callback_(pre_encode_callback),
sprangfda496a2017-06-15 04:21:07 -0700402 max_framerate_(-1),
perkjfa10b552016-10-02 23:45:26 -0700403 pending_encoder_reconfiguration_(false),
perkj26091b12016-09-01 01:17:40 -0700404 encoder_start_bitrate_bps_(0),
Pera48ddb72016-09-29 11:48:50 +0200405 max_data_payload_length_(0),
asapersson5f7226f2016-11-25 04:37:00 -0800406 nack_enabled_(false),
pbos@webrtc.org143451d2015-03-18 14:40:03 +0000407 last_observed_bitrate_bps_(0),
stefan@webrtc.org792f1a12015-03-04 12:24:26 +0000408 encoder_paused_and_dropped_frame_(false),
perkj26091b12016-09-01 01:17:40 -0700409 clock_(Clock::GetRealTimeClock()),
hbos8d609f62017-04-10 07:39:05 -0700410 degradation_preference_(
411 VideoSendStream::DegradationPreference::kDegradationDisabled),
Yuwei Huangd9f99c12017-10-24 15:40:52 -0700412 posted_frames_waiting_for_encode_(0),
perkj26091b12016-09-01 01:17:40 -0700413 last_captured_timestamp_(0),
414 delta_ntp_internal_ms_(clock_->CurrentNtpInMilliseconds() -
415 clock_->TimeInMilliseconds()),
asapersson6ffb67d2016-09-12 00:10:45 -0700416 last_frame_log_ms_(clock_->TimeInMilliseconds()),
417 captured_frame_count_(0),
418 dropped_frame_count_(0),
sprang1a646ee2016-12-01 06:34:11 -0800419 bitrate_observer_(nullptr),
perkj26091b12016-09-01 01:17:40 -0700420 encoder_queue_("EncoderQueue") {
sprang552c7c72017-02-13 04:41:45 -0800421 RTC_DCHECK(stats_proxy);
Niels Möller73f29cb2018-01-31 16:09:31 +0100422 RTC_DCHECK(overuse_detector_);
perkj803d97f2016-11-01 11:45:46 -0700423 encoder_queue_.PostTask([this] {
perkj26091b12016-09-01 01:17:40 -0700424 RTC_DCHECK_RUN_ON(&encoder_queue_);
Niels Möller73f29cb2018-01-31 16:09:31 +0100425 overuse_detector_->StartCheckForOveruse(this);
perkj26091b12016-09-01 01:17:40 -0700426 video_sender_.RegisterExternalEncoder(
427 settings_.encoder, settings_.payload_type, settings_.internal_source);
428 });
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +0000429}
430
mflodmancc3d4422017-08-03 08:27:51 -0700431VideoStreamEncoder::~VideoStreamEncoder() {
perkja49cbd32016-09-16 07:53:41 -0700432 RTC_DCHECK_RUN_ON(&thread_checker_);
perkj26091b12016-09-01 01:17:40 -0700433 RTC_DCHECK(shutdown_event_.Wait(0))
434 << "Must call ::Stop() before destruction.";
435}
436
mflodmancc3d4422017-08-03 08:27:51 -0700437void VideoStreamEncoder::Stop() {
perkja49cbd32016-09-16 07:53:41 -0700438 RTC_DCHECK_RUN_ON(&thread_checker_);
hbos8d609f62017-04-10 07:39:05 -0700439 source_proxy_->SetSource(nullptr, VideoSendStream::DegradationPreference());
perkja49cbd32016-09-16 07:53:41 -0700440 encoder_queue_.PostTask([this] {
441 RTC_DCHECK_RUN_ON(&encoder_queue_);
sprangfda496a2017-06-15 04:21:07 -0700442 overuse_detector_->StopCheckForOveruse();
Erik Språng08127a92016-11-16 16:41:30 +0100443 rate_allocator_.reset();
sprang1a646ee2016-12-01 06:34:11 -0800444 bitrate_observer_ = nullptr;
perkja49cbd32016-09-16 07:53:41 -0700445 video_sender_.RegisterExternalEncoder(nullptr, settings_.payload_type,
446 false);
kthelgason876222f2016-11-29 01:44:11 -0800447 quality_scaler_ = nullptr;
perkja49cbd32016-09-16 07:53:41 -0700448 shutdown_event_.Set();
449 });
450
451 shutdown_event_.Wait(rtc::Event::kForever);
perkj26091b12016-09-01 01:17:40 -0700452}
453
mflodmancc3d4422017-08-03 08:27:51 -0700454void VideoStreamEncoder::SetBitrateObserver(
sprang1a646ee2016-12-01 06:34:11 -0800455 VideoBitrateAllocationObserver* bitrate_observer) {
456 RTC_DCHECK_RUN_ON(&thread_checker_);
457 encoder_queue_.PostTask([this, bitrate_observer] {
458 RTC_DCHECK_RUN_ON(&encoder_queue_);
459 RTC_DCHECK(!bitrate_observer_);
460 bitrate_observer_ = bitrate_observer;
461 });
462}
463
mflodmancc3d4422017-08-03 08:27:51 -0700464void VideoStreamEncoder::SetSource(
perkj803d97f2016-11-01 11:45:46 -0700465 rtc::VideoSourceInterface<VideoFrame>* source,
asapersson09f05612017-05-15 23:40:18 -0700466 const VideoSendStream::DegradationPreference& degradation_preference) {
perkja49cbd32016-09-16 07:53:41 -0700467 RTC_DCHECK_RUN_ON(&thread_checker_);
perkj803d97f2016-11-01 11:45:46 -0700468 source_proxy_->SetSource(source, degradation_preference);
469 encoder_queue_.PostTask([this, degradation_preference] {
470 RTC_DCHECK_RUN_ON(&encoder_queue_);
sprangc5d62e22017-04-02 23:53:04 -0700471 if (degradation_preference_ != degradation_preference) {
472 // Reset adaptation state, so that we're not tricked into thinking there's
473 // an already pending request of the same type.
474 last_adaptation_request_.reset();
asaperssonf7e294d2017-06-13 23:25:22 -0700475 if (degradation_preference ==
476 VideoSendStream::DegradationPreference::kBalanced ||
477 degradation_preference_ ==
478 VideoSendStream::DegradationPreference::kBalanced) {
479 // TODO(asapersson): Consider removing |adapt_counters_| map and use one
480 // AdaptCounter for all modes.
481 source_proxy_->ResetPixelFpsCount();
482 adapt_counters_.clear();
483 }
sprangc5d62e22017-04-02 23:53:04 -0700484 }
sprangb1ca0732017-02-01 08:38:12 -0800485 degradation_preference_ = degradation_preference;
asapersson91914e22017-06-01 00:34:08 -0700486 bool allow_scaling = IsResolutionScalingEnabled(degradation_preference_);
sprangc5d62e22017-04-02 23:53:04 -0700487 initial_rampup_ = allow_scaling ? 0 : kMaxInitialFramedrop;
kthelgason2bc68642017-02-07 07:02:22 -0800488 ConfigureQualityScaler();
Niels Möller7dc26b72017-12-06 10:27:48 +0100489 if (!IsFramerateScalingEnabled(degradation_preference) &&
490 max_framerate_ != -1) {
491 // If frame rate scaling is no longer allowed, remove any potential
492 // allowance for longer frame intervals.
493 overuse_detector_->OnTargetFramerateUpdated(max_framerate_);
494 }
perkj803d97f2016-11-01 11:45:46 -0700495 });
perkja49cbd32016-09-16 07:53:41 -0700496}
497
mflodmancc3d4422017-08-03 08:27:51 -0700498void VideoStreamEncoder::SetSink(EncoderSink* sink, bool rotation_applied) {
perkj803d97f2016-11-01 11:45:46 -0700499 source_proxy_->SetWantsRotationApplied(rotation_applied);
perkj26091b12016-09-01 01:17:40 -0700500 encoder_queue_.PostTask([this, sink] {
501 RTC_DCHECK_RUN_ON(&encoder_queue_);
502 sink_ = sink;
503 });
mflodman@webrtc.org84d17832011-12-01 17:02:23 +0000504}
505
mflodmancc3d4422017-08-03 08:27:51 -0700506void VideoStreamEncoder::SetStartBitrate(int start_bitrate_bps) {
perkj26091b12016-09-01 01:17:40 -0700507 encoder_queue_.PostTask([this, start_bitrate_bps] {
508 RTC_DCHECK_RUN_ON(&encoder_queue_);
509 encoder_start_bitrate_bps_ = start_bitrate_bps;
510 });
mflodman@webrtc.org84d17832011-12-01 17:02:23 +0000511}
Peter Boström00b9d212016-05-19 16:59:03 +0200512
mflodmancc3d4422017-08-03 08:27:51 -0700513void VideoStreamEncoder::ConfigureEncoder(VideoEncoderConfig config,
514 size_t max_data_payload_length,
515 bool nack_enabled) {
Pera48ddb72016-09-29 11:48:50 +0200516 encoder_queue_.PostTask(
517 std::unique_ptr<rtc::QueuedTask>(new ConfigureEncoderTask(
asapersson5f7226f2016-11-25 04:37:00 -0800518 this, std::move(config), max_data_payload_length, nack_enabled)));
perkj26091b12016-09-01 01:17:40 -0700519}
520
mflodmancc3d4422017-08-03 08:27:51 -0700521void VideoStreamEncoder::ConfigureEncoderOnTaskQueue(
522 VideoEncoderConfig config,
523 size_t max_data_payload_length,
524 bool nack_enabled) {
perkj26091b12016-09-01 01:17:40 -0700525 RTC_DCHECK_RUN_ON(&encoder_queue_);
perkj26091b12016-09-01 01:17:40 -0700526 RTC_DCHECK(sink_);
Mirko Bonadei675513b2017-11-09 11:09:25 +0100527 RTC_LOG(LS_INFO) << "ConfigureEncoder requested.";
Pera48ddb72016-09-29 11:48:50 +0200528
529 max_data_payload_length_ = max_data_payload_length;
asapersson5f7226f2016-11-25 04:37:00 -0800530 nack_enabled_ = nack_enabled;
Pera48ddb72016-09-29 11:48:50 +0200531 encoder_config_ = std::move(config);
perkjfa10b552016-10-02 23:45:26 -0700532 pending_encoder_reconfiguration_ = true;
Pera48ddb72016-09-29 11:48:50 +0200533
perkjfa10b552016-10-02 23:45:26 -0700534 // Reconfigure the encoder now if the encoder has an internal source or
Per21d45d22016-10-30 21:37:57 +0100535 // if the frame resolution is known. Otherwise, the reconfiguration is
536 // deferred until the next frame to minimize the number of reconfigurations.
537 // The codec configuration depends on incoming video frame size.
538 if (last_frame_info_) {
539 ReconfigureEncoder();
540 } else if (settings_.internal_source) {
Oskar Sundbom8e07c132018-01-08 16:45:42 +0100541 last_frame_info_ = VideoFrameInfo(176, 144, false);
perkjfa10b552016-10-02 23:45:26 -0700542 ReconfigureEncoder();
543 }
544}
perkj26091b12016-09-01 01:17:40 -0700545
Seth Hampsoncc7125f2018-02-02 08:46:16 -0800546// TODO(bugs.webrtc.org/8807): Currently this always does a hard
547// reconfiguration, but this isn't always necessary. Add in logic to only update
548// the VideoBitrateAllocator and call OnEncoderConfigurationChanged with a
549// "soft" reconfiguration.
mflodmancc3d4422017-08-03 08:27:51 -0700550void VideoStreamEncoder::ReconfigureEncoder() {
perkjfa10b552016-10-02 23:45:26 -0700551 RTC_DCHECK(pending_encoder_reconfiguration_);
552 std::vector<VideoStream> streams =
553 encoder_config_.video_stream_factory->CreateEncoderStreams(
554 last_frame_info_->width, last_frame_info_->height, encoder_config_);
perkj26091b12016-09-01 01:17:40 -0700555
ilnik6b826ef2017-06-16 06:53:48 -0700556 // TODO(ilnik): If configured resolution is significantly less than provided,
557 // e.g. because there are not enough SSRCs for all simulcast streams,
558 // signal new resolutions via SinkWants to video source.
559
560 // Stream dimensions may be not equal to given because of a simulcast
561 // restrictions.
562 int highest_stream_width = static_cast<int>(streams.back().width);
563 int highest_stream_height = static_cast<int>(streams.back().height);
564 // Dimension may be reduced to be, e.g. divisible by 4.
565 RTC_CHECK_GE(last_frame_info_->width, highest_stream_width);
566 RTC_CHECK_GE(last_frame_info_->height, highest_stream_height);
567 crop_width_ = last_frame_info_->width - highest_stream_width;
568 crop_height_ = last_frame_info_->height - highest_stream_height;
569
Erik Språng08127a92016-11-16 16:41:30 +0100570 VideoCodec codec;
571 if (!VideoCodecInitializer::SetupCodec(encoder_config_, settings_, streams,
asapersson5f7226f2016-11-25 04:37:00 -0800572 nack_enabled_, &codec,
573 &rate_allocator_)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100574 RTC_LOG(LS_ERROR) << "Failed to create encoder configuration.";
Erik Språng08127a92016-11-16 16:41:30 +0100575 }
perkjfa10b552016-10-02 23:45:26 -0700576
577 codec.startBitrate =
578 std::max(encoder_start_bitrate_bps_ / 1000, codec.minBitrate);
579 codec.startBitrate = std::min(codec.startBitrate, codec.maxBitrate);
580 codec.expect_encode_from_texture = last_frame_info_->is_texture;
sprangfda496a2017-06-15 04:21:07 -0700581 max_framerate_ = codec.maxFramerate;
582 RTC_DCHECK_LE(max_framerate_, kMaxFramerateFps);
Stefan Holmere5904162015-03-26 11:11:06 +0100583
Peter Boströmcd5c25c2016-04-21 16:48:08 +0200584 bool success = video_sender_.RegisterSendCodec(
perkjfa10b552016-10-02 23:45:26 -0700585 &codec, number_of_cores_,
586 static_cast<uint32_t>(max_data_payload_length_)) == VCM_OK;
Peter Boström905f8e72016-03-02 16:59:56 +0100587 if (!success) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100588 RTC_LOG(LS_ERROR) << "Failed to configure encoder.";
sprangfe627f32017-03-29 08:24:59 -0700589 rate_allocator_.reset();
mflodman@webrtc.org84d17832011-12-01 17:02:23 +0000590 }
Peter Boström905f8e72016-03-02 16:59:56 +0100591
Niels Möller96d7f762018-01-30 11:27:16 +0100592 video_sender_.UpdateChannelParameters(rate_allocator_.get(),
ilnik35b7de42017-03-15 04:24:21 -0700593 bitrate_observer_);
594
sprangfda496a2017-06-15 04:21:07 -0700595 // Get the current actual framerate, as measured by the stats proxy. This is
596 // used to get the correct bitrate layer allocation.
597 int current_framerate = stats_proxy_->GetSendFrameRate();
598 if (current_framerate == 0)
599 current_framerate = codec.maxFramerate;
sprang552c7c72017-02-13 04:41:45 -0800600 stats_proxy_->OnEncoderReconfigured(
Ã…sa Perssonaa329e72017-12-15 15:54:44 +0100601 encoder_config_, streams,
sprangfda496a2017-06-15 04:21:07 -0700602 rate_allocator_.get()
603 ? rate_allocator_->GetPreferredBitrateBps(current_framerate)
604 : codec.maxBitrate);
Per512ecb32016-09-23 15:52:06 +0200605
perkjfa10b552016-10-02 23:45:26 -0700606 pending_encoder_reconfiguration_ = false;
Erik Språng08127a92016-11-16 16:41:30 +0100607
Pera48ddb72016-09-29 11:48:50 +0200608 sink_->OnEncoderConfigurationChanged(
perkjfa10b552016-10-02 23:45:26 -0700609 std::move(streams), encoder_config_.min_transmit_bitrate_bps);
kthelgason876222f2016-11-29 01:44:11 -0800610
Niels Möller7dc26b72017-12-06 10:27:48 +0100611 // Get the current target framerate, ie the maximum framerate as specified by
612 // the current codec configuration, or any limit imposed by cpu adaption in
613 // maintain-resolution or balanced mode. This is used to make sure overuse
614 // detection doesn't needlessly trigger in low and/or variable framerate
615 // scenarios.
616 int target_framerate = std::min(
617 max_framerate_, source_proxy_->GetActiveSinkWants().max_framerate_fps);
618 overuse_detector_->OnTargetFramerateUpdated(target_framerate);
619
kthelgason2bc68642017-02-07 07:02:22 -0800620 ConfigureQualityScaler();
621}
622
mflodmancc3d4422017-08-03 08:27:51 -0700623void VideoStreamEncoder::ConfigureQualityScaler() {
kthelgason2bc68642017-02-07 07:02:22 -0800624 RTC_DCHECK_RUN_ON(&encoder_queue_);
kthelgason876222f2016-11-29 01:44:11 -0800625 const auto scaling_settings = settings_.encoder->GetScalingSettings();
asapersson36e9eb42017-03-31 05:29:12 -0700626 const bool quality_scaling_allowed =
asapersson91914e22017-06-01 00:34:08 -0700627 IsResolutionScalingEnabled(degradation_preference_) &&
628 scaling_settings.enabled;
kthelgason3af6cc02017-03-22 00:25:28 -0700629
asapersson36e9eb42017-03-31 05:29:12 -0700630 if (quality_scaling_allowed) {
asapersson09f05612017-05-15 23:40:18 -0700631 if (quality_scaler_.get() == nullptr) {
632 // Quality scaler has not already been configured.
633 // Drop frames and scale down until desired quality is achieved.
634 if (scaling_settings.thresholds) {
635 quality_scaler_.reset(
636 new QualityScaler(this, *(scaling_settings.thresholds)));
637 } else {
638 quality_scaler_.reset(new QualityScaler(this, codec_type_));
639 }
kthelgason876222f2016-11-29 01:44:11 -0800640 }
641 } else {
642 quality_scaler_.reset(nullptr);
kthelgasonad9010c2017-02-14 00:46:51 -0800643 initial_rampup_ = kMaxInitialFramedrop;
kthelgason876222f2016-11-29 01:44:11 -0800644 }
asapersson09f05612017-05-15 23:40:18 -0700645
646 stats_proxy_->SetAdaptationStats(GetActiveCounts(kCpu),
647 GetActiveCounts(kQuality));
mflodman@webrtc.org84d17832011-12-01 17:02:23 +0000648}
649
mflodmancc3d4422017-08-03 08:27:51 -0700650void VideoStreamEncoder::OnFrame(const VideoFrame& video_frame) {
perkj26091b12016-09-01 01:17:40 -0700651 RTC_DCHECK_RUNS_SERIALIZED(&incoming_frame_race_checker_);
perkj26091b12016-09-01 01:17:40 -0700652 VideoFrame incoming_frame = video_frame;
653
654 // Local time in webrtc time base.
ilnik04f4d122017-06-19 07:18:55 -0700655 int64_t current_time_us = clock_->TimeInMicroseconds();
656 int64_t current_time_ms = current_time_us / rtc::kNumMicrosecsPerMillisec;
657 // In some cases, e.g., when the frame from decoder is fed to encoder,
658 // the timestamp may be set to the future. As the encoding pipeline assumes
659 // capture time to be less than present time, we should reset the capture
660 // timestamps here. Otherwise there may be issues with RTP send stream.
661 if (incoming_frame.timestamp_us() > current_time_us)
662 incoming_frame.set_timestamp_us(current_time_us);
perkj26091b12016-09-01 01:17:40 -0700663
664 // Capture time may come from clock with an offset and drift from clock_.
665 int64_t capture_ntp_time_ms;
nisse891419f2017-01-12 10:02:22 -0800666 if (video_frame.ntp_time_ms() > 0) {
perkj26091b12016-09-01 01:17:40 -0700667 capture_ntp_time_ms = video_frame.ntp_time_ms();
668 } else if (video_frame.render_time_ms() != 0) {
669 capture_ntp_time_ms = video_frame.render_time_ms() + delta_ntp_internal_ms_;
670 } else {
nisse1c0dea82017-01-30 02:43:18 -0800671 capture_ntp_time_ms = current_time_ms + delta_ntp_internal_ms_;
perkj26091b12016-09-01 01:17:40 -0700672 }
673 incoming_frame.set_ntp_time_ms(capture_ntp_time_ms);
674
675 // Convert NTP time, in ms, to RTP timestamp.
676 const int kMsToRtpTimestamp = 90;
677 incoming_frame.set_timestamp(
678 kMsToRtpTimestamp * static_cast<uint32_t>(incoming_frame.ntp_time_ms()));
679
680 if (incoming_frame.ntp_time_ms() <= last_captured_timestamp_) {
681 // We don't allow the same capture time for two frames, drop this one.
Mirko Bonadei675513b2017-11-09 11:09:25 +0100682 RTC_LOG(LS_WARNING) << "Same/old NTP timestamp ("
683 << incoming_frame.ntp_time_ms()
684 << " <= " << last_captured_timestamp_
685 << ") for incoming frame. Dropping.";
perkj26091b12016-09-01 01:17:40 -0700686 return;
687 }
688
asapersson6ffb67d2016-09-12 00:10:45 -0700689 bool log_stats = false;
nisse1c0dea82017-01-30 02:43:18 -0800690 if (current_time_ms - last_frame_log_ms_ > kFrameLogIntervalMs) {
691 last_frame_log_ms_ = current_time_ms;
asapersson6ffb67d2016-09-12 00:10:45 -0700692 log_stats = true;
693 }
694
perkj26091b12016-09-01 01:17:40 -0700695 last_captured_timestamp_ = incoming_frame.ntp_time_ms();
asapersson6ffb67d2016-09-12 00:10:45 -0700696 encoder_queue_.PostTask(std::unique_ptr<rtc::QueuedTask>(new EncodeTask(
nissee0e3bdf2017-01-18 02:16:20 -0800697 incoming_frame, this, rtc::TimeMicros(), log_stats)));
perkj26091b12016-09-01 01:17:40 -0700698}
699
Ilya Nikolaevskiyd79314f2017-10-23 10:45:37 +0200700void VideoStreamEncoder::OnDiscardedFrame() {
701 stats_proxy_->OnFrameDroppedBySource();
702}
703
mflodmancc3d4422017-08-03 08:27:51 -0700704bool VideoStreamEncoder::EncoderPaused() const {
perkj26091b12016-09-01 01:17:40 -0700705 RTC_DCHECK_RUN_ON(&encoder_queue_);
pwestin@webrtc.org91563e42013-04-25 22:20:08 +0000706 // Pause video if paused by caller or as long as the network is down or the
707 // pacer queue has grown too large in buffered mode.
perkj57c21f92016-06-17 07:27:16 -0700708 // If the pacer queue has grown too large or the network is down,
perkjfea93092016-05-14 00:58:48 -0700709 // last_observed_bitrate_bps_ will be 0.
perkj26091b12016-09-01 01:17:40 -0700710 return last_observed_bitrate_bps_ == 0;
stefan@webrtc.orgbfacda62013-03-27 16:36:01 +0000711}
712
mflodmancc3d4422017-08-03 08:27:51 -0700713void VideoStreamEncoder::TraceFrameDropStart() {
perkj26091b12016-09-01 01:17:40 -0700714 RTC_DCHECK_RUN_ON(&encoder_queue_);
sprang@webrtc.orgdcebf2d2014-11-04 16:27:16 +0000715 // Start trace event only on the first frame after encoder is paused.
716 if (!encoder_paused_and_dropped_frame_) {
717 TRACE_EVENT_ASYNC_BEGIN0("webrtc", "EncoderPaused", this);
718 }
719 encoder_paused_and_dropped_frame_ = true;
sprang@webrtc.orgdcebf2d2014-11-04 16:27:16 +0000720}
721
mflodmancc3d4422017-08-03 08:27:51 -0700722void VideoStreamEncoder::TraceFrameDropEnd() {
perkj26091b12016-09-01 01:17:40 -0700723 RTC_DCHECK_RUN_ON(&encoder_queue_);
sprang@webrtc.orgdcebf2d2014-11-04 16:27:16 +0000724 // End trace event on first frame after encoder resumes, if frame was dropped.
725 if (encoder_paused_and_dropped_frame_) {
726 TRACE_EVENT_ASYNC_END0("webrtc", "EncoderPaused", this);
727 }
728 encoder_paused_and_dropped_frame_ = false;
729}
730
mflodmancc3d4422017-08-03 08:27:51 -0700731void VideoStreamEncoder::EncodeVideoFrame(const VideoFrame& video_frame,
732 int64_t time_when_posted_us) {
perkj26091b12016-09-01 01:17:40 -0700733 RTC_DCHECK_RUN_ON(&encoder_queue_);
kthelgason876222f2016-11-29 01:44:11 -0800734
perkj26091b12016-09-01 01:17:40 -0700735 if (pre_encode_callback_)
736 pre_encode_callback_->OnFrame(video_frame);
737
Per21d45d22016-10-30 21:37:57 +0100738 if (!last_frame_info_ || video_frame.width() != last_frame_info_->width ||
perkjfa10b552016-10-02 23:45:26 -0700739 video_frame.height() != last_frame_info_->height ||
perkjfa10b552016-10-02 23:45:26 -0700740 video_frame.is_texture() != last_frame_info_->is_texture) {
741 pending_encoder_reconfiguration_ = true;
Oskar Sundbom8e07c132018-01-08 16:45:42 +0100742 last_frame_info_ = VideoFrameInfo(video_frame.width(), video_frame.height(),
743 video_frame.is_texture());
Mirko Bonadei675513b2017-11-09 11:09:25 +0100744 RTC_LOG(LS_INFO) << "Video frame parameters changed: dimensions="
745 << last_frame_info_->width << "x"
746 << last_frame_info_->height
747 << ", texture=" << last_frame_info_->is_texture << ".";
perkjfa10b552016-10-02 23:45:26 -0700748 }
749
kthelgason2bc68642017-02-07 07:02:22 -0800750 if (initial_rampup_ < kMaxInitialFramedrop &&
751 video_frame.size() >
752 MaximumFrameSizeForBitrate(encoder_start_bitrate_bps_ / 1000)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100753 RTC_LOG(LS_INFO) << "Dropping frame. Too large for target bitrate.";
Ã…sa Persson875841d2018-01-08 08:49:53 +0100754 int count = GetConstAdaptCounter().ResolutionCount(kQuality);
kthelgason2bc68642017-02-07 07:02:22 -0800755 AdaptDown(kQuality);
Ã…sa Persson875841d2018-01-08 08:49:53 +0100756 if (GetConstAdaptCounter().ResolutionCount(kQuality) > count) {
757 stats_proxy_->OnInitialQualityResolutionAdaptDown();
758 }
kthelgason2bc68642017-02-07 07:02:22 -0800759 ++initial_rampup_;
760 return;
761 }
762 initial_rampup_ = kMaxInitialFramedrop;
763
sprang57c2fff2017-01-16 06:24:02 -0800764 int64_t now_ms = clock_->TimeInMilliseconds();
perkjfa10b552016-10-02 23:45:26 -0700765 if (pending_encoder_reconfiguration_) {
766 ReconfigureEncoder();
sprang4847ae62017-06-27 07:06:52 -0700767 last_parameters_update_ms_.emplace(now_ms);
sprang57c2fff2017-01-16 06:24:02 -0800768 } else if (!last_parameters_update_ms_ ||
769 now_ms - *last_parameters_update_ms_ >=
770 vcm::VCMProcessTimer::kDefaultProcessIntervalMs) {
Niels Möller96d7f762018-01-30 11:27:16 +0100771 video_sender_.UpdateChannelParameters(rate_allocator_.get(),
sprang57c2fff2017-01-16 06:24:02 -0800772 bitrate_observer_);
sprang4847ae62017-06-27 07:06:52 -0700773 last_parameters_update_ms_.emplace(now_ms);
perkjfa10b552016-10-02 23:45:26 -0700774 }
775
perkj26091b12016-09-01 01:17:40 -0700776 if (EncoderPaused()) {
777 TraceFrameDropStart();
778 return;
mflodman@webrtc.org84d17832011-12-01 17:02:23 +0000779 }
perkj26091b12016-09-01 01:17:40 -0700780 TraceFrameDropEnd();
niklase@google.com470e71d2011-07-07 08:21:25 +0000781
ilnik6b826ef2017-06-16 06:53:48 -0700782 VideoFrame out_frame(video_frame);
783 // Crop frame if needed.
784 if (crop_width_ > 0 || crop_height_ > 0) {
785 int cropped_width = video_frame.width() - crop_width_;
786 int cropped_height = video_frame.height() - crop_height_;
787 rtc::scoped_refptr<I420Buffer> cropped_buffer =
788 I420Buffer::Create(cropped_width, cropped_height);
789 // TODO(ilnik): Remove scaling if cropping is too big, as it should never
790 // happen after SinkWants signaled correctly from ReconfigureEncoder.
791 if (crop_width_ < 4 && crop_height_ < 4) {
792 cropped_buffer->CropAndScaleFrom(
793 *video_frame.video_frame_buffer()->ToI420(), crop_width_ / 2,
794 crop_height_ / 2, cropped_width, cropped_height);
795 } else {
796 cropped_buffer->ScaleFrom(
797 *video_frame.video_frame_buffer()->ToI420().get());
798 }
799 out_frame =
800 VideoFrame(cropped_buffer, video_frame.timestamp(),
801 video_frame.render_time_ms(), video_frame.rotation());
802 out_frame.set_ntp_time_ms(video_frame.ntp_time_ms());
803 }
804
Magnus Jedvert26679d62015-04-07 14:07:41 +0200805 TRACE_EVENT_ASYNC_STEP0("webrtc", "Video", video_frame.render_time_ms(),
hclam@chromium.org1a7b9b92013-07-08 21:31:18 +0000806 "Encode");
pbos@webrtc.orgfe1ef932013-10-21 10:34:43 +0000807
Niels Möller7dc26b72017-12-06 10:27:48 +0100808 overuse_detector_->FrameCaptured(out_frame, time_when_posted_us);
perkjd52063f2016-09-07 06:32:18 -0700809
ilnik6b826ef2017-06-16 06:53:48 -0700810 video_sender_.AddVideoFrame(out_frame, nullptr);
niklase@google.com470e71d2011-07-07 08:21:25 +0000811}
niklase@google.com470e71d2011-07-07 08:21:25 +0000812
mflodmancc3d4422017-08-03 08:27:51 -0700813void VideoStreamEncoder::SendKeyFrame() {
perkj26091b12016-09-01 01:17:40 -0700814 if (!encoder_queue_.IsCurrent()) {
815 encoder_queue_.PostTask([this] { SendKeyFrame(); });
816 return;
817 }
818 RTC_DCHECK_RUN_ON(&encoder_queue_);
Peter Boströmcd5c25c2016-04-21 16:48:08 +0200819 video_sender_.IntraFrameRequest(0);
stefan@webrtc.org07b45a52012-02-02 08:37:48 +0000820}
821
mflodmancc3d4422017-08-03 08:27:51 -0700822EncodedImageCallback::Result VideoStreamEncoder::OnEncodedImage(
Sergey Ulanov525df3f2016-08-02 17:46:41 -0700823 const EncodedImage& encoded_image,
824 const CodecSpecificInfo* codec_specific_info,
825 const RTPFragmentationHeader* fragmentation) {
perkj26091b12016-09-01 01:17:40 -0700826 // Encoded is called on whatever thread the real encoder implementation run
827 // on. In the case of hardware encoders, there might be several encoders
828 // running in parallel on different threads.
sprang552c7c72017-02-13 04:41:45 -0800829 stats_proxy_->OnSendEncodedImage(encoded_image, codec_specific_info);
sprang3911c262016-04-15 01:24:14 -0700830
Sergey Ulanov525df3f2016-08-02 17:46:41 -0700831 EncodedImageCallback::Result result =
832 sink_->OnEncodedImage(encoded_image, codec_specific_info, fragmentation);
perkjbc75d972016-05-02 06:31:25 -0700833
Niels Möller7dc26b72017-12-06 10:27:48 +0100834 int64_t time_sent_us = rtc::TimeMicros();
835 uint32_t timestamp = encoded_image._timeStamp;
kthelgason876222f2016-11-29 01:44:11 -0800836 const int qp = encoded_image.qp_;
Niels Möller83dbeac2017-12-14 16:39:44 +0100837 int64_t capture_time_us =
838 encoded_image.capture_time_ms_ * rtc::kNumMicrosecsPerMillisec;
839
840 rtc::Optional<int> encode_duration_us;
841 if (encoded_image.timing_.flags != TimingFrameFlags::kInvalid) {
842 encode_duration_us.emplace(
843 // TODO(nisse): Maybe use capture_time_ms_ rather than encode_start_ms_?
844 rtc::kNumMicrosecsPerMillisec *
845 (encoded_image.timing_.encode_finish_ms -
846 encoded_image.timing_.encode_start_ms));
847 }
848
849 encoder_queue_.PostTask(
850 [this, timestamp, time_sent_us, qp, capture_time_us, encode_duration_us] {
851 RTC_DCHECK_RUN_ON(&encoder_queue_);
852 overuse_detector_->FrameSent(timestamp, time_sent_us, capture_time_us,
853 encode_duration_us);
854 if (quality_scaler_ && qp >= 0)
855 quality_scaler_->ReportQP(qp);
856 });
perkj803d97f2016-11-01 11:45:46 -0700857
Sergey Ulanov525df3f2016-08-02 17:46:41 -0700858 return result;
Peter Boströmb7d9a972015-12-18 16:01:11 +0100859}
860
Ilya Nikolaevskiyd79314f2017-10-23 10:45:37 +0200861void VideoStreamEncoder::OnDroppedFrame(DropReason reason) {
862 switch (reason) {
863 case DropReason::kDroppedByMediaOptimizations:
864 stats_proxy_->OnFrameDroppedByMediaOptimizations();
865 encoder_queue_.PostTask([this] {
866 RTC_DCHECK_RUN_ON(&encoder_queue_);
867 if (quality_scaler_)
868 quality_scaler_->ReportDroppedFrame();
869 });
870 break;
871 case DropReason::kDroppedByEncoder:
872 stats_proxy_->OnFrameDroppedByEncoder();
873 break;
874 }
kthelgason876222f2016-11-29 01:44:11 -0800875}
876
mflodmancc3d4422017-08-03 08:27:51 -0700877void VideoStreamEncoder::OnReceivedIntraFrameRequest(size_t stream_index) {
perkj26091b12016-09-01 01:17:40 -0700878 if (!encoder_queue_.IsCurrent()) {
879 encoder_queue_.PostTask(
880 [this, stream_index] { OnReceivedIntraFrameRequest(stream_index); });
881 return;
882 }
883 RTC_DCHECK_RUN_ON(&encoder_queue_);
mflodman@webrtc.org84d17832011-12-01 17:02:23 +0000884 // Key frame request from remote side, signal to VCM.
justinlin@chromium.org7bfb3a32013-05-13 22:59:00 +0000885 TRACE_EVENT0("webrtc", "OnKeyFrameRequest");
perkj600246e2016-05-04 11:26:51 -0700886 video_sender_.IntraFrameRequest(stream_index);
mflodman@webrtc.orgaca26292012-10-05 16:17:41 +0000887}
888
mflodmancc3d4422017-08-03 08:27:51 -0700889void VideoStreamEncoder::OnBitrateUpdated(uint32_t bitrate_bps,
890 uint8_t fraction_lost,
891 int64_t round_trip_time_ms) {
perkj26091b12016-09-01 01:17:40 -0700892 if (!encoder_queue_.IsCurrent()) {
893 encoder_queue_.PostTask(
894 [this, bitrate_bps, fraction_lost, round_trip_time_ms] {
895 OnBitrateUpdated(bitrate_bps, fraction_lost, round_trip_time_ms);
896 });
897 return;
898 }
899 RTC_DCHECK_RUN_ON(&encoder_queue_);
900 RTC_DCHECK(sink_) << "sink_ must be set before the encoder is active.";
901
Mirko Bonadei675513b2017-11-09 11:09:25 +0100902 RTC_LOG(LS_VERBOSE) << "OnBitrateUpdated, bitrate " << bitrate_bps
903 << " packet loss " << static_cast<int>(fraction_lost)
904 << " rtt " << round_trip_time_ms;
perkj26091b12016-09-01 01:17:40 -0700905
Peter Boströmcd5c25c2016-04-21 16:48:08 +0200906 video_sender_.SetChannelParameters(bitrate_bps, fraction_lost,
sprang1a646ee2016-12-01 06:34:11 -0800907 round_trip_time_ms, rate_allocator_.get(),
908 bitrate_observer_);
perkj26091b12016-09-01 01:17:40 -0700909
910 encoder_start_bitrate_bps_ =
911 bitrate_bps != 0 ? bitrate_bps : encoder_start_bitrate_bps_;
mflodman101f2502016-06-09 17:21:19 +0200912 bool video_is_suspended = bitrate_bps == 0;
Erik Språng08127a92016-11-16 16:41:30 +0100913 bool video_suspension_changed = video_is_suspended != EncoderPaused();
perkj26091b12016-09-01 01:17:40 -0700914 last_observed_bitrate_bps_ = bitrate_bps;
Peter Boströmd153a372015-11-10 15:27:12 +0000915
sprang552c7c72017-02-13 04:41:45 -0800916 if (video_suspension_changed) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100917 RTC_LOG(LS_INFO) << "Video suspend state changed to: "
918 << (video_is_suspended ? "suspended" : "not suspended");
Peter Boström7083e112015-09-22 16:28:51 +0200919 stats_proxy_->OnSuspendChange(video_is_suspended);
mflodman101f2502016-06-09 17:21:19 +0200920 }
niklase@google.com470e71d2011-07-07 08:21:25 +0000921}
922
mflodmancc3d4422017-08-03 08:27:51 -0700923void VideoStreamEncoder::AdaptDown(AdaptReason reason) {
perkjd52063f2016-09-07 06:32:18 -0700924 RTC_DCHECK_RUN_ON(&encoder_queue_);
sprangc5d62e22017-04-02 23:53:04 -0700925 AdaptationRequest adaptation_request = {
926 last_frame_info_->pixel_count(),
927 stats_proxy_->GetStats().input_frame_rate,
928 AdaptationRequest::Mode::kAdaptDown};
asapersson09f05612017-05-15 23:40:18 -0700929
sprangc5d62e22017-04-02 23:53:04 -0700930 bool downgrade_requested =
931 last_adaptation_request_ &&
932 last_adaptation_request_->mode_ == AdaptationRequest::Mode::kAdaptDown;
933
sprangc5d62e22017-04-02 23:53:04 -0700934 switch (degradation_preference_) {
hbos8d609f62017-04-10 07:39:05 -0700935 case VideoSendStream::DegradationPreference::kBalanced:
asaperssonf7e294d2017-06-13 23:25:22 -0700936 break;
hbos8d609f62017-04-10 07:39:05 -0700937 case VideoSendStream::DegradationPreference::kMaintainFramerate:
sprangc5d62e22017-04-02 23:53:04 -0700938 if (downgrade_requested &&
939 adaptation_request.input_pixel_count_ >=
940 last_adaptation_request_->input_pixel_count_) {
941 // Don't request lower resolution if the current resolution is not
942 // lower than the last time we asked for the resolution to be lowered.
943 return;
944 }
945 break;
hbos8d609f62017-04-10 07:39:05 -0700946 case VideoSendStream::DegradationPreference::kMaintainResolution:
sprangc5d62e22017-04-02 23:53:04 -0700947 if (adaptation_request.framerate_fps_ <= 0 ||
948 (downgrade_requested &&
949 adaptation_request.framerate_fps_ < kMinFramerateFps)) {
950 // If no input fps estimate available, can't determine how to scale down
951 // framerate. Otherwise, don't request lower framerate if we don't have
952 // a valid frame rate. Since framerate, unlike resolution, is a measure
953 // we have to estimate, and can fluctuate naturally over time, don't
954 // make the same kind of limitations as for resolution, but trust the
955 // overuse detector to not trigger too often.
956 return;
957 }
958 break;
hbos8d609f62017-04-10 07:39:05 -0700959 case VideoSendStream::DegradationPreference::kDegradationDisabled:
sprangc5d62e22017-04-02 23:53:04 -0700960 return;
sprang84a37592017-02-10 07:04:27 -0800961 }
sprangc5d62e22017-04-02 23:53:04 -0700962
sprangc5d62e22017-04-02 23:53:04 -0700963 switch (degradation_preference_) {
asaperssonf7e294d2017-06-13 23:25:22 -0700964 case VideoSendStream::DegradationPreference::kBalanced: {
965 // Try scale down framerate, if lower.
966 int fps = MinFps(last_frame_info_->pixel_count());
967 if (source_proxy_->RestrictFramerate(fps)) {
968 GetAdaptCounter().IncrementFramerate(reason);
969 break;
970 }
971 // Scale down resolution.
Karl Wiberg80ba3332018-02-05 10:33:35 +0100972 RTC_FALLTHROUGH();
asaperssonf7e294d2017-06-13 23:25:22 -0700973 }
Ã…sa Perssonc3ed6302017-11-16 14:04:52 +0100974 case VideoSendStream::DegradationPreference::kMaintainFramerate: {
asapersson13874762017-06-07 00:01:02 -0700975 // Scale down resolution.
Ã…sa Perssonc3ed6302017-11-16 14:04:52 +0100976 bool min_pixels_reached = false;
asaperssond0de2952017-04-21 01:47:31 -0700977 if (!source_proxy_->RequestResolutionLowerThan(
asapersson142fcc92017-08-17 08:58:54 -0700978 adaptation_request.input_pixel_count_,
Ã…sa Perssonc3ed6302017-11-16 14:04:52 +0100979 settings_.encoder->GetScalingSettings().min_pixels_per_frame,
980 &min_pixels_reached)) {
981 if (min_pixels_reached)
982 stats_proxy_->OnMinPixelLimitReached();
asaperssond0de2952017-04-21 01:47:31 -0700983 return;
984 }
asaperssonf7e294d2017-06-13 23:25:22 -0700985 GetAdaptCounter().IncrementResolution(reason);
sprangc5d62e22017-04-02 23:53:04 -0700986 break;
Ã…sa Perssonc3ed6302017-11-16 14:04:52 +0100987 }
sprangfda496a2017-06-15 04:21:07 -0700988 case VideoSendStream::DegradationPreference::kMaintainResolution: {
asapersson13874762017-06-07 00:01:02 -0700989 // Scale down framerate.
sprangfda496a2017-06-15 04:21:07 -0700990 const int requested_framerate = source_proxy_->RequestFramerateLowerThan(
991 adaptation_request.framerate_fps_);
992 if (requested_framerate == -1)
asapersson13874762017-06-07 00:01:02 -0700993 return;
sprangfda496a2017-06-15 04:21:07 -0700994 RTC_DCHECK_NE(max_framerate_, -1);
Niels Möller7dc26b72017-12-06 10:27:48 +0100995 overuse_detector_->OnTargetFramerateUpdated(
996 std::min(max_framerate_, requested_framerate));
asaperssonf7e294d2017-06-13 23:25:22 -0700997 GetAdaptCounter().IncrementFramerate(reason);
sprangc5d62e22017-04-02 23:53:04 -0700998 break;
sprangfda496a2017-06-15 04:21:07 -0700999 }
hbos8d609f62017-04-10 07:39:05 -07001000 case VideoSendStream::DegradationPreference::kDegradationDisabled:
sprangc5d62e22017-04-02 23:53:04 -07001001 RTC_NOTREACHED();
1002 }
1003
asaperssond0de2952017-04-21 01:47:31 -07001004 last_adaptation_request_.emplace(adaptation_request);
1005
asapersson09f05612017-05-15 23:40:18 -07001006 UpdateAdaptationStats(reason);
asaperssond0de2952017-04-21 01:47:31 -07001007
Mirko Bonadei675513b2017-11-09 11:09:25 +01001008 RTC_LOG(LS_INFO) << GetConstAdaptCounter().ToString();
perkj26091b12016-09-01 01:17:40 -07001009}
1010
mflodmancc3d4422017-08-03 08:27:51 -07001011void VideoStreamEncoder::AdaptUp(AdaptReason reason) {
perkjd52063f2016-09-07 06:32:18 -07001012 RTC_DCHECK_RUN_ON(&encoder_queue_);
asapersson09f05612017-05-15 23:40:18 -07001013
1014 const AdaptCounter& adapt_counter = GetConstAdaptCounter();
1015 int num_downgrades = adapt_counter.TotalCount(reason);
1016 if (num_downgrades == 0)
perkj803d97f2016-11-01 11:45:46 -07001017 return;
asapersson09f05612017-05-15 23:40:18 -07001018 RTC_DCHECK_GT(num_downgrades, 0);
1019
sprangc5d62e22017-04-02 23:53:04 -07001020 AdaptationRequest adaptation_request = {
1021 last_frame_info_->pixel_count(),
1022 stats_proxy_->GetStats().input_frame_rate,
1023 AdaptationRequest::Mode::kAdaptUp};
1024
1025 bool adapt_up_requested =
1026 last_adaptation_request_ &&
1027 last_adaptation_request_->mode_ == AdaptationRequest::Mode::kAdaptUp;
asapersson09f05612017-05-15 23:40:18 -07001028
asaperssonf7e294d2017-06-13 23:25:22 -07001029 if (degradation_preference_ ==
1030 VideoSendStream::DegradationPreference::kMaintainFramerate) {
1031 if (adapt_up_requested &&
1032 adaptation_request.input_pixel_count_ <=
1033 last_adaptation_request_->input_pixel_count_) {
1034 // Don't request higher resolution if the current resolution is not
1035 // higher than the last time we asked for the resolution to be higher.
sprangc5d62e22017-04-02 23:53:04 -07001036 return;
asaperssonf7e294d2017-06-13 23:25:22 -07001037 }
sprangb1ca0732017-02-01 08:38:12 -08001038 }
sprangc5d62e22017-04-02 23:53:04 -07001039
sprangc5d62e22017-04-02 23:53:04 -07001040 switch (degradation_preference_) {
asaperssonf7e294d2017-06-13 23:25:22 -07001041 case VideoSendStream::DegradationPreference::kBalanced: {
1042 // Try scale up framerate, if higher.
1043 int fps = MaxFps(last_frame_info_->pixel_count());
1044 if (source_proxy_->IncreaseFramerate(fps)) {
1045 GetAdaptCounter().DecrementFramerate(reason, fps);
1046 // Reset framerate in case of fewer fps steps down than up.
1047 if (adapt_counter.FramerateCount() == 0 &&
1048 fps != std::numeric_limits<int>::max()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001049 RTC_LOG(LS_INFO) << "Removing framerate down-scaling setting.";
asaperssonf7e294d2017-06-13 23:25:22 -07001050 source_proxy_->IncreaseFramerate(std::numeric_limits<int>::max());
1051 }
1052 break;
1053 }
1054 // Scale up resolution.
Karl Wiberg80ba3332018-02-05 10:33:35 +01001055 RTC_FALLTHROUGH();
asaperssonf7e294d2017-06-13 23:25:22 -07001056 }
asapersson13874762017-06-07 00:01:02 -07001057 case VideoSendStream::DegradationPreference::kMaintainFramerate: {
1058 // Scale up resolution.
1059 int pixel_count = adaptation_request.input_pixel_count_;
1060 if (adapt_counter.ResolutionCount() == 1) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001061 RTC_LOG(LS_INFO) << "Removing resolution down-scaling setting.";
asapersson13874762017-06-07 00:01:02 -07001062 pixel_count = std::numeric_limits<int>::max();
sprangc5d62e22017-04-02 23:53:04 -07001063 }
asapersson13874762017-06-07 00:01:02 -07001064 if (!source_proxy_->RequestHigherResolutionThan(pixel_count))
1065 return;
asaperssonf7e294d2017-06-13 23:25:22 -07001066 GetAdaptCounter().DecrementResolution(reason);
sprangc5d62e22017-04-02 23:53:04 -07001067 break;
asapersson13874762017-06-07 00:01:02 -07001068 }
1069 case VideoSendStream::DegradationPreference::kMaintainResolution: {
1070 // Scale up framerate.
1071 int fps = adaptation_request.framerate_fps_;
1072 if (adapt_counter.FramerateCount() == 1) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001073 RTC_LOG(LS_INFO) << "Removing framerate down-scaling setting.";
asapersson13874762017-06-07 00:01:02 -07001074 fps = std::numeric_limits<int>::max();
sprangc5d62e22017-04-02 23:53:04 -07001075 }
sprangfda496a2017-06-15 04:21:07 -07001076
1077 const int requested_framerate =
1078 source_proxy_->RequestHigherFramerateThan(fps);
1079 if (requested_framerate == -1) {
Niels Möller7dc26b72017-12-06 10:27:48 +01001080 overuse_detector_->OnTargetFramerateUpdated(max_framerate_);
asapersson13874762017-06-07 00:01:02 -07001081 return;
sprangfda496a2017-06-15 04:21:07 -07001082 }
Niels Möller7dc26b72017-12-06 10:27:48 +01001083 overuse_detector_->OnTargetFramerateUpdated(
1084 std::min(max_framerate_, requested_framerate));
asaperssonf7e294d2017-06-13 23:25:22 -07001085 GetAdaptCounter().DecrementFramerate(reason);
sprangc5d62e22017-04-02 23:53:04 -07001086 break;
asapersson13874762017-06-07 00:01:02 -07001087 }
hbos8d609f62017-04-10 07:39:05 -07001088 case VideoSendStream::DegradationPreference::kDegradationDisabled:
asaperssonf7e294d2017-06-13 23:25:22 -07001089 return;
sprangc5d62e22017-04-02 23:53:04 -07001090 }
1091
asaperssond0de2952017-04-21 01:47:31 -07001092 last_adaptation_request_.emplace(adaptation_request);
1093
asapersson09f05612017-05-15 23:40:18 -07001094 UpdateAdaptationStats(reason);
1095
Mirko Bonadei675513b2017-11-09 11:09:25 +01001096 RTC_LOG(LS_INFO) << adapt_counter.ToString();
asapersson09f05612017-05-15 23:40:18 -07001097}
1098
mflodmancc3d4422017-08-03 08:27:51 -07001099void VideoStreamEncoder::UpdateAdaptationStats(AdaptReason reason) {
asaperssond0de2952017-04-21 01:47:31 -07001100 switch (reason) {
asaperssond0de2952017-04-21 01:47:31 -07001101 case kCpu:
asapersson09f05612017-05-15 23:40:18 -07001102 stats_proxy_->OnCpuAdaptationChanged(GetActiveCounts(kCpu),
1103 GetActiveCounts(kQuality));
1104 break;
1105 case kQuality:
1106 stats_proxy_->OnQualityAdaptationChanged(GetActiveCounts(kCpu),
1107 GetActiveCounts(kQuality));
asaperssond0de2952017-04-21 01:47:31 -07001108 break;
1109 }
perkj26091b12016-09-01 01:17:40 -07001110}
1111
mflodmancc3d4422017-08-03 08:27:51 -07001112VideoStreamEncoder::AdaptCounts VideoStreamEncoder::GetActiveCounts(
1113 AdaptReason reason) {
1114 VideoStreamEncoder::AdaptCounts counts =
1115 GetConstAdaptCounter().Counts(reason);
asapersson09f05612017-05-15 23:40:18 -07001116 switch (reason) {
1117 case kCpu:
1118 if (!IsFramerateScalingEnabled(degradation_preference_))
1119 counts.fps = -1;
1120 if (!IsResolutionScalingEnabled(degradation_preference_))
1121 counts.resolution = -1;
1122 break;
1123 case kQuality:
1124 if (!IsFramerateScalingEnabled(degradation_preference_) ||
1125 !quality_scaler_) {
1126 counts.fps = -1;
1127 }
1128 if (!IsResolutionScalingEnabled(degradation_preference_) ||
1129 !quality_scaler_) {
1130 counts.resolution = -1;
1131 }
1132 break;
sprangc5d62e22017-04-02 23:53:04 -07001133 }
asapersson09f05612017-05-15 23:40:18 -07001134 return counts;
sprangc5d62e22017-04-02 23:53:04 -07001135}
1136
mflodmancc3d4422017-08-03 08:27:51 -07001137VideoStreamEncoder::AdaptCounter& VideoStreamEncoder::GetAdaptCounter() {
asapersson09f05612017-05-15 23:40:18 -07001138 return adapt_counters_[degradation_preference_];
1139}
1140
mflodmancc3d4422017-08-03 08:27:51 -07001141const VideoStreamEncoder::AdaptCounter&
1142VideoStreamEncoder::GetConstAdaptCounter() {
asapersson09f05612017-05-15 23:40:18 -07001143 return adapt_counters_[degradation_preference_];
1144}
1145
1146// Class holding adaptation information.
mflodmancc3d4422017-08-03 08:27:51 -07001147VideoStreamEncoder::AdaptCounter::AdaptCounter() {
asapersson09f05612017-05-15 23:40:18 -07001148 fps_counters_.resize(kScaleReasonSize);
1149 resolution_counters_.resize(kScaleReasonSize);
asaperssonf7e294d2017-06-13 23:25:22 -07001150 static_assert(kScaleReasonSize == 2, "Update MoveCount.");
asapersson09f05612017-05-15 23:40:18 -07001151}
1152
mflodmancc3d4422017-08-03 08:27:51 -07001153VideoStreamEncoder::AdaptCounter::~AdaptCounter() {}
asapersson09f05612017-05-15 23:40:18 -07001154
mflodmancc3d4422017-08-03 08:27:51 -07001155std::string VideoStreamEncoder::AdaptCounter::ToString() const {
asapersson09f05612017-05-15 23:40:18 -07001156 std::stringstream ss;
1157 ss << "Downgrade counts: fps: {" << ToString(fps_counters_);
1158 ss << "}, resolution: {" << ToString(resolution_counters_) << "}";
1159 return ss.str();
1160}
1161
mflodmancc3d4422017-08-03 08:27:51 -07001162VideoStreamEncoder::AdaptCounts VideoStreamEncoder::AdaptCounter::Counts(
1163 int reason) const {
asapersson09f05612017-05-15 23:40:18 -07001164 AdaptCounts counts;
1165 counts.fps = fps_counters_[reason];
1166 counts.resolution = resolution_counters_[reason];
1167 return counts;
1168}
1169
mflodmancc3d4422017-08-03 08:27:51 -07001170void VideoStreamEncoder::AdaptCounter::IncrementFramerate(int reason) {
asaperssonf7e294d2017-06-13 23:25:22 -07001171 ++(fps_counters_[reason]);
asapersson09f05612017-05-15 23:40:18 -07001172}
1173
mflodmancc3d4422017-08-03 08:27:51 -07001174void VideoStreamEncoder::AdaptCounter::IncrementResolution(int reason) {
asaperssonf7e294d2017-06-13 23:25:22 -07001175 ++(resolution_counters_[reason]);
1176}
1177
mflodmancc3d4422017-08-03 08:27:51 -07001178void VideoStreamEncoder::AdaptCounter::DecrementFramerate(int reason) {
asaperssonf7e294d2017-06-13 23:25:22 -07001179 if (fps_counters_[reason] == 0) {
1180 // Balanced mode: Adapt up is in a different order, switch reason.
1181 // E.g. framerate adapt down: quality (2), framerate adapt up: cpu (3).
1182 // 1. Down resolution (cpu): res={quality:0,cpu:1}, fps={quality:0,cpu:0}
1183 // 2. Down fps (quality): res={quality:0,cpu:1}, fps={quality:1,cpu:0}
1184 // 3. Up fps (cpu): res={quality:1,cpu:0}, fps={quality:0,cpu:0}
1185 // 4. Up resolution (quality): res={quality:0,cpu:0}, fps={quality:0,cpu:0}
1186 RTC_DCHECK_GT(TotalCount(reason), 0) << "No downgrade for reason.";
1187 RTC_DCHECK_GT(FramerateCount(), 0) << "Framerate not downgraded.";
1188 MoveCount(&resolution_counters_, reason);
1189 MoveCount(&fps_counters_, (reason + 1) % kScaleReasonSize);
1190 }
1191 --(fps_counters_[reason]);
1192 RTC_DCHECK_GE(fps_counters_[reason], 0);
1193}
1194
mflodmancc3d4422017-08-03 08:27:51 -07001195void VideoStreamEncoder::AdaptCounter::DecrementResolution(int reason) {
asaperssonf7e294d2017-06-13 23:25:22 -07001196 if (resolution_counters_[reason] == 0) {
1197 // Balanced mode: Adapt up is in a different order, switch reason.
1198 RTC_DCHECK_GT(TotalCount(reason), 0) << "No downgrade for reason.";
1199 RTC_DCHECK_GT(ResolutionCount(), 0) << "Resolution not downgraded.";
1200 MoveCount(&fps_counters_, reason);
1201 MoveCount(&resolution_counters_, (reason + 1) % kScaleReasonSize);
1202 }
1203 --(resolution_counters_[reason]);
1204 RTC_DCHECK_GE(resolution_counters_[reason], 0);
1205}
1206
mflodmancc3d4422017-08-03 08:27:51 -07001207void VideoStreamEncoder::AdaptCounter::DecrementFramerate(int reason,
1208 int cur_fps) {
asaperssonf7e294d2017-06-13 23:25:22 -07001209 DecrementFramerate(reason);
1210 // Reset if at max fps (i.e. in case of fewer steps up than down).
1211 if (cur_fps == std::numeric_limits<int>::max())
1212 std::fill(fps_counters_.begin(), fps_counters_.end(), 0);
asapersson09f05612017-05-15 23:40:18 -07001213}
1214
mflodmancc3d4422017-08-03 08:27:51 -07001215int VideoStreamEncoder::AdaptCounter::FramerateCount() const {
asapersson09f05612017-05-15 23:40:18 -07001216 return Count(fps_counters_);
1217}
1218
mflodmancc3d4422017-08-03 08:27:51 -07001219int VideoStreamEncoder::AdaptCounter::ResolutionCount() const {
asapersson09f05612017-05-15 23:40:18 -07001220 return Count(resolution_counters_);
1221}
1222
mflodmancc3d4422017-08-03 08:27:51 -07001223int VideoStreamEncoder::AdaptCounter::FramerateCount(int reason) const {
asapersson09f05612017-05-15 23:40:18 -07001224 return fps_counters_[reason];
1225}
1226
mflodmancc3d4422017-08-03 08:27:51 -07001227int VideoStreamEncoder::AdaptCounter::ResolutionCount(int reason) const {
asapersson09f05612017-05-15 23:40:18 -07001228 return resolution_counters_[reason];
1229}
1230
mflodmancc3d4422017-08-03 08:27:51 -07001231int VideoStreamEncoder::AdaptCounter::TotalCount(int reason) const {
asapersson09f05612017-05-15 23:40:18 -07001232 return FramerateCount(reason) + ResolutionCount(reason);
1233}
1234
mflodmancc3d4422017-08-03 08:27:51 -07001235int VideoStreamEncoder::AdaptCounter::Count(
1236 const std::vector<int>& counters) const {
asapersson09f05612017-05-15 23:40:18 -07001237 return std::accumulate(counters.begin(), counters.end(), 0);
1238}
1239
mflodmancc3d4422017-08-03 08:27:51 -07001240void VideoStreamEncoder::AdaptCounter::MoveCount(std::vector<int>* counters,
1241 int from_reason) {
asaperssonf7e294d2017-06-13 23:25:22 -07001242 int to_reason = (from_reason + 1) % kScaleReasonSize;
1243 ++((*counters)[to_reason]);
1244 --((*counters)[from_reason]);
1245}
1246
mflodmancc3d4422017-08-03 08:27:51 -07001247std::string VideoStreamEncoder::AdaptCounter::ToString(
asapersson09f05612017-05-15 23:40:18 -07001248 const std::vector<int>& counters) const {
1249 std::stringstream ss;
1250 for (size_t reason = 0; reason < kScaleReasonSize; ++reason) {
1251 ss << (reason ? " cpu" : "quality") << ":" << counters[reason];
sprangc5d62e22017-04-02 23:53:04 -07001252 }
asapersson09f05612017-05-15 23:40:18 -07001253 return ss.str();
sprangc5d62e22017-04-02 23:53:04 -07001254}
1255
mflodman@webrtc.org84d17832011-12-01 17:02:23 +00001256} // namespace webrtc