blob: bc2c6bb84936d39b92957f0a482cc6996ed11ed0 [file] [log] [blame]
tkchinf75d0082016-02-23 22:49:42 -08001/*
2 * Copyright 2016 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef COMMON_VIDEO_INCLUDE_BITRATE_ADJUSTER_H_
12#define COMMON_VIDEO_INCLUDE_BITRATE_ADJUSTER_H_
tkchinf75d0082016-02-23 22:49:42 -080013
Yves Gerey988cc082018-10-23 12:03:01 +020014#include <stddef.h>
15#include <stdint.h>
tkchinf75d0082016-02-23 22:49:42 -080016
Yves Gerey988cc082018-10-23 12:03:01 +020017#include "absl/types/optional.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018#include "rtc_base/criticalsection.h"
19#include "rtc_base/rate_statistics.h"
Yves Gerey988cc082018-10-23 12:03:01 +020020#include "rtc_base/thread_annotations.h"
tkchinf75d0082016-02-23 22:49:42 -080021
22namespace webrtc {
23
tkchinf75d0082016-02-23 22:49:42 -080024// Certain hardware encoders tend to consistently overshoot the bitrate that
25// they are configured to encode at. This class estimates an adjusted bitrate
26// that when set on the encoder will produce the desired bitrate.
27class BitrateAdjuster {
28 public:
29 // min_adjusted_bitrate_pct and max_adjusted_bitrate_pct are the lower and
30 // upper bound outputted adjusted bitrates as a percentage of the target
31 // bitrate.
Niels Möller2cb7b5e2018-04-19 10:02:26 +020032 BitrateAdjuster(float min_adjusted_bitrate_pct,
tkchinf75d0082016-02-23 22:49:42 -080033 float max_adjusted_bitrate_pct);
34 virtual ~BitrateAdjuster() {}
35
36 static const uint32_t kBitrateUpdateIntervalMs;
37 static const uint32_t kBitrateUpdateFrameInterval;
38 static const float kBitrateTolerancePct;
39 static const float kBytesPerMsToBitsPerSecond;
40
41 // Sets the desired bitrate in bps (bits per second).
42 // Should be called at least once before Update.
43 void SetTargetBitrateBps(uint32_t bitrate_bps);
44 uint32_t GetTargetBitrateBps() const;
45
46 // Returns the adjusted bitrate in bps.
47 uint32_t GetAdjustedBitrateBps() const;
48
49 // Returns what we think the current bitrate is.
Danil Chapovalov196100e2018-06-21 10:17:24 +020050 absl::optional<uint32_t> GetEstimatedBitrateBps();
tkchinf75d0082016-02-23 22:49:42 -080051
52 // This should be called after each frame is encoded. The timestamp at which
53 // it is called is used to estimate the output bitrate of the encoder.
54 // Should be called from only one thread.
55 void Update(size_t frame_size);
56
57 private:
58 // Returns true if the bitrate is within kBitrateTolerancePct of bitrate_bps.
59 bool IsWithinTolerance(uint32_t bitrate_bps, uint32_t target_bitrate_bps);
60
61 // Returns smallest possible adjusted value.
danilchapa37de392017-09-09 04:17:22 -070062 uint32_t GetMinAdjustedBitrateBps() const RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_);
tkchinf75d0082016-02-23 22:49:42 -080063 // Returns largest possible adjusted value.
danilchapa37de392017-09-09 04:17:22 -070064 uint32_t GetMaxAdjustedBitrateBps() const RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_);
tkchinf75d0082016-02-23 22:49:42 -080065
66 void Reset();
danilchapa37de392017-09-09 04:17:22 -070067 void UpdateBitrate(uint32_t current_time_ms)
68 RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_);
tkchinf75d0082016-02-23 22:49:42 -080069
70 rtc::CriticalSection crit_;
tkchinf75d0082016-02-23 22:49:42 -080071 const float min_adjusted_bitrate_pct_;
72 const float max_adjusted_bitrate_pct_;
73 // The bitrate we want.
danilchapa37de392017-09-09 04:17:22 -070074 volatile uint32_t target_bitrate_bps_ RTC_GUARDED_BY(crit_);
tkchinf75d0082016-02-23 22:49:42 -080075 // The bitrate we use to get what we want.
danilchapa37de392017-09-09 04:17:22 -070076 volatile uint32_t adjusted_bitrate_bps_ RTC_GUARDED_BY(crit_);
tkchinf75d0082016-02-23 22:49:42 -080077 // The target bitrate that the adjusted bitrate was computed from.
danilchapa37de392017-09-09 04:17:22 -070078 volatile uint32_t last_adjusted_target_bitrate_bps_ RTC_GUARDED_BY(crit_);
tkchinf75d0082016-02-23 22:49:42 -080079 // Used to estimate bitrate.
danilchapa37de392017-09-09 04:17:22 -070080 RateStatistics bitrate_tracker_ RTC_GUARDED_BY(crit_);
tkchinf75d0082016-02-23 22:49:42 -080081 // The last time we tried to adjust the bitrate.
danilchapa37de392017-09-09 04:17:22 -070082 uint32_t last_bitrate_update_time_ms_ RTC_GUARDED_BY(crit_);
tkchinf75d0082016-02-23 22:49:42 -080083 // The number of frames since the last time we tried to adjust the bitrate.
danilchapa37de392017-09-09 04:17:22 -070084 uint32_t frames_since_last_update_ RTC_GUARDED_BY(crit_);
tkchinf75d0082016-02-23 22:49:42 -080085};
86
87} // namespace webrtc
88
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020089#endif // COMMON_VIDEO_INCLUDE_BITRATE_ADJUSTER_H_