summaryrefslogtreecommitdiff
path: root/vp8/encoder/mbgraph.c
diff options
context:
space:
mode:
authorDeb Mukherjee <debargha@google.com>2012-03-01 03:10:21 -0800
committerDeb Mukherjee <debargha@google.com>2012-03-01 03:10:21 -0800
commite41e5ce5adc58daf11ca2d52da880446cbfbff39 (patch)
treefe77182af13871fe9c318dd10bfc0b453e823ba3 /vp8/encoder/mbgraph.c
parent2ad7a4a2711aa0ffe87add551e0368b5d2a2e025 (diff)
downloadlibvpx-e41e5ce5adc58daf11ca2d52da880446cbfbff39.tar
libvpx-e41e5ce5adc58daf11ca2d52da880446cbfbff39.tar.gz
libvpx-e41e5ce5adc58daf11ca2d52da880446cbfbff39.tar.bz2
libvpx-e41e5ce5adc58daf11ca2d52da880446cbfbff39.zip
Various bug fixes related to high precision mv
Change-Id: Ie5a7c87d71bd4a541463b68704620d89cec142cf
Diffstat (limited to 'vp8/encoder/mbgraph.c')
-rw-r--r--vp8/encoder/mbgraph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp8/encoder/mbgraph.c b/vp8/encoder/mbgraph.c
index 3779f0622..869562662 100644
--- a/vp8/encoder/mbgraph.c
+++ b/vp8/encoder/mbgraph.c
@@ -37,8 +37,8 @@ static unsigned int do_16x16_motion_iteration
int *mvsadcost[2] = { &dummy_cost[mv_max+1], &dummy_cost[mv_max+1] };
#if CONFIG_HIGH_PRECISION_MV
static int dummy_cost_hp[2*mv_max_hp+1];
- int *mvcost_hp[2] = { &dummy_cost_hp[mv_max_hp+1], &dummy_cost[mv_max_hp+1] };
- int *mvsadcost_hp[2] = { &dummy_cost_hp[mv_max_hp+1], &dummy_cost[mv_max_hp+1] };
+ int *mvcost_hp[2] = { &dummy_cost_hp[mv_max_hp+1], &dummy_cost_hp[mv_max_hp+1] };
+ int *mvsadcost_hp[2] = { &dummy_cost_hp[mv_max_hp+1], &dummy_cost_hp[mv_max_hp+1] };
#endif
int col_min = (ref_mv->as_mv.col>>3) - MAX_FULL_PEL_VAL + ((ref_mv->as_mv.col & 7)?1:0);
int row_min = (ref_mv->as_mv.row>>3) - MAX_FULL_PEL_VAL + ((ref_mv->as_mv.row & 7)?1:0);