/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mbgraph.c | 92 MV tmp_mv; in do_16x16_motion_search() local 102 tmp_err = do_16x16_motion_iteration(cpi, ref_mv, &tmp_mv, mb_row, mb_col); in do_16x16_motion_search() 105 dst_mv->as_mv = tmp_mv; in do_16x16_motion_search() 112 MV zero_ref_mv = {0, 0}, tmp_mv; in do_16x16_motion_search() local 114 tmp_err = do_16x16_motion_iteration(cpi, &zero_ref_mv, &tmp_mv, in do_16x16_motion_search() 117 dst_mv->as_mv = tmp_mv; in do_16x16_motion_search()
|
D | vp9_mcomp.c | 1832 MV *tmp_mv = &xd->mi[0]->mbmi.mv[0].as_mv; in vp9_int_pro_motion_estimation() local 1852 tmp_mv->row = 0; in vp9_int_pro_motion_estimation() 1853 tmp_mv->col = 0; in vp9_int_pro_motion_estimation() 1892 tmp_mv->col = vector_match(hbuf, src_hbuf, b_width_log2_lookup[bsize]); in vp9_int_pro_motion_estimation() 1893 tmp_mv->row = vector_match(vbuf, src_vbuf, b_height_log2_lookup[bsize]); in vp9_int_pro_motion_estimation() 1895 this_mv = *tmp_mv; in vp9_int_pro_motion_estimation() 1914 tmp_mv->row = search_pos[idx].row + this_mv.row; in vp9_int_pro_motion_estimation() 1915 tmp_mv->col = search_pos[idx].col + this_mv.col; in vp9_int_pro_motion_estimation() 1934 *tmp_mv = this_mv; in vp9_int_pro_motion_estimation() 1938 tmp_mv->row *= 8; in vp9_int_pro_motion_estimation() [all …]
|
D | vp9_pickmode.c | 127 int_mv *tmp_mv, int *rate_mv, in combined_motion_search() argument 169 &ref_mv, &tmp_mv->as_mv, INT_MAX, 0); in combined_motion_search() 177 mvp_full.row = tmp_mv->as_mv.row * 8; in combined_motion_search() 178 mvp_full.col = tmp_mv->as_mv.col * 8; in combined_motion_search() 189 cpi->find_fractional_mv_step(x, &tmp_mv->as_mv, &ref_mv, in combined_motion_search() 198 *rate_mv = vp9_mv_bit_cost(&tmp_mv->as_mv, &ref_mv, in combined_motion_search() 1796 MV tmp_mv; in vp9_pick_inter_mode_sub8x8() local 1817 &mbmi_ext->ref_mvs[ref_frame][0].as_mv, &tmp_mv, in vp9_pick_inter_mode_sub8x8() 1826 mvp_full.row = tmp_mv.row * 8; in vp9_pick_inter_mode_sub8x8() 1827 mvp_full.col = tmp_mv.col * 8; in vp9_pick_inter_mode_sub8x8() [all …]
|
D | vp9_mcomp.h | 132 const MV *ref_mv, MV *tmp_mv,
|
D | vp9_firstpass.c | 396 MV tmp_mv = {0, 0}; in first_pass_motion_search() local 418 tmp_err = cpi->diamond_search_sad(x, &cpi->ss_cfg, &ref_mv_full, &tmp_mv, in first_pass_motion_search() 422 tmp_err = vp9_get_mvpred_var(x, &tmp_mv, ref_mv, &v_fn_ptr, 1); in first_pass_motion_search() 428 *best_mv = tmp_mv; in first_pass_motion_search() 441 tmp_err = cpi->diamond_search_sad(x, &cpi->ss_cfg, &ref_mv_full, &tmp_mv, in first_pass_motion_search() 445 tmp_err = vp9_get_mvpred_var(x, &tmp_mv, ref_mv, &v_fn_ptr, 1); in first_pass_motion_search() 451 *best_mv = tmp_mv; in first_pass_motion_search() 760 MV mv = {0, 0} , tmp_mv = {0, 0}; in vp9_first_pass() local 807 first_pass_motion_search(cpi, x, &zero_mv, &tmp_mv, &tmp_err); in vp9_first_pass() 811 mv = tmp_mv; in vp9_first_pass() [all …]
|
D | vp9_rdopt.c | 1602 MV tmp_mv; in joint_motion_search() local 1655 tmp_mv = frame_mv[refs[id]].as_mv; in joint_motion_search() 1657 tmp_mv.col >>= 3; in joint_motion_search() 1658 tmp_mv.row >>= 3; in joint_motion_search() 1661 bestsme = vp9_refining_search_8p_c(x, &tmp_mv, sadpb, in joint_motion_search() 1666 bestsme = vp9_get_mvpred_av_var(x, &tmp_mv, &ref_mv[id].as_mv, in joint_motion_search() 1678 x, &tmp_mv, in joint_motion_search() 1695 frame_mv[refs[id]].as_mv = tmp_mv; in joint_motion_search() 2226 int_mv *tmp_mv, int *rate_mv) { in single_motion_search() argument 2299 tmp_mv->as_int = INVALID_MV; in single_motion_search() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | firstpass.c | 446 int_mv tmp_mv; in first_pass_motion_search() local 463 tmp_mv.as_int = 0; in first_pass_motion_search() 466 tmp_err = cpi->diamond_search_sad(x, b, d, &ref_mv_full, &tmp_mv, step_param, in first_pass_motion_search() 475 best_mv->row = tmp_mv.as_mv.row; in first_pass_motion_search() 476 best_mv->col = tmp_mv.as_mv.col; in first_pass_motion_search() 491 tmp_err = cpi->diamond_search_sad(x, b, d, &ref_mv_full, &tmp_mv, in first_pass_motion_search() 501 best_mv->row = tmp_mv.as_mv.row; in first_pass_motion_search() 502 best_mv->col = tmp_mv.as_mv.col; in first_pass_motion_search() 640 MV tmp_mv = {0, 0}; in vp8_first_pass() local 668 first_pass_motion_search(cpi, x, &zero_ref_mv, &tmp_mv, in vp8_first_pass() [all …]
|