Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Unified Diff: webrtc/modules/video_coding/utility/quality_scaler.cc

Issue 1672173002: Add initial bitrate and frame resolution parameters to quality scaler. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Address comments Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..f6da4a3a6d8104199b20a8c7ade81ee3a8ffb9b1 100644
--- a/webrtc/modules/video_coding/utility/quality_scaler.cc
+++ b/webrtc/modules/video_coding/utility/quality_scaler.cc
@@ -30,11 +30,22 @@ 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;
+ if (initial_bitrate_kbps > 0 && initial_bitrate_kbps < 500) {
pbos-webrtc 2016/02/10 13:43:21 Add a TODO here to investigate other thresholds.
AlexG 2016/02/10 19:07:17 Done.
+ // Start scaling to roughly VGA.
+ while (width * height > 700 * 500) {
+ ++downscale_shift_;
+ width /= 2;
+ height /= 2;
+ }
+ }
target_framerate_ = -1;
}

Powered by Google App Engine
This is Rietveld 408576698