Searched refs:mvsadcost (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 52 static int mvsad_err_cost(int_mv *mv, int_mv *ref, int *mvsadcost[2], int error_per_bit) in mvsad_err_cost() 56 if (mvsadcost) in mvsad_err_cost() 57 return ((mvsadcost[0][(mv->as_mv.row - ref->as_mv.row)] + in mvsad_err_cost() 58 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)]) in mvsad_err_cost() 834 thissad += mvsad_err_cost(&this_mv, &fcenter_mv, mvsadcost, sad_per_bit);\ 863 int *mvsadcost[2], in vp8_hex_search() 907 + mvsad_err_cost(&this_mv, &fcenter_mv, mvsadcost, sad_per_bit); in vp8_hex_search() 1087 int *mvsadcost[2]; in vp8_diamond_search_sad_c() local 1090 mvsadcost[0] = x->mvsadcost[0]; in vp8_diamond_search_sad_c() 1091 mvsadcost[1] = x->mvsadcost[1]; in vp8_diamond_search_sad_c() [all …]
|
D | mcomp.h | 55 int *mvsadcost[2],
|
D | ethreading.c | 362 z->mvsadcost[0] = x->mvsadcost[0]; in setup_mbby_copy() 363 z->mvsadcost[1] = x->mvsadcost[1]; in setup_mbby_copy()
|
D | block.h | 101 int *mvsadcost[2]; member
|
D | onyx_if.c | 1821 static void cal_mvsadcosts(int *mvsadcost[2]) in cal_mvsadcosts() 1825 mvsadcost [0] [0] = 300; in cal_mvsadcosts() 1826 mvsadcost [1] [0] = 300; in cal_mvsadcosts() 1831 mvsadcost [0][i] = (int) z; in cal_mvsadcosts() 1832 mvsadcost [1][i] = (int) z; in cal_mvsadcosts() 1833 mvsadcost [0][-i] = (int) z; in cal_mvsadcosts() 1834 mvsadcost [1][-i] = (int) z; in cal_mvsadcosts() 2178 cpi->mb.mvsadcost[0] = &cpi->rd_costs.mvsadcosts[0][mvfp_max+1]; in vp8_create_compressor() 2179 cpi->mb.mvsadcost[1] = &cpi->rd_costs.mvsadcosts[1][mvfp_max+1]; in vp8_create_compressor() 2181 cal_mvsadcosts(cpi->mb.mvsadcost); in vp8_create_compressor()
|
D | pickinter.c | 1198 x->mvsadcost, x->mvcost, &best_ref_mv); in vp8_pick_inter_mode()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_block.h | 94 int **mvsadcost; member
|
D | vp9_encoder.c | 223 mb->mvsadcost = mb->nmvsadcost_hp; in vp9_set_high_precision_mv() 226 mb->mvsadcost = mb->nmvsadcost; in vp9_set_high_precision_mv() 1577 static void cal_nmvsadcosts(int *mvsadcost[2]) { in cal_nmvsadcosts() 1580 mvsadcost[0][0] = 0; in cal_nmvsadcosts() 1581 mvsadcost[1][0] = 0; in cal_nmvsadcosts() 1585 mvsadcost[0][i] = (int)z; in cal_nmvsadcosts() 1586 mvsadcost[1][i] = (int)z; in cal_nmvsadcosts() 1587 mvsadcost[0][-i] = (int)z; in cal_nmvsadcosts() 1588 mvsadcost[1][-i] = (int)z; in cal_nmvsadcosts() 1592 static void cal_nmvsadcosts_hp(int *mvsadcost[2]) { in cal_nmvsadcosts_hp() [all …]
|