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 147 ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
148 sppf(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
152 ptr_base += d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
166 ptr += d->pre_stride;
178 ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
182 x->subpixel_predict8x8(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
186 RECON_INVOKE(&x->rtcd->recon, copy8x8)(ptr, d->pre_stride, pred_ptr, pitch);
197 ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
201 x->subpixel_predict8x4(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
205 RECON_INVOKE(&x->rtcd->recon, copy8x4)(ptr, d->pre_stride, pred_ptr, pitch)
224 int pre_stride = x->block[16].pre_stride; local
271 int pre_stride = x->block[0].pre_stride; local
334 int pre_stride = x->block[0].pre_stride; local
506 int pre_stride = d->pre_stride; local
559 int pre_stride = x->dst.y_stride; \/*x->block[0].pre_stride;*\/ local
    [all...]
blockd.h 203 int pre_stride; member in struct:__anon5053
mbpitch.c 39 b->pre_stride = Stride;
  /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) vfp->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 = vfp->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 = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse);
345 left = vfp->svf_halfpix_h(y - 1, d->pre_stride, z, b->src_stride, &sse);
355 right = vfp->svf_halfpix_h(y, d->pre_stride, z, b->src_stride, &sse);
367 up = vfp->svf_halfpix_v(y - d->pre_stride, d->pre_stride, z, b->src_stride, &sse)
    [all...]
temporal_filter.c 205 int pre_stride = d->pre_stride; local
213 d->pre_stride = frame_ptr->y_stride;
305 d->pre_stride = pre_stride;
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 75 int in_what_stride = d->pre_stride;
79 in_what += (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
firstpass.c 441 int ref_stride=d->pre_stride;
    [all...]

Completed in 603 milliseconds