Searched refs:MV_MAX (Results 1 – 4 of 4) sorted by relevance
70 #define MV_MAX ((1 << MV_MAX_BITS) - 1) macro71 #define MV_VALS ((MV_MAX << 1) + 1)
293 const int minc = MAX(x->mv_col_min * 8, ref_mv->col - MV_MAX); in vp9_find_best_sub_pixel_tree()294 const int maxc = MIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); in vp9_find_best_sub_pixel_tree()295 const int minr = MAX(x->mv_row_min * 8, ref_mv->row - MV_MAX); in vp9_find_best_sub_pixel_tree()296 const int maxr = MIN(x->mv_row_max * 8, ref_mv->row + MV_MAX); in vp9_find_best_sub_pixel_tree()392 const int minc = MAX(x->mv_col_min * 8, ref_mv->col - MV_MAX); in vp9_find_best_sub_pixel_comp_tree()393 const int maxc = MIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); in vp9_find_best_sub_pixel_comp_tree()394 const int minr = MAX(x->mv_row_min * 8, ref_mv->row - MV_MAX); in vp9_find_best_sub_pixel_comp_tree()395 const int maxr = MIN(x->mv_row_max * 8, ref_mv->row + MV_MAX); in vp9_find_best_sub_pixel_comp_tree()
1020 } while (++i <= MV_MAX); in cal_nmvsadcosts()1035 } while (++i <= MV_MAX); in cal_nmvsadcosts_hp()1304 cpi->mb.nmvcost[0] = &cpi->mb.nmvcosts[0][MV_MAX]; in vp9_create_compressor()1305 cpi->mb.nmvcost[1] = &cpi->mb.nmvcosts[1][MV_MAX]; in vp9_create_compressor()1306 cpi->mb.nmvsadcost[0] = &cpi->mb.nmvsadcosts[0][MV_MAX]; in vp9_create_compressor()1307 cpi->mb.nmvsadcost[1] = &cpi->mb.nmvsadcosts[1][MV_MAX]; in vp9_create_compressor()1310 cpi->mb.nmvcost_hp[0] = &cpi->mb.nmvcosts_hp[0][MV_MAX]; in vp9_create_compressor()1311 cpi->mb.nmvcost_hp[1] = &cpi->mb.nmvcosts_hp[1][MV_MAX]; in vp9_create_compressor()1312 cpi->mb.nmvsadcost_hp[0] = &cpi->mb.nmvsadcosts_hp[0][MV_MAX]; in vp9_create_compressor()1313 cpi->mb.nmvsadcost_hp[1] = &cpi->mb.nmvsadcosts_hp[1][MV_MAX]; in vp9_create_compressor()
103 for (v = 1; v <= MV_MAX; ++v) { in build_nmv_component_cost_table()