Searched refs:subpel_mv_limits (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 56 void vp9_set_subpel_mv_search_range(MvLimits *subpel_mv_limits, in vp9_set_subpel_mv_search_range() argument 59 subpel_mv_limits->col_min = VPXMAX(umv_window_limits->col_min * 8, in vp9_set_subpel_mv_search_range() 61 subpel_mv_limits->col_max = VPXMIN(umv_window_limits->col_max * 8, in vp9_set_subpel_mv_search_range() 63 subpel_mv_limits->row_min = VPXMAX(umv_window_limits->row_min * 8, in vp9_set_subpel_mv_search_range() 65 subpel_mv_limits->row_max = VPXMIN(umv_window_limits->row_max * 8, in vp9_set_subpel_mv_search_range() 68 subpel_mv_limits->col_min = VPXMAX(MV_LOW + 1, subpel_mv_limits->col_min); in vp9_set_subpel_mv_search_range() 69 subpel_mv_limits->col_max = VPXMIN(MV_UPP - 1, subpel_mv_limits->col_max); in vp9_set_subpel_mv_search_range() 70 subpel_mv_limits->row_min = VPXMAX(MV_LOW + 1, subpel_mv_limits->row_min); in vp9_set_subpel_mv_search_range() 71 subpel_mv_limits->row_max = VPXMIN(MV_UPP - 1, subpel_mv_limits->row_max); in vp9_set_subpel_mv_search_range() 289 MvLimits subpel_mv_limits; \ [all …]
|
D | vp9_mcomp.h | 118 void vp9_set_subpel_mv_search_range(MvLimits *subpel_mv_limits,
|
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 2196 MvLimits subpel_mv_limits; in av1_int_pro_motion_estimation() local 2297 &x->mv_limits, &subpel_mv_limits.col_min, &subpel_mv_limits.col_max, in av1_int_pro_motion_estimation() 2298 &subpel_mv_limits.row_min, &subpel_mv_limits.row_max, ref_mv); in av1_int_pro_motion_estimation() 2299 clamp_mv(tmp_mv, subpel_mv_limits.col_min, subpel_mv_limits.col_max, in av1_int_pro_motion_estimation() 2300 subpel_mv_limits.row_min, subpel_mv_limits.row_max); in av1_int_pro_motion_estimation()
|