Lines Matching full:mvcost
140 void vp8_build_component_cost_table(int *mvcost[2], int *mvsadcost[2], const MV_CONTEXT *mvc, int mvc_flag[2])
167 mvcost [0] [0] = cost_mvcomponent(0, &mvc[0]);
171 //mvcost [0] [i] = cost_mvcomponent( i, &mvc[0]);
174 mvcost [0] [i] = cost0 + vp8_cost_zero(mvc[0].prob[MVPsign]);
175 mvcost [0] [-i] = cost0 + vp8_cost_one(mvc[0].prob[MVPsign]);
184 mvcost [1] [0] = cost_mvcomponent(0, &mvc[1]);
188 //mvcost [1] [i] = cost_mvcomponent( i, mvc[1]);
191 mvcost [1] [i] = cost1 + vp8_cost_zero(mvc[1].prob[MVPsign]);
192 mvcost [1] [-i] = cost1 + vp8_cost_one(mvc[1].prob[MVPsign]);
201 mvcost [0] [i] = cost_mvcomponent( i, mvc[0]);
202 mvcost [1] [i] = cost_mvcomponent( i, mvc[1]);
439 vp8_build_component_cost_table(cpi->mb.mvcost, cpi->mb.mvsadcost, (const MV_CONTEXT *) cpi->common.fc.mvc, flags);