Searched defs:mvc (Results 1 - 6 of 6) sorted by relevance

/external/libvpx/vp8/decoder/
H A Ddecodemv.c139 static int read_mvcomponent(vp8_reader *r, const MV_CONTEXT *mvc) argument
141 const vp8_prob *const p = (const vp8_prob *) mvc;
174 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc) argument
176 mv->row = (short)(read_mvcomponent(r, mvc) << 1);
177 mv->col = (short)(read_mvcomponent(r, ++mvc) << 1);
181 static void read_mvcontexts(vp8_reader *bc, MV_CONTEXT *mvc) argument
188 vp8_prob *p = (vp8_prob *)(mvc + i);
245 MV_CONTEXT *const mvc = pbi->common.fc.mvc; local
279 read_mvcontexts(bc, mvc);
288 MV_CONTEXT *const mvc = pbi->common.fc.mvc; local
[all...]
/external/libvpx/vp8/encoder/
H A Dblock.h111 MV_CONTEXT *mvc; member in struct:__anon6241
H A Dencodemv.c26 const struct mv_context *mvc
29 const vp8_prob *p = mvc->prob;
68 void vp8_encode_motion_vector(vp8_writer *w, const MV *mv, const MV_CONTEXT *mvc) argument
95 encode_mvcomponent(w, mv->row >> 1, &mvc[0]);
96 encode_mvcomponent(w, mv->col >> 1, &mvc[1]);
100 static unsigned int cost_mvcomponent(const int v, const struct mv_context *mvc) argument
102 const vp8_prob *p = mvc->prob;
140 void vp8_build_component_cost_table(int *mvcost[2], int *mvsadcost[2], const MV_CONTEXT *mvc, int mvc_flag[2]) argument
167 mvcost [0] [0] = cost_mvcomponent(0, &mvc[0]);
171 //mvcost [0] [i] = cost_mvcomponent( i, &mvc[
426 MV_CONTEXT *mvc = cpi->common.fc.mvc; local
[all...]
H A Dbitstream.c802 vp8_writer *w, const MV *mv, const MV *ref, const MV_CONTEXT *mvc
809 vp8_encode_motion_vector(w, &e, mvc);
850 const MV_CONTEXT *mvc = pc->fc.mvc; local
1000 write_mv(w, &mi->mv.as_mv, &best_mv, mvc);
1034 write_mv(w, &b->mv.as_mv, &best_mv, (const MV_CONTEXT *) mvc);
H A Donyx_int.h67 MV_CONTEXT mvc[2]; member in struct:__anon6247
/external/libvpx/vp8/common/
H A Donyxc_int.h45 MV_CONTEXT mvc[2]; member in struct:frame_contexts
46 MV_CONTEXT pre_mvc[2]; /* not to caculate the mvcost for the frame if mvc doesn't change. */

Completed in 83 milliseconds