Searched refs:hstep (Results 1 – 2 of 2) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 2183 const MV this_mv, MV *best_mv, int hstep, const SubpelMvLimits *mv_limits, in first_level_check_fast() argument 2188 const MV left_mv = { this_mv.row, this_mv.col - hstep }; in first_level_check_fast() 2194 const MV right_mv = { this_mv.row, this_mv.col + hstep }; in first_level_check_fast() 2199 const MV top_mv = { this_mv.row - hstep, this_mv.col }; in first_level_check_fast() 2204 const MV bottom_mv = { this_mv.row + hstep, this_mv.col }; in first_level_check_fast() 2209 const MV diag_step = get_best_diag_step(hstep, left, right, up, down); 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() 2247 const MV bottom_long_mv = { br + hstep, bc + diag_step.col }; in second_level_check_fast() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 216 CHECK_BETTER(left, tr, tc - hstep); \ 217 CHECK_BETTER(right, tr, tc + hstep); \ 218 CHECK_BETTER(up, tr - hstep, tc); \ 219 CHECK_BETTER(down, tr + hstep, tc); \ 222 case 0: CHECK_BETTER(diag, tr - hstep, tc - hstep); break; \ 223 case 1: CHECK_BETTER(diag, tr - hstep, tc + hstep); break; \ 224 case 2: CHECK_BETTER(diag, tr + hstep, tc - hstep); break; \ 225 case 3: CHECK_BETTER(diag, tr + hstep, tc + hstep); break; \ 240 CHECK_BETTER(second, tr + hstep, tc + 2 * kc); \ 241 CHECK_BETTER(second, tr - hstep, tc + 2 * kc); \ [all …]
|