intrabc: Fix mismatch introduced by 85a7485.

Change-Id: I1ea51ebbd1e3cb60a13a30e3252253493c28baec
This commit is contained in:
Alex Converse 2015-06-03 13:07:49 -07:00
parent 783d18d22a
commit f35fb46c48

View File

@ -1537,10 +1537,9 @@ static void intrabc_search(VP9_COMP *cpi, MACROBLOCK *x,
tmp_mv->as_mv.row = tmp_mv->as_mv.row / 2 * 2;
tmp_mv->as_mv.col = tmp_mv->as_mv.col / 2 * 2;
#endif // ODD_PEL_DV
} else {
tmp_mv->as_mv.row *= 8;
tmp_mv->as_mv.col *= 8;
}
tmp_mv->as_mv.row *= 8;
tmp_mv->as_mv.col *= 8;
}
*rate_mv = vp9_mv_bit_cost(&tmp_mv->as_mv, &ref_mv,
x->nmvjointcost, x->ndvcost, MV_COST_WEIGHT);