pbos@webrtc.org | a0d7827 | 2014-09-12 11:51:47 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2014 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 | |
| 11 | #ifndef WEBRTC_MODULES_VIDEO_CODING_UTILITY_QUALITY_SCALER_H_ |
| 12 | #define WEBRTC_MODULES_VIDEO_CODING_UTILITY_QUALITY_SCALER_H_ |
| 13 | |
pbos@webrtc.org | a0d7827 | 2014-09-12 11:51:47 +0000 | [diff] [blame] | 14 | #include "webrtc/common_video/libyuv/include/scaler.h" |
kjellander@webrtc.org | b7ce964 | 2015-11-18 23:04:10 +0100 | [diff] [blame^] | 15 | #include "webrtc/modules/video_coding/utility/moving_average.h" |
pbos@webrtc.org | a0d7827 | 2014-09-12 11:51:47 +0000 | [diff] [blame] | 16 | |
| 17 | namespace webrtc { |
| 18 | class QualityScaler { |
| 19 | public: |
Peter Boström | 6a688f5 | 2015-06-22 08:02:58 +0200 | [diff] [blame] | 20 | static const int kDefaultLowQpDenominator; |
| 21 | static const int kDefaultMinDownscaleDimension; |
pbos@webrtc.org | a0d7827 | 2014-09-12 11:51:47 +0000 | [diff] [blame] | 22 | struct Resolution { |
| 23 | int width; |
| 24 | int height; |
| 25 | }; |
| 26 | |
| 27 | QualityScaler(); |
Peter Boström | 1741770 | 2015-09-25 17:03:26 +0200 | [diff] [blame] | 28 | void Init(int low_qp_threshold, |
| 29 | int high_qp_threshold, |
| 30 | bool use_framerate_reduction); |
jackychen | 61b4d51 | 2015-04-21 15:30:11 -0700 | [diff] [blame] | 31 | void SetMinResolution(int min_width, int min_height); |
pbos@webrtc.org | a0d7827 | 2014-09-12 11:51:47 +0000 | [diff] [blame] | 32 | void ReportFramerate(int framerate); |
jackychen | 98d8cf5 | 2015-05-21 11:12:02 -0700 | [diff] [blame] | 33 | void ReportQP(int qp); |
jackychen | 61b4d51 | 2015-04-21 15:30:11 -0700 | [diff] [blame] | 34 | void ReportDroppedFrame(); |
| 35 | void Reset(int framerate, int bitrate, int width, int height); |
jackychen | 6e2ce6e | 2015-07-13 16:26:33 -0700 | [diff] [blame] | 36 | void OnEncodeFrame(const VideoFrame& frame); |
| 37 | Resolution GetScaledResolution() const; |
Miguel Casas-Sanchez | 4765070 | 2015-05-29 17:21:40 -0700 | [diff] [blame] | 38 | const VideoFrame& GetScaledFrame(const VideoFrame& frame); |
jackychen | 6e2ce6e | 2015-07-13 16:26:33 -0700 | [diff] [blame] | 39 | int GetTargetFramerate() const; |
asapersson | 4306fc7 | 2015-10-19 00:35:21 -0700 | [diff] [blame] | 40 | int downscale_shift() const { return downscale_shift_; } |
pbos@webrtc.org | a0d7827 | 2014-09-12 11:51:47 +0000 | [diff] [blame] | 41 | |
| 42 | private: |
pbos@webrtc.org | a0d7827 | 2014-09-12 11:51:47 +0000 | [diff] [blame] | 43 | void AdjustScale(bool up); |
| 44 | void ClearSamples(); |
| 45 | |
| 46 | Scaler scaler_; |
Miguel Casas-Sanchez | 4765070 | 2015-05-29 17:21:40 -0700 | [diff] [blame] | 47 | VideoFrame scaled_frame_; |
pbos@webrtc.org | a0d7827 | 2014-09-12 11:51:47 +0000 | [diff] [blame] | 48 | |
| 49 | size_t num_samples_; |
jackychen | 6e2ce6e | 2015-07-13 16:26:33 -0700 | [diff] [blame] | 50 | int framerate_; |
| 51 | int target_framerate_; |
pbos@webrtc.org | a0d7827 | 2014-09-12 11:51:47 +0000 | [diff] [blame] | 52 | int low_qp_threshold_; |
Peter Boström | 1741770 | 2015-09-25 17:03:26 +0200 | [diff] [blame] | 53 | int high_qp_threshold_; |
jackychen | 61b4d51 | 2015-04-21 15:30:11 -0700 | [diff] [blame] | 54 | MovingAverage<int> framedrop_percent_; |
jackychen | 98d8cf5 | 2015-05-21 11:12:02 -0700 | [diff] [blame] | 55 | MovingAverage<int> average_qp_; |
jackychen | 6e2ce6e | 2015-07-13 16:26:33 -0700 | [diff] [blame] | 56 | Resolution res_; |
pbos@webrtc.org | a0d7827 | 2014-09-12 11:51:47 +0000 | [diff] [blame] | 57 | |
| 58 | int downscale_shift_; |
jackychen | 6e2ce6e | 2015-07-13 16:26:33 -0700 | [diff] [blame] | 59 | int framerate_down_; |
| 60 | bool use_framerate_reduction_; |
jackychen | 61b4d51 | 2015-04-21 15:30:11 -0700 | [diff] [blame] | 61 | int min_width_; |
| 62 | int min_height_; |
pbos@webrtc.org | a0d7827 | 2014-09-12 11:51:47 +0000 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | } // namespace webrtc |
| 66 | |
| 67 | #endif // WEBRTC_MODULES_VIDEO_CODING_UTILITY_QUALITY_SCALER_H_ |