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

Unified Diff: webrtc/modules/video_coding/codecs/vp8/vp8_impl.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/codecs/vp8/vp8_impl.cc
diff --git a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc
index 5d22d72144413f0cb6477cdc38db082b1c272b5c..d0df19876ed182bd2927f6b6c7d02e47ae58f4da 100644
--- a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc
+++ b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc
@@ -601,7 +601,7 @@ int VP8EncoderImpl::InitEncode(const VideoCodec* inst,
// internally.
const int kDisabledBadQpThreshold = 64;
quality_scaler_.Init(codec_.qpMax / QualityScaler::kDefaultLowQpDenominator,
- kDisabledBadQpThreshold, false);
+ kDisabledBadQpThreshold, false, 0, 0, 0);
pbos-webrtc 2016/02/10 13:43:21 I'd like to have this here as well, as I think the
AlexG 2016/02/10 19:07:16 I think it is too early to enable this on all plat
pbos-webrtc 2016/02/10 19:12:27 Initial bitrates, including keyframes, look bad at
quality_scaler_.ReportFramerate(codec_.maxFramerate);
// Only apply scaling to improve for single-layer streams. The scaling metrics

Powered by Google App Engine
This is Rietveld 408576698