Searched refs:mvsadcost (Results 1 - 8 of 8) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
H A Dmcomp.c56 static int mvsad_err_cost(int_mv *mv, int_mv *ref, int *mvsadcost[2], argument
59 /* Ignore mv costing if mvsadcost is NULL */
60 if (mvsadcost) {
61 return ((mvsadcost[0][(mv->as_mv.row - ref->as_mv.row)] +
62 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)]) *
825 mvsad_err_cost(&this_mv, &fcenter_mv, mvsadcost, sad_per_bit); \
841 const vp8_variance_fn_ptr_t *vfp, int *mvsadcost[2],
885 mvsad_err_cost(&this_mv, &fcenter_mv, mvsadcost, sad_per_bit);
1052 int *mvsadcost[2]; local
1055 mvsadcost[
839 vp8_hex_search(MACROBLOCK *x, BLOCK *b, BLOCKD *d, int_mv *ref_mv, int_mv *best_mv, int search_param, int sad_per_bit, const vp8_variance_fn_ptr_t *vfp, int *mvsadcost[2], int *mvcost[2], int_mv *center_mv) argument
1164 int *mvsadcost[2]; local
1311 int *mvsadcost[2]; local
1399 int *mvsadcost[2]; local
1519 int *mvsadcost[2]; local
1655 int *mvsadcost[2]; local
1733 int *mvsadcost[2]; local
[all...]
H A Dmcomp.h44 const vp8_variance_fn_ptr_t *vf, int *mvsadcost[2],
H A Dblock.h95 int *mvsadcost[2]; member in struct:macroblock
H A Dethreading.c352 z->mvsadcost[0] = x->mvsadcost[0];
353 z->mvsadcost[1] = x->mvsadcost[1];
H A Donyx_if.c1739 static void cal_mvsadcosts(int *mvsadcost[2]) { argument
1742 mvsadcost[0][0] = 300;
1743 mvsadcost[1][0] = 300;
1747 mvsadcost[0][i] = (int)z;
1748 mvsadcost[1][i] = (int)z;
1749 mvsadcost[0][-i] = (int)z;
1750 mvsadcost[1][-i] = (int)z;
2091 cpi->mb.mvsadcost[0] = &cpi->rd_costs.mvsadcosts[0][mvfp_max + 1];
2092 cpi->mb.mvsadcost[1] = &cpi->rd_costs.mvsadcosts[1][mvfp_max + 1];
2094 cal_mvsadcosts(cpi->mb.mvsadcost);
[all...]
H A Dpickinter.c1019 x->mvsadcost, x->mvcost, &best_ref_mv);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_block.h116 int **mvsadcost; member in struct:macroblock
H A Dvp9_encoder.c643 mb->mvsadcost = mb->nmvsadcost_hp;
646 mb->mvsadcost = mb->nmvsadcost;
1923 * - For all i: mvsadcost[0][i] == mvsadcost[1][i] *
1925 * - For all i: mvsadcost[0][i] == mvsadcost[0][-i] *
1942 static void cal_nmvsadcosts(int *mvsadcost[2]) { argument
1948 mvsadcost[0][0] = 0;
1949 mvsadcost[1][0] = 0;
1953 mvsadcost[
1960 cal_nmvsadcosts_hp(int *mvsadcost[2]) argument
[all...]

Completed in 162 milliseconds