shithub: libvpx

Download patch

ref: 768b018d18b72a9c3f604fbe5141fa40dc034636
parent: c9a459216dc3d33db60147d14caad58c586f354b
parent: e0b28ad696ec37e13eedc81257dba554d7bffd6e
author: Paul Wilkins <paulwilkins@google.com>
date: Thu Apr 12 06:42:50 EDT 2018

Merge "Add extra case to wq_err_divisor()"

--- a/vp9/encoder/vp9_firstpass.c
+++ b/vp9/encoder/vp9_firstpass.c
@@ -1588,7 +1588,9 @@
 
   // Use a different error per mb factor for calculating boost for
   //  different formats.
-  if (screen_area < 1280 * 720) {
+  if (screen_area <= 640 * 360) {
+    return 115.0;
+  } else if (screen_area < 1280 * 720) {
     return 125.0;
   } else if (screen_area <= 1920 * 1080) {
     return 130.0;