shithub: libvpx

Download patch

ref: 259e835b1bb365a0fe179f9f394192261069ec88
parent: 66695533a8ec6530f557f9b00875473298e08b7a
parent: 3c2f076ad090ec6f44fbec9b051155e1bb4de33b
author: Marco Paniconi <marpan@google.com>
date: Tue Feb 7 14:25:47 EST 2017

Merge "vp9: Adjust rate_err threshold for setting active_worst factor."

--- a/vp9/encoder/vp9_ratectrl.c
+++ b/vp9/encoder/vp9_ratectrl.c
@@ -2138,7 +2138,7 @@
     // Adjust factors for active_worst setting & af_ratio for next gf interval.
     rc->fac_active_worst_inter = 150;  // corresponds to 3/2 (= 150 /100).
     rc->fac_active_worst_gf = 100;
-    if (rate_err < 1.5 && !high_content) {
+    if (rate_err < 2.0 && !high_content) {
       rc->fac_active_worst_inter = 120;
       rc->fac_active_worst_gf = 90;
     }