tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 1 | /* |
| 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 Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef COMMON_VIDEO_INCLUDE_BITRATE_ADJUSTER_H_ |
| 12 | #define COMMON_VIDEO_INCLUDE_BITRATE_ADJUSTER_H_ |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 13 | |
| 14 | #include <functional> |
| 15 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 16 | #include "rtc_base/criticalsection.h" |
| 17 | #include "rtc_base/rate_statistics.h" |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 18 | |
| 19 | namespace webrtc { |
| 20 | |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 21 | // Certain hardware encoders tend to consistently overshoot the bitrate that |
| 22 | // they are configured to encode at. This class estimates an adjusted bitrate |
| 23 | // that when set on the encoder will produce the desired bitrate. |
| 24 | class BitrateAdjuster { |
| 25 | public: |
| 26 | // min_adjusted_bitrate_pct and max_adjusted_bitrate_pct are the lower and |
| 27 | // upper bound outputted adjusted bitrates as a percentage of the target |
| 28 | // bitrate. |
Niels Möller | 2cb7b5e | 2018-04-19 10:02:26 +0200 | [diff] [blame] | 29 | BitrateAdjuster(float min_adjusted_bitrate_pct, |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 30 | float max_adjusted_bitrate_pct); |
| 31 | virtual ~BitrateAdjuster() {} |
| 32 | |
| 33 | static const uint32_t kBitrateUpdateIntervalMs; |
| 34 | static const uint32_t kBitrateUpdateFrameInterval; |
| 35 | static const float kBitrateTolerancePct; |
| 36 | static const float kBytesPerMsToBitsPerSecond; |
| 37 | |
| 38 | // Sets the desired bitrate in bps (bits per second). |
| 39 | // Should be called at least once before Update. |
| 40 | void SetTargetBitrateBps(uint32_t bitrate_bps); |
| 41 | uint32_t GetTargetBitrateBps() const; |
| 42 | |
| 43 | // Returns the adjusted bitrate in bps. |
| 44 | uint32_t GetAdjustedBitrateBps() const; |
| 45 | |
| 46 | // Returns what we think the current bitrate is. |
Erik Språng | 51e6030 | 2016-06-10 22:13:21 +0200 | [diff] [blame] | 47 | rtc::Optional<uint32_t> GetEstimatedBitrateBps(); |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 48 | |
| 49 | // This should be called after each frame is encoded. The timestamp at which |
| 50 | // it is called is used to estimate the output bitrate of the encoder. |
| 51 | // Should be called from only one thread. |
| 52 | void Update(size_t frame_size); |
| 53 | |
| 54 | private: |
| 55 | // Returns true if the bitrate is within kBitrateTolerancePct of bitrate_bps. |
| 56 | bool IsWithinTolerance(uint32_t bitrate_bps, uint32_t target_bitrate_bps); |
| 57 | |
| 58 | // Returns smallest possible adjusted value. |
danilchap | a37de39 | 2017-09-09 04:17:22 -0700 | [diff] [blame] | 59 | uint32_t GetMinAdjustedBitrateBps() const RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 60 | // Returns largest possible adjusted value. |
danilchap | a37de39 | 2017-09-09 04:17:22 -0700 | [diff] [blame] | 61 | uint32_t GetMaxAdjustedBitrateBps() const RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 62 | |
| 63 | void Reset(); |
danilchap | a37de39 | 2017-09-09 04:17:22 -0700 | [diff] [blame] | 64 | void UpdateBitrate(uint32_t current_time_ms) |
| 65 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 66 | |
| 67 | rtc::CriticalSection crit_; |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 68 | const float min_adjusted_bitrate_pct_; |
| 69 | const float max_adjusted_bitrate_pct_; |
| 70 | // The bitrate we want. |
danilchap | a37de39 | 2017-09-09 04:17:22 -0700 | [diff] [blame] | 71 | volatile uint32_t target_bitrate_bps_ RTC_GUARDED_BY(crit_); |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 72 | // The bitrate we use to get what we want. |
danilchap | a37de39 | 2017-09-09 04:17:22 -0700 | [diff] [blame] | 73 | volatile uint32_t adjusted_bitrate_bps_ RTC_GUARDED_BY(crit_); |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 74 | // The target bitrate that the adjusted bitrate was computed from. |
danilchap | a37de39 | 2017-09-09 04:17:22 -0700 | [diff] [blame] | 75 | volatile uint32_t last_adjusted_target_bitrate_bps_ RTC_GUARDED_BY(crit_); |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 76 | // Used to estimate bitrate. |
danilchap | a37de39 | 2017-09-09 04:17:22 -0700 | [diff] [blame] | 77 | RateStatistics bitrate_tracker_ RTC_GUARDED_BY(crit_); |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 78 | // The last time we tried to adjust the bitrate. |
danilchap | a37de39 | 2017-09-09 04:17:22 -0700 | [diff] [blame] | 79 | uint32_t last_bitrate_update_time_ms_ RTC_GUARDED_BY(crit_); |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 80 | // The number of frames since the last time we tried to adjust the bitrate. |
danilchap | a37de39 | 2017-09-09 04:17:22 -0700 | [diff] [blame] | 81 | uint32_t frames_since_last_update_ RTC_GUARDED_BY(crit_); |
tkchin | f75d008 | 2016-02-23 22:49:42 -0800 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | } // namespace webrtc |
| 85 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 86 | #endif // COMMON_VIDEO_INCLUDE_BITRATE_ADJUSTER_H_ |