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

  /external/libvpx/vp8/common/
reconinter.c 146 ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
147 sppf(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
151 ptr_base += d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
165 ptr += d->pre_stride;
177 ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
181 x->subpixel_predict8x8(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
185 RECON_INVOKE(&x->rtcd->recon, copy8x8)(ptr, d->pre_stride, pred_ptr, pitch);
196 ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
200 x->subpixel_predict8x4(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
204 RECON_INVOKE(&x->rtcd->recon, copy8x4)(ptr, d->pre_stride, pred_ptr, pitch)
223 int pre_stride = x->block[16].pre_stride; local
270 int pre_stride = x->block[0].pre_stride; local
333 int pre_stride = x->block[0].pre_stride; local
504 int pre_stride = d->pre_stride; local
557 int pre_stride = x->dst.y_stride; \/\/x->block[0].pre_stride; local
    [all...]
blockd.h 203 int pre_stride; member in struct:__anon5216
mbpitch.c 39 b->pre_stride = Stride;
  /external/libvpx/vp8/encoder/arm/
mcomp_arm.c 222 #define PRE(r,c) (*(d->base_pre) + d->pre + ((r)>>2) * d->pre_stride + ((c)>>2)) // pointer to predictor base of a motionvector
224 #define DIST(r,c) svf( PRE(r,c), d->pre_stride, SP(c),SP(r), z,b->src_stride,&sse) // returns subpixel variance error function.
235 unsigned char *y = *(d->base_pre) + d->pre + (bestmv->row) * d->pre_stride + bestmv->col;
258 besterr = vf(y, d->pre_stride, z, b->src_stride, &sse);
353 unsigned char *y = *(d->base_pre) + d->pre + (bestmv->row) * d->pre_stride + bestmv->col;
374 bestmse = vf(y, d->pre_stride, z, b->src_stride, &sse);
380 left = vp8_sub_pixel_variance16x16s_4_0_neon(y - 1, d->pre_stride, z, b->src_stride, &sse);
390 right = vp8_sub_pixel_variance16x16s_4_0_neon(y, d->pre_stride, z, b->src_stride, &sse);
402 up = vp8_sub_pixel_variance16x16s_0_4_neon(y - d->pre_stride, d->pre_stride, z, b->src_stride, &sse)
    [all...]
  /external/libvpx/vp8/encoder/
mcomp.c 187 #define PRE(r,c) (*(d->base_pre) + d->pre + ((r)>>2) * d->pre_stride + ((c)>>2)) // pointer to predictor base of a motionvector
189 #define DIST(r,c) svf( PRE(r,c), d->pre_stride, SP(c),SP(r), z,b->src_stride,&sse) // returns subpixel variance error function.
200 unsigned char *y = *(d->base_pre) + d->pre + (bestmv->row) * d->pre_stride + bestmv->col;
223 besterr = vf(y, d->pre_stride, z, b->src_stride, &sse);
318 unsigned char *y = *(d->base_pre) + d->pre + (bestmv->row) * d->pre_stride + bestmv->col;
339 bestmse = vf(y, d->pre_stride, z, b->src_stride, &sse);
345 left = svf(y - 1, d->pre_stride, 4, 0, z, b->src_stride, &sse);
355 right = svf(y, d->pre_stride, 4, 0, z, b->src_stride, &sse);
367 up = svf(y - d->pre_stride, d->pre_stride, 0, 4, z, b->src_stride, &sse)
    [all...]
rdopt.c 553 int pre_stride = x->e_mbd.block[16].pre_stride; local
559 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3);
565 VARIANCE_INVOKE(rtcd, subpixvar8x8)(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, uv_stride, &sse2);
566 VARIANCE_INVOKE(rtcd, subpixvar8x8)(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, uv_stride, &sse1);
571 VARIANCE_INVOKE(rtcd, subpixvar8x8)(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, uv_stride, &sse2);
572 VARIANCE_INVOKE(rtcd, subpixvar8x8)(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, uv_stride, &sse1);
    [all...]
pickinter.c 76 int in_what_stride = d->pre_stride;
80 in_what += (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
firstpass.c 458 int ref_stride=d->pre_stride;
    [all...]

Completed in 37 milliseconds