Searched refs:mvsadcost (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 51 static int mvsad_err_cost(int_mv *mv, int_mv *ref, int *mvsadcost[2], int error_per_bit) in mvsad_err_cost() 55 if (mvsadcost) in mvsad_err_cost() 56 return ((mvsadcost[0][(mv->as_mv.row - ref->as_mv.row)] + in mvsad_err_cost() 57 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)]) in mvsad_err_cost() 833 thissad += mvsad_err_cost(&this_mv, &fcenter_mv, mvsadcost, sad_per_bit);\ 862 int *mvsadcost[2], in vp8_hex_search() 906 + mvsad_err_cost(&this_mv, &fcenter_mv, mvsadcost, sad_per_bit); in vp8_hex_search() 1086 int *mvsadcost[2]; in vp8_diamond_search_sad_c() local 1089 mvsadcost[0] = x->mvsadcost[0]; in vp8_diamond_search_sad_c() 1090 mvsadcost[1] = x->mvsadcost[1]; in vp8_diamond_search_sad_c() [all …]
|
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 | mcomp.h | 55 int *mvsadcost[2],
|
D | block.h | 101 int *mvsadcost[2]; member
|
D | onyx_if.c | 1845 static void cal_mvsadcosts(int *mvsadcost[2]) in cal_mvsadcosts() 1849 mvsadcost [0] [0] = 300; in cal_mvsadcosts() 1850 mvsadcost [1] [0] = 300; in cal_mvsadcosts() 1855 mvsadcost [0][i] = (int) z; in cal_mvsadcosts() 1856 mvsadcost [1][i] = (int) z; in cal_mvsadcosts() 1857 mvsadcost [0][-i] = (int) z; in cal_mvsadcosts() 1858 mvsadcost [1][-i] = (int) z; in cal_mvsadcosts() 2202 cpi->mb.mvsadcost[0] = &cpi->rd_costs.mvsadcosts[0][mvfp_max+1]; in vp8_create_compressor() 2203 cpi->mb.mvsadcost[1] = &cpi->rd_costs.mvsadcosts[1][mvfp_max+1]; in vp8_create_compressor() 2205 cal_mvsadcosts(cpi->mb.mvsadcost); in vp8_create_compressor()
|
D | pickinter.c | 1186 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 | 222 mb->mvsadcost = mb->nmvsadcost_hp; in vp9_set_high_precision_mv() 225 mb->mvsadcost = mb->nmvsadcost; in vp9_set_high_precision_mv() 1560 static void cal_nmvsadcosts(int *mvsadcost[2]) { in cal_nmvsadcosts() 1563 mvsadcost[0][0] = 0; in cal_nmvsadcosts() 1564 mvsadcost[1][0] = 0; in cal_nmvsadcosts() 1568 mvsadcost[0][i] = (int)z; in cal_nmvsadcosts() 1569 mvsadcost[1][i] = (int)z; in cal_nmvsadcosts() 1570 mvsadcost[0][-i] = (int)z; in cal_nmvsadcosts() 1571 mvsadcost[1][-i] = (int)z; in cal_nmvsadcosts() 1575 static void cal_nmvsadcosts_hp(int *mvsadcost[2]) { in cal_nmvsadcosts_hp() [all …]
|