From: James Zern Date: Sat, 13 Jun 2015 01:11:54 +0000 (-0700) Subject: vp9_mcomp: make search_step_table static X-Git-Tag: v1.5.0~547^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aaa49f04854737a5f7c18ea844da1ca89694e5de;p=platform%2Fupstream%2Flibvpx.git vp9_mcomp: make search_step_table static Change-Id: I2552d8101cf49ed951782ab69adce407579700fc --- diff --git a/vp9/encoder/vp9_mcomp.c b/vp9/encoder/vp9_mcomp.c index 5098374..081b99f 100644 --- a/vp9/encoder/vp9_mcomp.c +++ b/vp9/encoder/vp9_mcomp.c @@ -610,7 +610,7 @@ int vp9_find_best_sub_pixel_tree_pruned(const MACROBLOCK *x, return besterr; } -const MV search_step_table[12] = { +static const MV search_step_table[12] = { // left, right, up, down {0, -4}, {0, 4}, {-4, 0}, {4, 0}, {0, -2}, {0, 2}, {-2, 0}, {2, 0},