Index: webrtc/modules/video_coding/utility/quality_scaler.cc |
diff --git a/webrtc/modules/video_coding/utility/quality_scaler.cc b/webrtc/modules/video_coding/utility/quality_scaler.cc |
index 76bf9f5b0399ed0d7558eed398f6894797490672..5ebea36eeda90a6c27ff13cba1198af35990672b 100644 |
--- a/webrtc/modules/video_coding/utility/quality_scaler.cc |
+++ b/webrtc/modules/video_coding/utility/quality_scaler.cc |
@@ -30,11 +30,24 @@ QualityScaler::QualityScaler() |
void QualityScaler::Init(int low_qp_threshold, |
int high_qp_threshold, |
- bool use_framerate_reduction) { |
+ bool use_framerate_reduction, |
+ int initial_bitrate_kbps, |
+ int width, |
+ int height) { |
ClearSamples(); |
low_qp_threshold_ = low_qp_threshold; |
high_qp_threshold_ = high_qp_threshold; |
use_framerate_reduction_ = use_framerate_reduction; |
+ // TODO(glaznev): investigate using thresholds for other resolutions |
+ // ot threshold tables. |
sprang
2016/02/15 13:20:21
s/investigate/Investigare s/ot/or
Could we name th
AlexG
2016/02/16 22:26:34
Done.
|
+ if (initial_bitrate_kbps > 0 && initial_bitrate_kbps < 500) { |
+ // Start scaling to roughly VGA. |
+ while (width * height > 700 * 500) { |
+ ++downscale_shift_; |
+ width /= 2; |
+ height /= 2; |
+ } |
+ } |
target_framerate_ = -1; |
} |