HomeSort by relevance Sort by last modified time
    Searched refs:vp8_mv_bit_cost (Results 1 - 4 of 4) sorted by null

  /external/libvpx/vp8/encoder/
mcomp.h 30 extern int vp8_mv_bit_cost(MV *mv, MV *ref, int *mvcost[2], int Weight);
rdopt.c 963 thismvcost = vp8_mv_bit_cost(this_mv, best_ref_mv, mvcost, 102);
    [all...]
pickinter.c 773 rate2 += vp8_mv_bit_cost(&mode_mv[NEWMV], &best_ref_mv1, cpi->mb.mvcost, 128);
mcomp.c 37 int vp8_mv_bit_cost(MV *mv, MV *ref, int *mvcost[2], int Weight) function
50 //return ( (vp8_mv_bit_cost(mv, ref, mvcost, 100) + 128) * error_per_bit) >> 8;
52 //i = (vp8_mv_bit_cost(mv, ref, mvcost, 100) * error_per_bit + 128) >> 8;
54 //return (vp8_mv_bit_cost(mv, ref, mvcost, 128) * error_per_bit + 128) >> 8;
    [all...]

Completed in 149 milliseconds