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

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

Issue 2228683002: Adjust H264 QP thresholds. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@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 541d0d431fb413944ca42ffdc03f3a2b2b7f4766..697eae09b643f16ed315aa8a724baca9069c0868 100644
--- a/webrtc/modules/video_coding/utility/quality_scaler.cc
+++ b/webrtc/modules/video_coding/utility/quality_scaler.cc
@@ -38,8 +38,8 @@ static const int kQvgaNumPixels = 400 * 300; // 320x240
const int QualityScaler::kLowVp8QpThreshold = 29;
const int QualityScaler::kBadVp8QpThreshold = 95;
-const int QualityScaler::kLowH264QpThreshold = 22;
-const int QualityScaler::kBadH264QpThreshold = 35;
+const int QualityScaler::kLowH264QpThreshold = 32;
+const int QualityScaler::kBadH264QpThreshold = 42;
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