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

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

Issue 2272893002: Increase QP threshold for H.264 encoder QP based scaling. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8190ef421fe7c5e17e4e5f22b779c263a9a9c335..c509e843642f2237e94fe1727749479a9523faa7 100644
--- a/webrtc/modules/video_coding/utility/quality_scaler.cc
+++ b/webrtc/modules/video_coding/utility/quality_scaler.cc
@@ -42,8 +42,8 @@ const int QualityScaler::kBadVp8QpThreshold = 95;
const int QualityScaler::kLowH264QpThreshold = 32;
const int QualityScaler::kBadH264QpThreshold = 42;
#else
-const int QualityScaler::kLowH264QpThreshold = 22;
-const int QualityScaler::kBadH264QpThreshold = 35;
+const int QualityScaler::kLowH264QpThreshold = 24;
+const int QualityScaler::kBadH264QpThreshold = 37;
#endif
QualityScaler::QualityScaler() : low_qp_threshold_(-1) {}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698