Searched refs:mvsadcost (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 54 static int mvsad_err_cost(int_mv *mv, int_mv *ref, int *mvsadcost[2], in mvsad_err_cost() 58 if (mvsadcost) { in mvsad_err_cost() 59 return ((mvsadcost[0][(mv->as_mv.row - ref->as_mv.row)] + in mvsad_err_cost() 60 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)]) * in mvsad_err_cost() 823 mvsad_err_cost(&this_mv, &fcenter_mv, mvsadcost, sad_per_bit); \ 839 const vp8_variance_fn_ptr_t *vfp, int *mvsadcost[2], in vp8_hex_search() 883 mvsad_err_cost(&this_mv, &fcenter_mv, mvsadcost, sad_per_bit); in vp8_hex_search() 1050 int *mvsadcost[2]; in vp8_diamond_search_sad_c() local 1053 mvsadcost[0] = x->mvsadcost[0]; in vp8_diamond_search_sad_c() 1054 mvsadcost[1] = x->mvsadcost[1]; in vp8_diamond_search_sad_c() [all …]
|
D | mcomp.h | 38 const vp8_variance_fn_ptr_t *vfp, int *mvsadcost[2],
|
D | ethreading.c | 352 z->mvsadcost[0] = x->mvsadcost[0]; in setup_mbby_copy() 353 z->mvsadcost[1] = x->mvsadcost[1]; in setup_mbby_copy()
|
D | block.h | 95 int *mvsadcost[2]; member
|
D | onyx_if.c | 1733 static void cal_mvsadcosts(int *mvsadcost[2]) { in cal_mvsadcosts() 1736 mvsadcost[0][0] = 300; in cal_mvsadcosts() 1737 mvsadcost[1][0] = 300; in cal_mvsadcosts() 1741 mvsadcost[0][i] = (int)z; in cal_mvsadcosts() 1742 mvsadcost[1][i] = (int)z; in cal_mvsadcosts() 1743 mvsadcost[0][-i] = (int)z; in cal_mvsadcosts() 1744 mvsadcost[1][-i] = (int)z; in cal_mvsadcosts() 2077 cpi->mb.mvsadcost[0] = &cpi->rd_costs.mvsadcosts[0][mvfp_max + 1]; in vp8_create_compressor() 2078 cpi->mb.mvsadcost[1] = &cpi->rd_costs.mvsadcosts[1][mvfp_max + 1]; in vp8_create_compressor() 2080 cal_mvsadcosts(cpi->mb.mvsadcost); in vp8_create_compressor()
|
D | pickinter.c | 1018 x->mvsadcost, x->mvcost, &best_ref_mv); in vp8_pick_inter_mode()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_block.h | 117 int **mvsadcost; member
|
D | vp9_encoder.c | 780 mb->mvsadcost = mb->nmvsadcost_hp; in vp9_set_high_precision_mv() 783 mb->mvsadcost = mb->nmvsadcost; in vp9_set_high_precision_mv() 2081 static void cal_nmvsadcosts(int *mvsadcost[2]) { in cal_nmvsadcosts() 2087 mvsadcost[0][0] = 0; in cal_nmvsadcosts() 2088 mvsadcost[1][0] = 0; in cal_nmvsadcosts() 2092 mvsadcost[0][i] = (int)z; in cal_nmvsadcosts() 2093 mvsadcost[1][i] = (int)z; in cal_nmvsadcosts() 2094 mvsadcost[0][-i] = (int)z; in cal_nmvsadcosts() 2095 mvsadcost[1][-i] = (int)z; in cal_nmvsadcosts() 2099 static void cal_nmvsadcosts_hp(int *mvsadcost[2]) { in cal_nmvsadcosts_hp() [all …]
|