Home
last modified time | relevance | path

Searched refs:bestmv (Results 1 – 5 of 5) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dmcomp.c204 int_mv *bestmv, int_mv *ref_mv, in vp8_find_best_sub_pixel_step_iteratively() argument
213 int br = bestmv->as_mv.row * 4, bc = bestmv->as_mv.col * 4; in vp8_find_best_sub_pixel_step_iteratively()
240 … unsigned char *y_0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; in vp8_find_best_sub_pixel_step_iteratively()
245 buf_r1 = ((bestmv->as_mv.row - 3) < x->mv_row_min)?(bestmv->as_mv.row - x->mv_row_min):3; in vp8_find_best_sub_pixel_step_iteratively()
246 buf_r2 = ((bestmv->as_mv.row + 3) > x->mv_row_max)?(x->mv_row_max - bestmv->as_mv.row):3; in vp8_find_best_sub_pixel_step_iteratively()
247 buf_c1 = ((bestmv->as_mv.col - 3) < x->mv_col_min)?(bestmv->as_mv.col - x->mv_col_min):3; in vp8_find_best_sub_pixel_step_iteratively()
254 unsigned char *y = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; in vp8_find_best_sub_pixel_step_iteratively()
258 offset = (bestmv->as_mv.row) * y_stride + bestmv->as_mv.col; in vp8_find_best_sub_pixel_step_iteratively()
261 bestmv->as_mv.row *= 8; in vp8_find_best_sub_pixel_step_iteratively()
262 bestmv->as_mv.col *= 8; in vp8_find_best_sub_pixel_step_iteratively()
[all …]
Dmcomp.h61 (MACROBLOCK *x, BLOCK *b, BLOCKD *d, int_mv *bestmv, int_mv *ref_mv,
Dpickinter.c44 int_mv *bestmv, int_mv *ref_mv, in vp8_skip_fractional_mv_step() argument
59 bestmv->as_mv.row <<= 3; in vp8_skip_fractional_mv_step()
60 bestmv->as_mv.col <<= 3; in vp8_skip_fractional_mv_step()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_mcomp.c264 MV *bestmv, const MV *ref_mv, in vp9_find_best_sub_pixel_tree() argument
285 const int offset = bestmv->row * y_stride + bestmv->col; in vp9_find_best_sub_pixel_tree()
290 int br = bestmv->row * 8; in vp9_find_best_sub_pixel_tree()
291 int bc = bestmv->col * 8; in vp9_find_best_sub_pixel_tree()
302 bestmv->row *= 8; in vp9_find_best_sub_pixel_tree()
303 bestmv->col *= 8; in vp9_find_best_sub_pixel_tree()
308 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in vp9_find_best_sub_pixel_tree()
343 bestmv->row = br; in vp9_find_best_sub_pixel_tree()
344 bestmv->col = bc; in vp9_find_best_sub_pixel_tree()
346 if ((abs(bestmv->col - ref_mv->col) > (MAX_FULL_PEL_VAL << 3)) || in vp9_find_best_sub_pixel_tree()
[all …]
Dvp9_mcomp.h81 MV *bestmv, const MV *ref_mv,
96 MV *bestmv, const MV *ref_mv,