ref: f5617fd0834f0ca2a8e27428f1a3543fc09029c5
parent: 64677c7e996684b7230afe90d598ec14221db2cd
author: jackychen <jackychen@google.com>
date: Wed Sep 9 11:30:01 EDT 2015
Change the qp threshold of VP9 dynamic resizing. Change-Id: I1efe086191665ff8fa063f03d8e2032024dc090f
--- a/vp9/encoder/vp9_ratectrl.c
+++ b/vp9/encoder/vp9_ratectrl.c
@@ -1850,7 +1850,7 @@
resize_now = 1;
cpi->resize_state = 1;
} else if (cpi->resize_state == 1 &&
- avg_qp < 40 * cpi->rc.worst_quality / 100) {
+ avg_qp < 50 * cpi->rc.worst_quality / 100) {
resize_now = -1;
cpi->resize_state = 0;
}