2014-09-12 11:51:47 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2014 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef WEBRTC_MODULES_VIDEO_CODING_UTILITY_QUALITY_SCALER_H_
|
|
|
|
|
#define WEBRTC_MODULES_VIDEO_CODING_UTILITY_QUALITY_SCALER_H_
|
|
|
|
|
|
2016-11-29 01:44:11 -08:00
|
|
|
#include <utility>
|
|
|
|
|
|
2016-09-28 08:17:43 -07:00
|
|
|
#include "webrtc/common_types.h"
|
2016-11-29 01:44:11 -08:00
|
|
|
#include "webrtc/video_encoder.h"
|
|
|
|
|
#include "webrtc/base/optional.h"
|
|
|
|
|
#include "webrtc/base/sequenced_task_checker.h"
|
2015-11-18 23:04:10 +01:00
|
|
|
#include "webrtc/modules/video_coding/utility/moving_average.h"
|
2014-09-12 11:51:47 +00:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
2016-11-29 01:44:11 -08:00
|
|
|
|
|
|
|
|
// An interface for a class that receives scale up/down requests.
|
|
|
|
|
class ScalingObserverInterface {
|
2014-09-12 11:51:47 +00:00
|
|
|
public:
|
2016-11-29 01:44:11 -08:00
|
|
|
enum ScaleReason : size_t { kQuality = 0, kCpu = 1 };
|
|
|
|
|
static const size_t kScaleReasonSize = 2;
|
|
|
|
|
// Called to signal that we can handle larger frames.
|
|
|
|
|
virtual void ScaleUp(ScaleReason reason) = 0;
|
|
|
|
|
// Called to signal that encoder to scale down.
|
|
|
|
|
virtual void ScaleDown(ScaleReason reason) = 0;
|
2014-09-12 11:51:47 +00:00
|
|
|
|
2016-11-29 01:44:11 -08:00
|
|
|
protected:
|
|
|
|
|
virtual ~ScalingObserverInterface() {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// QualityScaler runs asynchronously and monitors QP values of encoded frames.
|
|
|
|
|
// It holds a reference to a ScalingObserverInterface implementation to signal
|
|
|
|
|
// an intent to scale up or down.
|
|
|
|
|
class QualityScaler {
|
|
|
|
|
public:
|
|
|
|
|
// Construct a QualityScaler with a given |observer|.
|
|
|
|
|
// This starts the quality scaler periodically checking what the average QP
|
|
|
|
|
// has been recently.
|
|
|
|
|
QualityScaler(ScalingObserverInterface* observer, VideoCodecType codec_type);
|
|
|
|
|
// If specific thresholds are desired these can be supplied as |thresholds|.
|
|
|
|
|
QualityScaler(ScalingObserverInterface* observer,
|
|
|
|
|
VideoEncoder::QpThresholds thresholds);
|
|
|
|
|
virtual ~QualityScaler();
|
|
|
|
|
// Should be called each time the encoder drops a frame
|
2015-04-21 15:30:11 -07:00
|
|
|
void ReportDroppedFrame();
|
2016-11-29 01:44:11 -08:00
|
|
|
// Inform the QualityScaler of the last seen QP.
|
|
|
|
|
void ReportQP(int qp);
|
|
|
|
|
|
|
|
|
|
// The following members declared protected for testing purposes
|
|
|
|
|
protected:
|
|
|
|
|
QualityScaler(ScalingObserverInterface* observer,
|
|
|
|
|
VideoEncoder::QpThresholds thresholds,
|
|
|
|
|
int64_t sampling_period);
|
2014-09-12 11:51:47 +00:00
|
|
|
|
|
|
|
|
private:
|
2016-11-29 01:44:11 -08:00
|
|
|
class CheckQPTask;
|
|
|
|
|
void CheckQP();
|
2014-09-12 11:51:47 +00:00
|
|
|
void ClearSamples();
|
2016-11-29 01:44:11 -08:00
|
|
|
void ReportQPLow();
|
|
|
|
|
void ReportQPHigh();
|
|
|
|
|
int64_t GetSamplingPeriodMs() const;
|
2014-09-12 11:51:47 +00:00
|
|
|
|
2016-11-29 01:44:11 -08:00
|
|
|
CheckQPTask* check_qp_task_ GUARDED_BY(&task_checker_);
|
|
|
|
|
ScalingObserverInterface* const observer_ GUARDED_BY(&task_checker_);
|
|
|
|
|
rtc::SequencedTaskChecker task_checker_;
|
2016-04-13 02:51:02 -07:00
|
|
|
|
2016-11-29 01:44:11 -08:00
|
|
|
const int64_t sampling_period_ms_;
|
|
|
|
|
bool fast_rampup_ GUARDED_BY(&task_checker_);
|
|
|
|
|
MovingAverage average_qp_ GUARDED_BY(&task_checker_);
|
|
|
|
|
MovingAverage framedrop_percent_ GUARDED_BY(&task_checker_);
|
2014-09-12 11:51:47 +00:00
|
|
|
|
2016-11-29 01:44:11 -08:00
|
|
|
VideoEncoder::QpThresholds thresholds_ GUARDED_BY(&task_checker_);
|
2014-09-12 11:51:47 +00:00
|
|
|
};
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
|
|
|
|
#endif // WEBRTC_MODULES_VIDEO_CODING_UTILITY_QUALITY_SCALER_H_
|