ref: 498fd551fde9316c5a95ebaaa5e729d4596d2b0a
parent: d1a7c103258f3afd438f584c3aee3663eada422f
parent: 718654848aa0fee41c37b50e4ff611302a7e4e06
author: Marco Paniconi <[email protected]>
date: Mon Nov 9 14:29:35 EST 2015
Merge "Use same bias (against non-zero mv for big blocks) for speed 5."
--- a/vp9/encoder/vp9_pickmode.c
+++ b/vp9/encoder/vp9_pickmode.c
@@ -1485,7 +1485,7 @@
// Bias against non-zero (above some threshold) motion for large blocks.
// This is temporary fix to avoid selection of large mv for big blocks.
- if (cpi->oxcf.speed > 5 &&
+ if (cpi->oxcf.speed >= 5 &&
cpi->oxcf.content != VP9E_CONTENT_SCREEN &&
(frame_mv[this_mode][ref_frame].as_mv.row > 64 ||
frame_mv[this_mode][ref_frame].as_mv.row < -64 ||