summaryrefslogtreecommitdiff
path: root/vp9/encoder
diff options
context:
space:
mode:
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,