Searched refs:pre_stride (Results 1 - 8 of 8) sorted by relevance
/external/libvpx/vp8/common/ |
H A D | 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_pt 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...] |
H A D | blockd.h | 201 int pre_stride; member in struct:__anon6866
|
H A D | mbpitch.c | 39 b->pre_stride = Stride;
|
/external/libvpx/vp8/encoder/ |
H A D | 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, [all...] |
H A D | temporal_filter.c | 173 int pre_stride = d->pre_stride; local 181 d->pre_stride = frame_ptr->y_stride; 273 d->pre_stride = pre_stride;
|
H A D | rdopt.c | 456 int pre_stride = x->e_mbd.block[16].pre_stride; local 462 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3); 468 VARIANCE_INVOKE(rtcd, subpixvar8x8)(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, uv_stride, &sse2); 469 VARIANCE_INVOKE(rtcd, subpixvar8x8)(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, uv_stride, &sse1); 474 VARIANCE_INVOKE(rtcd, subpixvar8x8)(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, uv_stride, &sse2); 475 VARIANCE_INVOKE(rtcd, subpixvar8x8)(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, uv_stride, &sse1);
|
H A D | 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);
|
H A D | firstpass.c | 416 int ref_stride=d->pre_stride;
|
Completed in 107 milliseconds