Lines Matching refs:src_stride
23 static void build_mc_border(const uint8_t *src, int src_stride,
27 const uint8_t *ref_row = src - x - y * src_stride;
30 ref_row += (h - 1) * src_stride;
32 ref_row += y * src_stride;
62 ref_row += src_stride;
66 static void inter_predictor(const uint8_t *src, int src_stride,
75 src, src_stride, dst, dst_stride,
79 void vp9_build_inter_predictor(const uint8_t *src, int src_stride,
94 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS);
96 inter_predictor(src, src_stride, dst, dst_stride, subpel_x, subpel_y,