Skip to content
Snippets Groups Projects
Commit f5617fd0 authored by Jacky Chen's avatar Jacky Chen
Browse files

Change the qp threshold of VP9 dynamic resizing.

Change-Id: I1efe086191665ff8fa063f03d8e2032024dc090f
parent 64677c7e
No related branches found
No related tags found
No related merge requests found
......@@ -1850,7 +1850,7 @@ int vp9_resize_one_pass_cbr(VP9_COMP *cpi) {
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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment