2013-06-26 11:23:01 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef VIDEO_OVERUSE_FRAME_DETECTOR_H_
|
|
|
|
|
#define VIDEO_OVERUSE_FRAME_DETECTOR_H_
|
2013-06-26 11:23:01 +00:00
|
|
|
|
2016-02-05 11:13:28 +01:00
|
|
|
#include <list>
|
2016-03-01 11:52:33 -08:00
|
|
|
#include <memory>
|
2016-02-05 11:13:28 +01:00
|
|
|
|
2018-06-15 12:28:07 +02:00
|
|
|
#include "absl/types/optional.h"
|
2018-07-24 09:29:58 +02:00
|
|
|
#include "api/video/video_stream_encoder_observer.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/video_coding/utility/quality_scaler.h"
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "rtc_base/constructor_magic.h"
|
2019-04-25 08:44:04 +02:00
|
|
|
#include "rtc_base/experiments/field_trial_parser.h"
|
2017-12-06 10:27:48 +01:00
|
|
|
#include "rtc_base/numerics/exp_filter.h"
|
2019-04-09 13:44:04 +02:00
|
|
|
#include "rtc_base/synchronization/sequence_checker.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "rtc_base/task_queue.h"
|
2019-01-18 10:30:54 +01:00
|
|
|
#include "rtc_base/task_utils/repeating_task.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "rtc_base/thread_annotations.h"
|
2013-06-26 11:23:01 +00:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2016-02-05 11:13:28 +01:00
|
|
|
class VideoFrame;
|
2015-05-12 16:51:11 +02:00
|
|
|
|
|
|
|
|
struct CpuOveruseOptions {
|
2016-02-10 08:11:57 -08:00
|
|
|
CpuOveruseOptions();
|
2015-05-12 16:51:11 +02:00
|
|
|
|
|
|
|
|
int low_encode_usage_threshold_percent; // Threshold for triggering underuse.
|
2015-11-26 15:24:52 +01:00
|
|
|
int high_encode_usage_threshold_percent; // Threshold for triggering overuse.
|
2015-05-12 16:51:11 +02:00
|
|
|
// General settings.
|
|
|
|
|
int frame_timeout_interval_ms; // The maximum allowed interval between two
|
|
|
|
|
// frames before resetting estimations.
|
2018-06-19 15:03:05 +02:00
|
|
|
int min_frame_samples; // The minimum number of frames required.
|
2015-05-12 16:51:11 +02:00
|
|
|
int min_process_count; // The number of initial process times required before
|
|
|
|
|
// triggering an overuse/underuse.
|
2015-11-26 15:24:52 +01:00
|
|
|
int high_threshold_consecutive_count; // The number of consecutive checks
|
|
|
|
|
// above the high threshold before
|
|
|
|
|
// triggering an overuse.
|
2017-12-14 16:39:44 +01:00
|
|
|
// New estimator enabled if this is set non-zero.
|
|
|
|
|
int filter_time_ms; // Time constant for averaging
|
2015-05-12 16:51:11 +02:00
|
|
|
};
|
|
|
|
|
|
2015-09-08 10:52:42 +02:00
|
|
|
// Use to detect system overuse based on the send-side processing time of
|
2016-09-07 06:32:18 -07:00
|
|
|
// incoming frames. All methods must be called on a single task queue but it can
|
|
|
|
|
// be created and destroyed on an arbitrary thread.
|
|
|
|
|
// OveruseFrameDetector::StartCheckForOveruse must be called to periodically
|
|
|
|
|
// check for overuse.
|
|
|
|
|
class OveruseFrameDetector {
|
2013-06-26 11:23:01 +00:00
|
|
|
public:
|
2018-03-28 16:40:58 +02:00
|
|
|
explicit OveruseFrameDetector(CpuOveruseMetricsObserver* metrics_observer);
|
2017-06-15 04:21:07 -07:00
|
|
|
virtual ~OveruseFrameDetector();
|
2013-06-26 11:23:01 +00:00
|
|
|
|
2016-09-07 06:32:18 -07:00
|
|
|
// Start to periodically check for overuse.
|
2019-03-11 17:26:36 +01:00
|
|
|
void StartCheckForOveruse(rtc::TaskQueue* task_queue,
|
|
|
|
|
const CpuOveruseOptions& options,
|
2018-03-28 16:40:58 +02:00
|
|
|
AdaptationObserverInterface* overuse_observer);
|
2016-09-07 06:32:18 -07:00
|
|
|
|
|
|
|
|
// StopCheckForOveruse must be called before destruction if
|
|
|
|
|
// StartCheckForOveruse has been called.
|
|
|
|
|
void StopCheckForOveruse();
|
|
|
|
|
|
2017-12-06 10:27:48 +01:00
|
|
|
// Defines the current maximum framerate targeted by the capturer. This is
|
|
|
|
|
// used to make sure the encode usage percent doesn't drop unduly if the
|
|
|
|
|
// capturer has quiet periods (for instance caused by screen capturers with
|
|
|
|
|
// variable capture rate depending on content updates), otherwise we might
|
|
|
|
|
// experience adaptation toggling.
|
|
|
|
|
virtual void OnTargetFramerateUpdated(int framerate_fps);
|
|
|
|
|
|
2013-07-31 16:42:21 +00:00
|
|
|
// Called for each captured frame.
|
2017-12-06 10:27:48 +01:00
|
|
|
void FrameCaptured(const VideoFrame& frame, int64_t time_when_first_seen_us);
|
2013-06-26 11:23:01 +00:00
|
|
|
|
2017-12-06 10:27:48 +01:00
|
|
|
// Called for each sent frame.
|
2017-12-14 16:39:44 +01:00
|
|
|
void FrameSent(uint32_t timestamp,
|
|
|
|
|
int64_t time_sent_in_us,
|
|
|
|
|
int64_t capture_time_us,
|
2018-06-15 12:28:07 +02:00
|
|
|
absl::optional<int> encode_duration_us);
|
2013-11-20 13:51:40 +00:00
|
|
|
|
2017-12-07 11:22:39 +01:00
|
|
|
// Interface for cpu load estimation. Intended for internal use only.
|
|
|
|
|
class ProcessingUsage {
|
|
|
|
|
public:
|
|
|
|
|
virtual void Reset() = 0;
|
|
|
|
|
virtual void SetMaxSampleDiffMs(float diff_ms) = 0;
|
2017-12-07 15:23:58 +01:00
|
|
|
virtual void FrameCaptured(const VideoFrame& frame,
|
|
|
|
|
int64_t time_when_first_seen_us,
|
|
|
|
|
int64_t last_capture_time_us) = 0;
|
|
|
|
|
// Returns encode_time in us, if there's a new measurement.
|
2018-06-15 12:28:07 +02:00
|
|
|
virtual absl::optional<int> FrameSent(
|
2017-12-14 16:39:44 +01:00
|
|
|
// These two argument used by old estimator.
|
|
|
|
|
uint32_t timestamp,
|
|
|
|
|
int64_t time_sent_in_us,
|
|
|
|
|
// And these two by the new estimator.
|
|
|
|
|
int64_t capture_time_us,
|
2018-06-15 12:28:07 +02:00
|
|
|
absl::optional<int> encode_duration_us) = 0;
|
2017-12-07 15:23:58 +01:00
|
|
|
|
2017-12-07 11:22:39 +01:00
|
|
|
virtual int Value() = 0;
|
|
|
|
|
virtual ~ProcessingUsage() = default;
|
|
|
|
|
};
|
|
|
|
|
|
2016-09-07 06:32:18 -07:00
|
|
|
protected:
|
2018-01-31 16:09:31 +01:00
|
|
|
// Protected for test purposes.
|
|
|
|
|
void CheckForOveruse(AdaptationObserverInterface* overuse_observer);
|
2018-03-28 16:40:58 +02:00
|
|
|
void SetOptions(const CpuOveruseOptions& options);
|
2013-06-26 11:23:01 +00:00
|
|
|
|
2018-04-19 09:04:13 +02:00
|
|
|
CpuOveruseOptions options_;
|
|
|
|
|
|
2013-06-26 11:23:01 +00:00
|
|
|
private:
|
2016-09-07 06:32:18 -07:00
|
|
|
void EncodedFrameTimeMeasured(int encode_duration_ms);
|
2018-07-24 09:29:58 +02:00
|
|
|
bool IsOverusing(int encode_usage_percent);
|
|
|
|
|
bool IsUnderusing(int encode_usage_percent, int64_t time_now);
|
2013-06-26 11:23:01 +00:00
|
|
|
|
2016-09-07 06:32:18 -07:00
|
|
|
bool FrameTimeoutDetected(int64_t now) const;
|
|
|
|
|
bool FrameSizeChanged(int num_pixels) const;
|
2014-03-20 13:15:01 +00:00
|
|
|
|
2017-12-06 10:27:48 +01:00
|
|
|
void ResetAll(int num_pixels);
|
2014-02-17 19:02:15 +00:00
|
|
|
|
2017-12-07 11:22:39 +01:00
|
|
|
static std::unique_ptr<ProcessingUsage> CreateProcessingUsage(
|
2017-12-08 14:11:14 +01:00
|
|
|
const CpuOveruseOptions& options);
|
Reland of Add framerate to VideoSinkWants and ability to signal on overuse (patchset #1 id:1 of https://codereview.webrtc.org/2783183003/ )
Reason for revert:
Seem to be a flaky test rather than an issue with this cl. Creating reland, will add code to reduce flakiness to that test.
Original issue's description:
> Revert of Add framerate to VideoSinkWants and ability to signal on overuse (patchset #8 id:410001 of https://codereview.webrtc.org/2781433002/ )
>
> Reason for revert:
> This has resulted in failure of CallPerfTest.ReceivesCpuOveruseAndUnderuse test on the Win7 build bot https://build.chromium.org/p/client.webrtc.perf/builders/Win7/builds/1780
>
> Original issue's description:
> > Reland of Add framerate to VideoSinkWants and ability to signal on overuse (patchset #1 id:1 of https://codereview.webrtc.org/2764133002/ )
> >
> > Reason for revert:
> > Found issue with test case, will add fix to reland cl.
> >
> > Original issue's description:
> > > Revert of Add framerate to VideoSinkWants and ability to signal on overuse (patchset #14 id:250001 of https://codereview.webrtc.org/2716643002/ )
> > >
> > > Reason for revert:
> > > Breaks perf tests:
> > > https://build.chromium.org/p/client.webrtc.perf/builders/Win7/builds/1679
> > > https://build.chromium.org/p/client.webrtc.perf/builders/Android32%20Tests%20%28L%20Nexus5%29/builds/2325
> > >
> > > Original issue's description:
> > > > Add framerate to VideoSinkWants and ability to signal on overuse
> > > >
> > > > In ViEEncoder, try to reduce framerate instead of resolution if the
> > > > current degradation preference is maintain-resolution rather than
> > > > balanced.
> > > >
> > > > BUG=webrtc:4172
> > > >
> > > > Review-Url: https://codereview.webrtc.org/2716643002
> > > > Cr-Commit-Position: refs/heads/master@{#17327}
> > > > Committed: https://chromium.googlesource.com/external/webrtc/+/72acf2526177bb4dbb5103cd6e165eb4361a5ae6
> > >
> > > TBR=nisse@webrtc.org,magjed@webrtc.org,kthelgason@webrtc.org,ilnik@webrtc.org,stefan@webrtc.org,sprang@webrtc.org
> > > # Skipping CQ checks because original CL landed less than 1 days ago.
> > > NOPRESUBMIT=true
> > > NOTREECHECKS=true
> > > NOTRY=true
> > > BUG=webrtc:4172
> > >
> > > Review-Url: https://codereview.webrtc.org/2764133002
> > > Cr-Commit-Position: refs/heads/master@{#17331}
> > > Committed: https://chromium.googlesource.com/external/webrtc/+/8b45b11144c968b4173215c76f78c710c9a2ed0b
> >
> > TBR=nisse@webrtc.org,magjed@webrtc.org,kthelgason@webrtc.org,ilnik@webrtc.org,stefan@webrtc.org,skvlad@webrtc.org
> > # Not skipping CQ checks because original CL landed more than 1 days ago.
> > BUG=webrtc:4172
> >
> > Review-Url: https://codereview.webrtc.org/2781433002
> > Cr-Commit-Position: refs/heads/master@{#17474}
> > Committed: https://chromium.googlesource.com/external/webrtc/+/3ea3c77e93121b1ab9d5e46641e6764f2cca0d51
>
> TBR=ilnik@webrtc.org,stefan@webrtc.org,asapersson@webrtc.org,sprang@webrtc.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=webrtc:4172
>
> Review-Url: https://codereview.webrtc.org/2783183003
> Cr-Commit-Position: refs/heads/master@{#17477}
> Committed: https://chromium.googlesource.com/external/webrtc/+/f9ed235c9b7248694edcb46feb1f29ce7456ab59
R=ilnik@webrtc.org,stefan@webrtc.org
BUG=webrtc:4172
Review-Url: https://codereview.webrtc.org/2789823002
Cr-Commit-Position: refs/heads/master@{#17498}
2017-04-02 23:53:04 -07:00
|
|
|
|
2019-04-09 13:44:04 +02:00
|
|
|
SequenceChecker task_checker_;
|
2016-09-07 06:32:18 -07:00
|
|
|
// Owned by the task queue from where StartCheckForOveruse is called.
|
2019-01-18 10:30:54 +01:00
|
|
|
RepeatingTaskHandle check_overuse_task_ RTC_GUARDED_BY(task_checker_);
|
2013-06-26 11:23:01 +00:00
|
|
|
|
2015-02-26 12:19:31 +00:00
|
|
|
// Stats metrics.
|
|
|
|
|
CpuOveruseMetricsObserver* const metrics_observer_;
|
2018-07-24 09:29:58 +02:00
|
|
|
absl::optional<int> encode_usage_percent_ RTC_GUARDED_BY(task_checker_);
|
2013-08-30 17:16:32 +00:00
|
|
|
|
2017-09-09 04:17:22 -07:00
|
|
|
int64_t num_process_times_ RTC_GUARDED_BY(task_checker_);
|
2013-08-30 17:16:32 +00:00
|
|
|
|
2017-09-09 04:17:22 -07:00
|
|
|
int64_t last_capture_time_us_ RTC_GUARDED_BY(task_checker_);
|
2015-09-24 00:53:32 -07:00
|
|
|
|
2016-09-07 06:32:18 -07:00
|
|
|
// Number of pixels of last captured frame.
|
2017-09-09 04:17:22 -07:00
|
|
|
int num_pixels_ RTC_GUARDED_BY(task_checker_);
|
2017-12-06 10:27:48 +01:00
|
|
|
int max_framerate_ RTC_GUARDED_BY(task_checker_);
|
2017-09-09 04:17:22 -07:00
|
|
|
int64_t last_overuse_time_ms_ RTC_GUARDED_BY(task_checker_);
|
|
|
|
|
int checks_above_threshold_ RTC_GUARDED_BY(task_checker_);
|
|
|
|
|
int num_overuse_detections_ RTC_GUARDED_BY(task_checker_);
|
|
|
|
|
int64_t last_rampup_time_ms_ RTC_GUARDED_BY(task_checker_);
|
|
|
|
|
bool in_quick_rampup_ RTC_GUARDED_BY(task_checker_);
|
|
|
|
|
int current_rampup_delay_ms_ RTC_GUARDED_BY(task_checker_);
|
2013-06-26 11:23:01 +00:00
|
|
|
|
2018-03-28 16:40:58 +02:00
|
|
|
std::unique_ptr<ProcessingUsage> usage_ RTC_PT_GUARDED_BY(task_checker_);
|
2013-11-20 13:51:40 +00:00
|
|
|
|
2019-04-25 08:44:04 +02:00
|
|
|
// If set by field trial, overrides CpuOveruseOptions::filter_time_ms.
|
|
|
|
|
FieldTrialOptional<TimeDelta> filter_time_constant_{"tau"};
|
|
|
|
|
|
2015-09-16 05:37:44 -07:00
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(OveruseFrameDetector);
|
2013-06-26 11:23:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // VIDEO_OVERUSE_FRAME_DETECTOR_H_
|