OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vp8_mv_bit_cost
(Results
1 - 4
of
4
) sorted by null
/external/libvpx/vp8/encoder/
mcomp.h
29
extern int
vp8_mv_bit_cost
(MV *mv, MV *ref, int *mvcost[2], int Weight);
pickinter.c
792
rate2 +=
vp8_mv_bit_cost
(&mode_mv[NEWMV], &best_ref_mv, cpi->mb.mvcost, 128);
rdopt.c
922
thismvcost =
vp8_mv_bit_cost
(this_mv, best_ref_mv, mvcost, 102);
[
all
...]
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 17 milliseconds