shithub: libvpx

Download patch

ref: e4e85ad4a8b3d870e0e2a919346917a4c83029a2
parent: 35de9db3120776ebc63d413dc4ed2f2ecf37898c
parent: 9f79259e545eb3b9ddabbbc6bd9eab842e5f629d
author: Yaowu Xu <yaowu@google.com>
date: Thu Nov 13 10:50:30 EST 2014

Merge "adapt the adjustment limit for rate correction factor in RTC mode"

--- a/vp9/encoder/vp9_ratectrl.c
+++ b/vp9/encoder/vp9_ratectrl.c
@@ -430,7 +430,7 @@
       adjustment_limit = 0.75;
       break;
     case 1:
-      adjustment_limit = 0.375;
+      adjustment_limit = 0.125 + 0.5 * MIN(1, fabs(log10(0.01 * correction_factor)));
       break;
     case 2:
     default: