Home
last modified time | relevance | path

Searched refs:pre_stride (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/vp8/common/
Dreconinter.c147 … ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b()
148 sppf(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch); in vp8_build_inter_predictors_b()
152 … ptr_base += d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b()
166 ptr += d->pre_stride; in vp8_build_inter_predictors_b()
178 … ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in build_inter_predictors4b()
182 …x->subpixel_predict8x8(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_… in build_inter_predictors4b()
186 RECON_INVOKE(&x->rtcd->recon, copy8x8)(ptr, d->pre_stride, pred_ptr, pitch); in build_inter_predictors4b()
197 … ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in build_inter_predictors2b()
201 …x->subpixel_predict8x4(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_… in build_inter_predictors2b()
205 RECON_INVOKE(&x->rtcd->recon, copy8x4)(ptr, d->pre_stride, pred_ptr, pitch); in build_inter_predictors2b()
[all …]
Dblockd.h201 int pre_stride; member
Dmbpitch.c39 b->pre_stride = Stride; in setup_block()
/external/libvpx/vp8/encoder/
Dmcomp.c187 #define PRE(r,c) (*(d->base_pre) + d->pre + ((r)>>2) * d->pre_stride + ((c)>>2)) // pointer to pred…
189 #define DIST(r,c) vfp->svf( PRE(r,c), d->pre_stride, SP(c),SP(r), z,b->src_stride,&sse) // returns …
200 unsigned char *y = *(d->base_pre) + d->pre + (bestmv->row) * d->pre_stride + bestmv->col; in vp8_find_best_sub_pixel_step_iteratively()
223 besterr = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step_iteratively()
318 unsigned char *y = *(d->base_pre) + d->pre + (bestmv->row) * d->pre_stride + bestmv->col; in vp8_find_best_sub_pixel_step()
339 bestmse = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
345 left = vfp->svf_halfpix_h(y - 1, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
355 right = vfp->svf_halfpix_h(y, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
367 up = vfp->svf_halfpix_v(y - d->pre_stride, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
377 down = vfp->svf_halfpix_v(y, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
[all …]
Dtemporal_filter.c173 int pre_stride = d->pre_stride; in vp8_temporal_filter_find_matching_mb_c() local
181 d->pre_stride = frame_ptr->y_stride; in vp8_temporal_filter_find_matching_mb_c()
273 d->pre_stride = pre_stride; in vp8_temporal_filter_find_matching_mb_c()
Drdopt.c456 int pre_stride = x->e_mbd.block[16].pre_stride; in VP8_UVSSE() local
462 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3); in VP8_UVSSE()
468 …VARIANCE_INVOKE(rtcd, subpixvar8x8)(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, uv_stride… in VP8_UVSSE()
469 …VARIANCE_INVOKE(rtcd, subpixvar8x8)(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, uv_stride… in VP8_UVSSE()
474 …VARIANCE_INVOKE(rtcd, subpixvar8x8)(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, uv_stride… in VP8_UVSSE()
475 …VARIANCE_INVOKE(rtcd, subpixvar8x8)(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, uv_stride… in VP8_UVSSE()
Dpickinter.c75 int in_what_stride = d->pre_stride; in get_inter_mbpred_error()
79 in_what += (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in get_inter_mbpred_error()
Dfirstpass.c416 int ref_stride=d->pre_stride; in zz_motion_search()