Searched refs:MV_MAX (Results 1 – 4 of 4) sorted by relevance
73 #define MV_MAX ((1 << MV_MAX_BITS) - 1) macro74 #define MV_VALS ((MV_MAX << 1) + 1)
301 const int minc = VPXMAX(x->mv_col_min * 8, ref_mv->col - MV_MAX); \302 const int maxc = VPXMIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); \303 const int minr = VPXMAX(x->mv_row_min * 8, ref_mv->row - MV_MAX); \304 const int maxr = VPXMIN(x->mv_row_max * 8, ref_mv->row + MV_MAX); \672 const int minc = VPXMAX(x->mv_col_min * 8, ref_mv->col - MV_MAX); in vp9_find_best_sub_pixel_tree()673 const int maxc = VPXMIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); in vp9_find_best_sub_pixel_tree()674 const int minr = VPXMAX(x->mv_row_min * 8, ref_mv->row - MV_MAX); in vp9_find_best_sub_pixel_tree()675 const int maxr = VPXMIN(x->mv_row_max * 8, ref_mv->row + MV_MAX); in vp9_find_best_sub_pixel_tree()
1589 } while (++i <= MV_MAX); in cal_nmvsadcosts()1604 } while (++i <= MV_MAX); in cal_nmvsadcosts_hp()1740 cpi->td.mb.nmvcost[0] = &cpi->nmvcosts[0][MV_MAX]; in vp9_create_compressor()1741 cpi->td.mb.nmvcost[1] = &cpi->nmvcosts[1][MV_MAX]; in vp9_create_compressor()1742 cpi->td.mb.nmvsadcost[0] = &cpi->nmvsadcosts[0][MV_MAX]; in vp9_create_compressor()1743 cpi->td.mb.nmvsadcost[1] = &cpi->nmvsadcosts[1][MV_MAX]; in vp9_create_compressor()1746 cpi->td.mb.nmvcost_hp[0] = &cpi->nmvcosts_hp[0][MV_MAX]; in vp9_create_compressor()1747 cpi->td.mb.nmvcost_hp[1] = &cpi->nmvcosts_hp[1][MV_MAX]; in vp9_create_compressor()1748 cpi->td.mb.nmvsadcost_hp[0] = &cpi->nmvsadcosts_hp[0][MV_MAX]; in vp9_create_compressor()1749 cpi->td.mb.nmvsadcost_hp[1] = &cpi->nmvsadcosts_hp[1][MV_MAX]; in vp9_create_compressor()
104 for (v = 1; v <= MV_MAX; ++v) { in build_nmv_component_cost_table()