summaryrefslogtreecommitdiff
path: root/vp9/encoder
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2015-03-14 10:51:46 -0700
committerJingning Han <jingning@google.com>2015-03-14 10:52:11 -0700
commitb03cf9317a65b5e0fc60ecfe4ba1842bb3373ceb (patch)
treea0ae1f02a1b4bcdaa1dfbe10eb23a78207d051e9 /vp9/encoder
parent0e6459caface5793f47f05af93cf63174a07e58b (diff)
downloadlibvpx-b03cf9317a65b5e0fc60ecfe4ba1842bb3373ceb.tar
libvpx-b03cf9317a65b5e0fc60ecfe4ba1842bb3373ceb.tar.gz
libvpx-b03cf9317a65b5e0fc60ecfe4ba1842bb3373ceb.tar.bz2
libvpx-b03cf9317a65b5e0fc60ecfe4ba1842bb3373ceb.zip
Fix 1-step refinement search table
Change-Id: I32f0bcb40c6e7ba63bfae487739ededd0b6b2dde
Diffstat (limited to 'vp9/encoder')
-rw-r--r--vp9/encoder/vp9_mcomp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/encoder/vp9_mcomp.c b/vp9/encoder/vp9_mcomp.c
index 0d833ffc2..88c5ca0c3 100644
--- a/vp9/encoder/vp9_mcomp.c
+++ b/vp9/encoder/vp9_mcomp.c
@@ -1783,8 +1783,8 @@ static int vector_match(int16_t *ref, int16_t *src, int bwl) {
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,