shithub: libvpx

Download patch

ref: b03cf9317a65b5e0fc60ecfe4ba1842bb3373ceb
parent: 0e6459caface5793f47f05af93cf63174a07e58b
author: Jingning Han <jingning@google.com>
date: Sat Mar 14 06:51:46 EDT 2015

Fix 1-step refinement search table

Change-Id: I32f0bcb40c6e7ba63bfae487739ededd0b6b2dde

--- a/vp9/encoder/vp9_mcomp.c
+++ b/vp9/encoder/vp9_mcomp.c
@@ -1783,8 +1783,8 @@
   return (center - (bw >> 1));
 }
 
-static const MV search_pos[5] = {
-    {-1, 0}, {0, -1}, {0, 0}, {0, 1}, {1, 0},
+static const MV search_pos[4] = {
+    {-1, 0}, {0, -1}, {0, 1}, {1, 0},
 };
 
 unsigned int vp9_int_pro_motion_estimation(const VP9_COMP *cpi, MACROBLOCK *x,