Increase QP threshold for H.264 encoder QP based scaling.

BUG=b/30743634

Review-Url: https://codereview.webrtc.org/2272893002
Cr-Commit-Position: refs/heads/master@{#13904}
This commit is contained in:
glaznev
2016-08-24 12:09:16 -07:00
committed by Commit bot
parent 118402520f
commit 36a06a94fb

View File

@ -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) {}