Searched refs:pre_stride (Results 1 – 6 of 6) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
D | reconinter.c | 126 void vp8_build_inter_predictors_b(BLOCKD *d, int pitch, unsigned char *base_pre, int pre_stride, vp… in vp8_build_inter_predictors_b() argument 131 … ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b() 135 sppf(ptr, 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() 146 ptr += pre_stride; in vp8_build_inter_predictors_b() 151 …OBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride) in build_inter_predictors4b() argument 154 … ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); in build_inter_predictors4b() 158 …x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst… in build_inter_predictors4b() 162 vp8_copy_mem8x8(ptr, pre_stride, dst, dst_stride); in build_inter_predictors4b() 166 …OBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride) in build_inter_predictors2b() argument 169 … ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); in build_inter_predictors2b() [all …]
|
D | reconinter.h | 33 int pre_stride,
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | mcomp.c | 234 int pre_stride = x->e_mbd.pre.y_stride; in vp8_find_best_sub_pixel_step_iteratively() local 240 … unsigned char *y_0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; in vp8_find_best_sub_pixel_step_iteratively() 251 … vfp->copymem(y_0 - buf_c1 - pre_stride*buf_r1, pre_stride, xd->y_buf, y_stride, 16+buf_r1+buf_r2); in vp8_find_best_sub_pixel_step_iteratively() 254 unsigned char *y = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; in vp8_find_best_sub_pixel_step_iteratively() 255 y_stride = pre_stride; in vp8_find_best_sub_pixel_step_iteratively() 377 int pre_stride = x->e_mbd.pre.y_stride; in vp8_find_best_sub_pixel_step() local 382 … unsigned char *y_0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; in vp8_find_best_sub_pixel_step() 387 vfp->copymem(y_0 - 1 - pre_stride, pre_stride, xd->y_buf, y_stride, 18); in vp8_find_best_sub_pixel_step() 390 unsigned char *y = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + bestmv->as_mv.col; in vp8_find_best_sub_pixel_step() 391 y_stride = pre_stride; in vp8_find_best_sub_pixel_step() [all …]
|
D | temporal_filter.c | 163 int pre_stride = x->e_mbd.pre.y_stride; in vp8_temporal_filter_find_matching_mb_c() local 216 x->e_mbd.pre.y_stride = pre_stride; in vp8_temporal_filter_find_matching_mb_c()
|
D | rdopt.c | 482 int pre_stride = x->e_mbd.pre.uv_stride; in VP8_UVSSE() local 497 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3); in VP8_UVSSE() 503 vp8_sub_pixel_variance8x8(uptr, pre_stride, in VP8_UVSSE() 505 vp8_sub_pixel_variance8x8(vptr, pre_stride, in VP8_UVSSE() 511 vp8_variance8x8(uptr, pre_stride, in VP8_UVSSE() 513 vp8_variance8x8(vptr, pre_stride, in VP8_UVSSE() 1054 int pre_stride = x->e_mbd.pre.y_stride; in vp8_encode_inter_mb_segment() local 1065 vp8_build_inter_predictors_b(bd, 16, base_pre, pre_stride, x->e_mbd.subpixel_predict); in vp8_encode_inter_mb_segment()
|
D | pickinter.c | 75 int pre_stride = mb->e_mbd.pre.y_stride; in vp8_get_inter_mbpred_error() local 77 int in_what_stride = pre_stride; in vp8_get_inter_mbpred_error() 81 in_what += (this_mv.as_mv.row >> 3) * pre_stride + (this_mv.as_mv.col >> 3); in vp8_get_inter_mbpred_error()
|