/external/libvpx/libvpx/vp8/common/ |
reconinter.h | 29 int pre_stride,
|
reconinter.c | 126 void vp8_build_inter_predictors_b(BLOCKD *d, int pitch, unsigned char *base_pre, int pre_stride, vp8_subpix_fn_t sppf) 131 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); 135 sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch); 150 ptr += pre_stride; 155 static void build_inter_predictors4b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride) 158 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); 162 x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst_stride); 166 vp8_copy_mem8x8(ptr, pre_stride, dst, dst_stride); 170 static void build_inter_predictors2b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride) 173 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3) 224 int pre_stride = x->pre.uv_stride; local 254 int pre_stride = x->pre.uv_stride; local 331 int pre_stride = x->pre.y_stride; local 398 int pre_stride = x->pre.y_stride; local [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
mcomp.c | 230 int pre_stride = x->e_mbd.pre.y_stride; local 236 unsigned char *y0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; 248 vfp->copymem(y0 - buf_c1 - pre_stride*buf_r1, pre_stride, xd->y_buf, y_stride, 16+buf_r1+buf_r2); 251 unsigned char *y = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; 252 y_stride = pre_stride; 374 int pre_stride = x->e_mbd.pre.y_stride; local 379 unsigned char *y0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; 384 vfp->copymem(y0 - 1 - pre_stride, pre_stride, xd->y_buf, y_stride, 18) 685 int pre_stride = x->e_mbd.pre.y_stride; local 867 int pre_stride = x->e_mbd.pre.y_stride; local 1055 int pre_stride = x->e_mbd.pre.y_stride; local 1179 int pre_stride = x->e_mbd.pre.y_stride; local 1334 int pre_stride = x->e_mbd.pre.y_stride; local 1430 int pre_stride = x->e_mbd.pre.y_stride; local 1563 int pre_stride = x->e_mbd.pre.y_stride; local 1730 int pre_stride = x->e_mbd.pre.y_stride; local 1810 int pre_stride = x->e_mbd.pre.y_stride; local [all...] |
temporal_filter.c | 164 int pre_stride = x->e_mbd.pre.y_stride; local 217 x->e_mbd.pre.y_stride = pre_stride;
|
rdopt.c | 477 int pre_stride = x->e_mbd.pre.uv_stride; local 492 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3); 498 vp8_sub_pixel_variance8x8(uptr, pre_stride, 500 vp8_sub_pixel_variance8x8(vptr, pre_stride, 506 vp8_variance8x8(uptr, pre_stride, 508 vp8_variance8x8(vptr, pre_stride, 1047 int pre_stride = x->e_mbd.pre.y_stride; local 1058 vp8_build_inter_predictors_b(bd, 16, base_pre, pre_stride, x->e_mbd.subpixel_predict); [all...] |
pickinter.c | 74 int pre_stride = mb->e_mbd.pre.y_stride; local 76 int in_what_stride = pre_stride; 80 in_what += (this_mv.as_mv.row >> 3) * pre_stride + (this_mv.as_mv.col >> 3); [all...] |