Searched refs:mvsadcost (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 56 static int mvsad_err_cost(int_mv *mv, int_mv *ref, int *mvsadcost[2], in mvsad_err_cost() 60 if (mvsadcost) { in mvsad_err_cost() 61 return ((mvsadcost[0][(mv->as_mv.row - ref->as_mv.row)] + in mvsad_err_cost() 62 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)]) * in mvsad_err_cost() 825 mvsad_err_cost(&this_mv, &fcenter_mv, mvsadcost, sad_per_bit); \ 841 const vp8_variance_fn_ptr_t *vfp, int *mvsadcost[2], in vp8_hex_search() 885 mvsad_err_cost(&this_mv, &fcenter_mv, mvsadcost, sad_per_bit); in vp8_hex_search() 1052 int *mvsadcost[2]; in vp8_diamond_search_sad_c() local 1055 mvsadcost[0] = x->mvsadcost[0]; in vp8_diamond_search_sad_c() 1056 mvsadcost[1] = x->mvsadcost[1]; in vp8_diamond_search_sad_c() [all …]
|
D | mcomp.h | 44 const vp8_variance_fn_ptr_t *vf, int *mvsadcost[2],
|
D | ethreading.c | 353 z->mvsadcost[0] = x->mvsadcost[0]; in setup_mbby_copy() 354 z->mvsadcost[1] = x->mvsadcost[1]; in setup_mbby_copy()
|
D | block.h | 95 int *mvsadcost[2]; member
|
D | onyx_if.c | 1713 static void cal_mvsadcosts(int *mvsadcost[2]) { in cal_mvsadcosts() 1716 mvsadcost[0][0] = 300; in cal_mvsadcosts() 1717 mvsadcost[1][0] = 300; in cal_mvsadcosts() 1721 mvsadcost[0][i] = (int)z; in cal_mvsadcosts() 1722 mvsadcost[1][i] = (int)z; in cal_mvsadcosts() 1723 mvsadcost[0][-i] = (int)z; in cal_mvsadcosts() 1724 mvsadcost[1][-i] = (int)z; in cal_mvsadcosts() 2056 cpi->mb.mvsadcost[0] = &cpi->rd_costs.mvsadcosts[0][mvfp_max + 1]; in vp8_create_compressor() 2057 cpi->mb.mvsadcost[1] = &cpi->rd_costs.mvsadcosts[1][mvfp_max + 1]; in vp8_create_compressor() 2059 cal_mvsadcosts(cpi->mb.mvsadcost); in vp8_create_compressor()
|
D | pickinter.c | 1108 x->mvsadcost, x->mvcost, &best_ref_mv); in vp8_pick_inter_mode()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_block.h | 116 int **mvsadcost; member
|
D | vp9_encoder.c | 639 mb->mvsadcost = mb->nmvsadcost_hp; in vp9_set_high_precision_mv() 642 mb->mvsadcost = mb->nmvsadcost; in vp9_set_high_precision_mv() 1971 static void cal_nmvsadcosts(int *mvsadcost[2]) { in cal_nmvsadcosts() 1977 mvsadcost[0][0] = 0; in cal_nmvsadcosts() 1978 mvsadcost[1][0] = 0; in cal_nmvsadcosts() 1982 mvsadcost[0][i] = (int)z; in cal_nmvsadcosts() 1983 mvsadcost[1][i] = (int)z; in cal_nmvsadcosts() 1984 mvsadcost[0][-i] = (int)z; in cal_nmvsadcosts() 1985 mvsadcost[1][-i] = (int)z; in cal_nmvsadcosts() 1989 static void cal_nmvsadcosts_hp(int *mvsadcost[2]) { in cal_nmvsadcosts_hp() [all …]
|