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.
|
|
|
|
|
*/
|
|
|
|
|
|
2015-12-09 12:13:30 +01:00
|
|
|
#ifndef WEBRTC_VIDEO_OVERUSE_FRAME_DETECTOR_H_
|
|
|
|
|
#define WEBRTC_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
|
|
|
|
2014-05-21 21:18:46 +00:00
|
|
|
#include "webrtc/base/constructormagic.h"
|
2016-02-05 11:13:28 +01:00
|
|
|
#include "webrtc/base/optional.h"
|
2014-07-16 21:28:26 +00:00
|
|
|
#include "webrtc/base/exp_filter.h"
|
2016-09-07 06:32:18 -07:00
|
|
|
#include "webrtc/base/sequenced_task_checker.h"
|
|
|
|
|
#include "webrtc/base/task_queue.h"
|
2014-11-11 09:40:19 +00:00
|
|
|
#include "webrtc/base/thread_annotations.h"
|
2013-06-26 11:23:01 +00:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
class Clock;
|
2016-02-05 11:13:28 +01:00
|
|
|
class EncodedFrameObserver;
|
|
|
|
|
class VideoFrame;
|
2015-05-12 16:51:11 +02:00
|
|
|
|
|
|
|
|
// CpuOveruseObserver is called when a system overuse is detected and
|
|
|
|
|
// VideoEngine cannot keep up the encoding frequency.
|
|
|
|
|
class CpuOveruseObserver {
|
|
|
|
|
public:
|
|
|
|
|
// Called as soon as an overuse is detected.
|
|
|
|
|
virtual void OveruseDetected() = 0;
|
|
|
|
|
// Called periodically when the system is not overused any longer.
|
|
|
|
|
virtual void NormalUsage() = 0;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual ~CpuOveruseObserver() {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
int min_frame_samples; // The minimum number of frames required.
|
|
|
|
|
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.
|
2015-05-12 16:51:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct CpuOveruseMetrics {
|
2015-12-07 03:12:22 -08:00
|
|
|
CpuOveruseMetrics() : encode_usage_percent(-1) {}
|
2015-05-12 16:51:11 +02:00
|
|
|
|
2015-11-26 15:24:52 +01:00
|
|
|
int encode_usage_percent; // Average encode time divided by the average time
|
|
|
|
|
// difference between incoming captured frames.
|
2015-05-12 16:51:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class CpuOveruseMetricsObserver {
|
|
|
|
|
public:
|
|
|
|
|
virtual ~CpuOveruseMetricsObserver() {}
|
2016-02-05 11:13:28 +01:00
|
|
|
virtual void OnEncodedFrameTimeMeasured(int encode_duration_ms,
|
|
|
|
|
const CpuOveruseMetrics& metrics) = 0;
|
2015-05-12 16:51:11 +02:00
|
|
|
};
|
2013-09-23 20:05:39 +00: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:
|
2015-02-26 12:19:31 +00:00
|
|
|
OveruseFrameDetector(Clock* clock,
|
2015-06-26 06:58:16 +02:00
|
|
|
const CpuOveruseOptions& options,
|
|
|
|
|
CpuOveruseObserver* overuse_observer,
|
2016-02-05 11:13:28 +01:00
|
|
|
EncodedFrameObserver* encoder_timing_,
|
2015-02-26 12:19:31 +00:00
|
|
|
CpuOveruseMetricsObserver* metrics_observer);
|
2013-06-26 11:23:01 +00:00
|
|
|
~OveruseFrameDetector();
|
|
|
|
|
|
2016-09-07 06:32:18 -07:00
|
|
|
// Start to periodically check for overuse.
|
|
|
|
|
void StartCheckForOveruse();
|
|
|
|
|
|
|
|
|
|
// StopCheckForOveruse must be called before destruction if
|
|
|
|
|
// StartCheckForOveruse has been called.
|
|
|
|
|
void StopCheckForOveruse();
|
|
|
|
|
|
2013-07-31 16:42:21 +00:00
|
|
|
// Called for each captured frame.
|
2016-09-07 06:32:18 -07:00
|
|
|
void FrameCaptured(const VideoFrame& frame, int64_t time_when_first_seen_ms);
|
2013-06-26 11:23:01 +00:00
|
|
|
|
2014-10-16 06:57:12 +00:00
|
|
|
// Called for each sent frame.
|
2016-09-07 06:32:18 -07:00
|
|
|
void FrameSent(uint32_t timestamp, int64_t time_sent_in_ms);
|
2013-11-20 13:51:40 +00:00
|
|
|
|
2016-09-07 06:32:18 -07:00
|
|
|
protected:
|
|
|
|
|
void CheckForOveruse(); // Protected for test purposes.
|
2013-06-26 11:23:01 +00:00
|
|
|
|
|
|
|
|
private:
|
2014-10-16 06:57:12 +00:00
|
|
|
class SendProcessingUsage;
|
2016-09-07 06:32:18 -07:00
|
|
|
class CheckOveruseTask;
|
2016-02-05 11:13:28 +01:00
|
|
|
struct FrameTiming {
|
|
|
|
|
FrameTiming(int64_t capture_ntp_ms, uint32_t timestamp, int64_t now)
|
|
|
|
|
: capture_ntp_ms(capture_ntp_ms),
|
|
|
|
|
timestamp(timestamp),
|
|
|
|
|
capture_ms(now),
|
|
|
|
|
last_send_ms(-1) {}
|
|
|
|
|
int64_t capture_ntp_ms;
|
|
|
|
|
uint32_t timestamp;
|
|
|
|
|
int64_t capture_ms;
|
|
|
|
|
int64_t last_send_ms;
|
|
|
|
|
};
|
|
|
|
|
|
2016-09-07 06:32:18 -07:00
|
|
|
void EncodedFrameTimeMeasured(int encode_duration_ms);
|
2015-09-24 00:53:32 -07:00
|
|
|
bool IsOverusing(const CpuOveruseMetrics& metrics);
|
|
|
|
|
bool IsUnderusing(const CpuOveruseMetrics& metrics, 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
|
|
|
|
2016-09-07 06:32:18 -07:00
|
|
|
void ResetAll(int num_pixels);
|
2014-02-17 19:02:15 +00:00
|
|
|
|
2016-09-07 06:32:18 -07:00
|
|
|
rtc::SequencedTaskChecker task_checker_;
|
|
|
|
|
// Owned by the task queue from where StartCheckForOveruse is called.
|
|
|
|
|
CheckOveruseTask* check_overuse_task_;
|
2013-06-26 11:23:01 +00:00
|
|
|
|
2015-06-26 06:58:16 +02:00
|
|
|
const CpuOveruseOptions options_;
|
2013-06-26 11:23:01 +00:00
|
|
|
|
2015-06-26 06:58:16 +02:00
|
|
|
// Observer getting overuse reports.
|
|
|
|
|
CpuOveruseObserver* const observer_;
|
2016-02-05 11:13:28 +01:00
|
|
|
EncodedFrameObserver* const encoder_timing_;
|
2014-03-20 13:15:01 +00:00
|
|
|
|
2015-02-26 12:19:31 +00:00
|
|
|
// Stats metrics.
|
|
|
|
|
CpuOveruseMetricsObserver* const metrics_observer_;
|
2016-09-07 06:32:18 -07:00
|
|
|
rtc::Optional<CpuOveruseMetrics> metrics_ GUARDED_BY(task_checker_);
|
2015-01-28 17:33:12 +00:00
|
|
|
Clock* const clock_;
|
2013-08-30 17:16:32 +00:00
|
|
|
|
2016-09-07 06:32:18 -07:00
|
|
|
int64_t num_process_times_ GUARDED_BY(task_checker_);
|
2013-08-30 17:16:32 +00:00
|
|
|
|
2016-09-07 06:32:18 -07:00
|
|
|
int64_t last_capture_time_ms_ GUARDED_BY(task_checker_);
|
|
|
|
|
int64_t last_processed_capture_time_ms_ 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.
|
|
|
|
|
int num_pixels_ GUARDED_BY(task_checker_);
|
|
|
|
|
int64_t last_overuse_time_ms_ GUARDED_BY(task_checker_);
|
|
|
|
|
int checks_above_threshold_ GUARDED_BY(task_checker_);
|
|
|
|
|
int num_overuse_detections_ GUARDED_BY(task_checker_);
|
|
|
|
|
int64_t last_rampup_time_ms_ GUARDED_BY(task_checker_);
|
|
|
|
|
bool in_quick_rampup_ GUARDED_BY(task_checker_);
|
|
|
|
|
int current_rampup_delay_ms_ GUARDED_BY(task_checker_);
|
2013-06-26 11:23:01 +00:00
|
|
|
|
2015-02-08 18:27:46 +00:00
|
|
|
// TODO(asapersson): Can these be regular members (avoid separate heap
|
|
|
|
|
// allocs)?
|
2016-09-07 06:32:18 -07:00
|
|
|
const std::unique_ptr<SendProcessingUsage> usage_ GUARDED_BY(task_checker_);
|
|
|
|
|
std::list<FrameTiming> frame_timing_ GUARDED_BY(task_checker_);
|
2013-11-20 13:51:40 +00:00
|
|
|
|
2015-09-16 05:37:44 -07:00
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(OveruseFrameDetector);
|
2013-06-26 11:23:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2015-12-09 12:13:30 +01:00
|
|
|
#endif // WEBRTC_VIDEO_OVERUSE_FRAME_DETECTOR_H_
|