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

  /external/libvpx/vp8/encoder/
encodemv.h 19 void vp8_build_component_cost_table(int *mvcost[2], int *mvsadcost[2], const MV_CONTEXT *mvc, int mvc_flag[2]);
encodemv.c 26 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)
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)
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])
167 mvcost [0] [0] = cost_mvcomponent(0, &mvc[0]);
171 //mvcost [0] [i] = cost_mvcomponent( i, &mvc[0])
426 MV_CONTEXT *mvc = cpi->common.fc.mvc; local
    [all...]
block.h 109 MV_CONTEXT *mvc; member in struct:__anon5118
ratectrl.c 236 vp8_copy(cc->mvc, cpi->common.fc.mvc);
274 vp8_copy(cpi->common.fc.mvc, cc->mvc);
308 vpx_memcpy(cpi->common.fc.mvc, vp8_default_mv_context, sizeof(vp8_default_mv_context));
311 vp8_build_component_cost_table(cpi->mb.mvcost, cpi->mb.mvsadcost, (const MV_CONTEXT *) cpi->common.fc.mvc, flag);
    [all...]
encodeframe.c 676 x->mvc = cm->fc.mvc;
863 if (cm->fc.pre_mvc[0][cnt] != cm->fc.mvc[0][cnt])
866 vpx_memcpy(cm->fc.pre_mvc[0], cm->fc.mvc[0], MVPcount);
873 if (cm->fc.pre_mvc[1][cnt] != cm->fc.mvc[1][cnt])
876 vpx_memcpy(cm->fc.pre_mvc[1], cm->fc.mvc[1], MVPcount);
882 vp8_build_component_cost_table(cpi->mb.mvcost, cpi->mb.mvsadcost, (const MV_CONTEXT *) cm->fc.mvc, flag);
    [all...]
bitstream.c 812 vp8_writer *w, const MV *mv, const MV *ref, const MV_CONTEXT *mvc
819 vp8_encode_motion_vector(w, &e, mvc);
860 const MV_CONTEXT *mvc = pc->fc.mvc; local
1010 write_mv(w, &mi->mv.as_mv, &best_mv, mvc);
1044 write_mv(w, &b->mv.as_mv, &best_mv, (const MV_CONTEXT *) mvc);
    [all...]
ethreading.c 260 z->mvc = x->mvc;
399 mb->mvc = cm->fc.mvc;
onyx_int.h 62 MV_CONTEXT mvc[2]; member in struct:__anon5124
99 double MVc;
firstpass.c 284 stats->MVc,
323 section->MVc = 0.0;
342 section->MVc += frame->MVc;
363 section->MVc /= section->count;
570 vpx_memcpy(cm->fc.mvc, vp8_default_mv_context, sizeof(vp8_default_mv_context));
571 vp8_build_component_cost_table(cpi->mb.mvcost, cpi->mb.mvsadcost, (const MV_CONTEXT *) cm->fc.mvc, flag);
813 fps.MVc = 0.0;
827 fps.MVc = (double)sum_mvc / (double)mvcount;
830 fps.MVcv = ((double)sum_mvcs - (fps.MVc * fps.MVc / (double)mvcount)) / (double)mvcount
    [all...]
  /external/libvpx/vp8/decoder/
decodemv.c 139 static int read_mvcomponent(vp8_reader *r, const MV_CONTEXT *mvc)
141 const vp8_prob *const p = (const vp8_prob *) mvc;
174 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc)
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)
188 vp8_prob *p = (vp8_prob *)(mvc + i);
252 MV_CONTEXT *const mvc = pbi->common.fc.mvc; local
286 read_mvcontexts(bc, mvc);
295 MV_CONTEXT *const mvc = pbi->common.fc.mvc; local
    [all...]
decodframe.c 503 vpx_memcpy(pc->fc.mvc, vp8_default_mv_context, sizeof(vp8_default_mv_context));
  /external/libvpx/vp8/common/
onyxc_int.h 45 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. */
  /external/openssl/crypto/aes/asm/
aes-s390x.pl 1180 ahi $key,-1 # it's the way it's encoded in mvc
1187 mvc 128(1,$sp),0($inp)
1202 mvc 0(1,$out),128($sp)
1266 mvc 128(1,$sp),0($inp)
1327 mvc 0(1,$out),128($sp)
  /external/v8/benchmarks/
regexp.js     [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-regexp.js     [all...]

Completed in 233 milliseconds