Home
last modified time | relevance | path

Searched refs:MV_MAX (Results 1 – 4 of 4) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_entropymv.h70 #define MV_MAX ((1 << MV_MAX_BITS) - 1) macro
71 #define MV_VALS ((MV_MAX << 1) + 1)
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_mcomp.c293 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()
Dvp9_onyx_if.c1020 } 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()
Dvp9_encodemv.c103 for (v = 1; v <= MV_MAX; ++v) { in build_nmv_component_cost_table()