shithub: libvpx

Download patch

ref: 782aacc3d3b257915446c1babef16d0728abd93d
parent: ed56ddfef8b854bb4a244c3f1240a11c3cbeb5b8
parent: ff7fb4b28046094be7c467dc9d8246ad715cd30f
author: Marco Paniconi <[email protected]>
date: Mon Jun 19 19:45:34 EDT 2017

Merge "vp9: Speed >= 8: Adjust resolution threshold for subpel."

--- a/vp9/encoder/vp9_speed_features.c
+++ b/vp9/encoder/vp9_speed_features.c
@@ -589,7 +589,7 @@
 
     if (content == VP9E_CONTENT_SCREEN)
       sf->mv.subpel_force_stop = 3;
-    else if (cm->width * cm->height > 352 * 288) {
+    else if (cm->width * cm->height > 1280 * 720) {
       sf->mv.subpel_force_stop = 2;
       if (cpi->rc.avg_frame_low_motion > 87 && cm->current_video_frame > 30)
         sf->mv.subpel_search_method = SUBPEL_TREE_PRUNED_EVENMORE;