/external/libvpx/libvpx/vp8/common/ |
reconinter.c | 83 void vp8_build_inter_predictors_b(BLOCKD *d, int pitch, unsigned char *base_pre, int pre_stride, vp8_subpix_fn_t sppf) 88 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); 92 sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch); 103 ptr += pre_stride; 108 static void build_inter_predictors4b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride) 111 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); 115 x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst_stride); 119 vp8_copy_mem8x8(ptr, pre_stride, dst, dst_stride); 123 static void build_inter_predictors2b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride) 126 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3) 173 int pre_stride = x->pre.uv_stride; local 203 int pre_stride = x->pre.uv_stride; local 280 int pre_stride = x->pre.y_stride; local 347 int pre_stride = x->pre.y_stride; local [all...] |
reconinter.h | 33 int pre_stride,
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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 | 33 int pre_stride,
|
/external/libvpx/libvpx/vp8/encoder/ |
mcomp.c | 238 int pre_stride = x->e_mbd.pre.y_stride; local 244 unsigned char *y_0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; 255 vfp->copymem(y_0 - buf_c1 - pre_stride*buf_r1, pre_stride, xd->y_buf, y_stride, 16+buf_r1+buf_r2); 258 unsigned char *y = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; 259 y_stride = pre_stride; 381 int pre_stride = x->e_mbd.pre.y_stride; local 386 unsigned char *y_0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; 391 vfp->copymem(y_0 - 1 - pre_stride, pre_stride, xd->y_buf, y_stride, 18) 692 int pre_stride = x->e_mbd.pre.y_stride; local 874 int pre_stride = x->e_mbd.pre.y_stride; local 1066 int pre_stride = x->e_mbd.pre.y_stride; local 1190 int pre_stride = x->e_mbd.pre.y_stride; local 1345 int pre_stride = x->e_mbd.pre.y_stride; local 1440 int pre_stride = x->e_mbd.pre.y_stride; local 1572 int pre_stride = x->e_mbd.pre.y_stride; local 1739 int pre_stride = x->e_mbd.pre.y_stride; local 1818 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 219 x->e_mbd.pre.y_stride = pre_stride;
|
rdopt.c | 483 int pre_stride = x->e_mbd.pre.uv_stride; local 498 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3); 504 vpx_sub_pixel_variance8x8(uptr, pre_stride, 506 vpx_sub_pixel_variance8x8(vptr, pre_stride, 512 vpx_variance8x8(uptr, pre_stride, 514 vpx_variance8x8(vptr, pre_stride, 1056 int pre_stride = x->e_mbd.pre.y_stride; local 1067 vp8_build_inter_predictors_b(bd, 16, base_pre, pre_stride, x->e_mbd.subpixel_predict); [all...] |
pickinter.c | 202 int pre_stride = mb->e_mbd.pre.y_stride; local 204 int in_what_stride = pre_stride; 208 in_what += (this_mv.as_mv.row >> 3) * pre_stride + (this_mv.as_mv.col >> 3); [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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 1060 int pre_stride = x->e_mbd.pre.y_stride; local 1184 int pre_stride = x->e_mbd.pre.y_stride; local 1339 int pre_stride = x->e_mbd.pre.y_stride; local 1435 int pre_stride = x->e_mbd.pre.y_stride; local 1568 int pre_stride = x->e_mbd.pre.y_stride; local 1735 int pre_stride = x->e_mbd.pre.y_stride; local 1815 int pre_stride = x->e_mbd.pre.y_stride; local [all...] |
temporal_filter.c | 163 int pre_stride = x->e_mbd.pre.y_stride; local 216 x->e_mbd.pre.y_stride = pre_stride;
|
pickinter.c | 75 int pre_stride = mb->e_mbd.pre.y_stride; local 77 int in_what_stride = pre_stride; 81 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, 1054 int pre_stride = x->e_mbd.pre.y_stride; local 1065 vp8_build_inter_predictors_b(bd, 16, base_pre, pre_stride, x->e_mbd.subpixel_predict); [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_pickmode.c | 1304 const int pre_stride = xd->plane[0].pre[0].stride; local 1317 const int pre_stride = xd->plane[0].pre[0].stride; local [all...] |