Searched refs:diag_step (Results 1 – 1 of 1) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 2173 const MV diag_step = { up_cost <= down_cost ? -step_size : step_size, in get_best_diag_step() local 2176 return diag_step; in get_best_diag_step() 2209 const MV diag_step = get_best_diag_step(hstep, left, right, up, down); in first_level_check_fast() local 2210 const MV diag_mv = { this_mv.row + diag_step.row, in first_level_check_fast() 2211 this_mv.col + diag_step.col }; in first_level_check_fast() 2217 return diag_step; in first_level_check_fast() 2223 const MV this_mv, const MV diag_step, MV *best_mv, int hstep, in second_level_check_fast() argument 2227 assert(diag_step.row == hstep || diag_step.row == -hstep); in second_level_check_fast() 2228 assert(diag_step.col == hstep || diag_step.col == -hstep); in second_level_check_fast() 2235 assert(diag_step.col == bc - tc); in second_level_check_fast() [all …]
|