/external/libvpx/libvpx/vp8/common/ |
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); 146 ptr += pre_stride; 151 static void build_inter_predictors4b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride) 154 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); 158 x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst_stride); 162 vp8_copy_mem8x8(ptr, pre_stride, dst, dst_stride); 166 static void build_inter_predictors2b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride) 169 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3) 216 int pre_stride = x->pre.uv_stride; local 246 int pre_stride = x->pre.uv_stride; local 323 int pre_stride = x->pre.y_stride; local 390 int pre_stride = x->pre.y_stride; local [all...] |
reconinter.h | 29 int pre_stride,
|
/external/libvpx/libvpx/vp8/encoder/ |
mcomp.c | 234 int pre_stride = x->e_mbd.pre.y_stride; local 240 unsigned char *y_0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; 251 vfp->copymem(y_0 - buf_c1 - pre_stride*buf_r1, pre_stride, xd->y_buf, y_stride, 16+buf_r1+buf_r2); 254 unsigned char *y = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; 255 y_stride = pre_stride; 377 int pre_stride = x->e_mbd.pre.y_stride; local 382 unsigned char *y_0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; 387 vfp->copymem(y_0 - 1 - pre_stride, pre_stride, xd->y_buf, y_stride, 18) 688 int pre_stride = x->e_mbd.pre.y_stride; local 870 int pre_stride = x->e_mbd.pre.y_stride; local 1058 int pre_stride = x->e_mbd.pre.y_stride; local 1182 int pre_stride = x->e_mbd.pre.y_stride; local 1337 int pre_stride = x->e_mbd.pre.y_stride; local 1433 int pre_stride = x->e_mbd.pre.y_stride; local 1566 int pre_stride = x->e_mbd.pre.y_stride; local 1733 int pre_stride = x->e_mbd.pre.y_stride; local 1813 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;
|
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...] |
rdopt.c | 482 int pre_stride = x->e_mbd.pre.uv_stride; local 497 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3); 503 vp8_sub_pixel_variance8x8(uptr, pre_stride, 505 vp8_sub_pixel_variance8x8(vptr, pre_stride, 511 vp8_variance8x8(uptr, pre_stride, 513 vp8_variance8x8(vptr, pre_stride, 1052 int pre_stride = x->e_mbd.pre.y_stride; local 1063 vp8_build_inter_predictors_b(bd, 16, base_pre, pre_stride, x->e_mbd.subpixel_predict); [all...] |