• Home
  • Raw
  • Download

Lines Matching refs:uv_stride

70                           int uv_stride, uint8_t *ud, uint8_t *vd,  in apply_ifactor()  argument
74 vp9_filter_by_weight8x8(u, uv_stride, ud, uvd_stride, weight); in apply_ifactor()
75 vp9_filter_by_weight8x8(v, uv_stride, vd, uvd_stride, weight); in apply_ifactor()
78 vp9_filter_by_weight16x16(u, uv_stride, ud, uvd_stride, weight); in apply_ifactor()
79 vp9_filter_by_weight16x16(v, uv_stride, vd, uvd_stride, weight); in apply_ifactor()
82 filter_by_weight32x32(u, uv_stride, ud, uvd_stride, weight); in apply_ifactor()
83 filter_by_weight32x32(v, uv_stride, vd, uvd_stride, weight); in apply_ifactor()
129 int y_stride, int uv_stride, uint8_t *yd, uint8_t *ud, in copy_block() argument
134 copy_mem8x8(u, uv_stride, ud, uvd_stride); in copy_block()
135 copy_mem8x8(v, uv_stride, vd, uvd_stride); in copy_block()
138 copy_mem16x16(u, uv_stride, ud, uvd_stride); in copy_block()
139 copy_mem16x16(v, uv_stride, vd, uvd_stride); in copy_block()
142 copy_mem32x32(u, uv_stride, ud, uvd_stride); in copy_block()
143 copy_mem32x32(v, uv_stride, vd, uvd_stride); in copy_block()
160 const uint8_t *v, int y_stride, int uv_stride, in mfqe_block() argument
189 apply_ifactor(y, y_stride, yd, yd_stride, u, v, uv_stride, ud, vd, in mfqe_block()
193 copy_block(y, u, v, y_stride, uv_stride, yd, ud, vd, yd_stride, uvd_stride, in mfqe_block()
211 int y_stride, int uv_stride, uint8_t *yd, in mfqe_partition() argument
250 mfqe_block(bs_tmp, y, u, v, y_stride, uv_stride, yd, ud, vd, yd_stride, in mfqe_partition()
254 uv_stride, yd + y_offset, ud + uv_offset, vd + uv_offset, in mfqe_partition()
259 mfqe_block(bs_tmp, y + y_offset * y_stride, u + uv_offset * uv_stride, in mfqe_partition()
260 v + uv_offset * uv_stride, y_stride, uv_stride, in mfqe_partition()
265 u + uv_offset * uv_stride + uv_offset, in mfqe_partition()
266 v + uv_offset * uv_stride + uv_offset, y_stride, uv_stride, in mfqe_partition()
283 mfqe_block(bs_tmp, y, u, v, y_stride, uv_stride, yd, ud, vd, yd_stride, in mfqe_partition()
286 mfqe_block(bs_tmp, y + y_offset * y_stride, u + uv_offset * uv_stride, in mfqe_partition()
287 v + uv_offset * uv_stride, y_stride, uv_stride, in mfqe_partition()
294 uv_stride, yd + y_offset, ud + uv_offset, vd + uv_offset, in mfqe_partition()
298 u + uv_offset * uv_stride + uv_offset, in mfqe_partition()
299 v + uv_offset * uv_stride + uv_offset, y_stride, uv_stride, in mfqe_partition()
309 mfqe_block(cur_bs, y, u, v, y_stride, uv_stride, yd, ud, vd, yd_stride, in mfqe_partition()
313 copy_block(y, u, v, y_stride, uv_stride, yd, ud, vd, yd_stride, in mfqe_partition()
320 mfqe_partition(cm, mi, subsize, y, u, v, y_stride, uv_stride, yd, ud, vd, in mfqe_partition()
323 v + uv_offset, y_stride, uv_stride, yd + y_offset, in mfqe_partition()
326 y + y_offset * y_stride, u + uv_offset * uv_stride, in mfqe_partition()
327 v + uv_offset * uv_stride, y_stride, uv_stride, in mfqe_partition()
332 u + uv_offset * uv_stride + uv_offset, in mfqe_partition()
333 v + uv_offset * uv_stride + uv_offset, y_stride, uv_stride, in mfqe_partition()
358 const uint32_t uv_stride = show->uv_stride; in vp9_mfqe() local
360 const uint32_t uvd_stride = dest->uv_stride; in vp9_mfqe()
368 show->u_buffer + row_offset_uv * uv_stride + col_offset_uv; in vp9_mfqe()
370 show->v_buffer + row_offset_uv * uv_stride + col_offset_uv; in vp9_mfqe()
379 mfqe_partition(cm, mi, BLOCK_64X64, y, u, v, y_stride, uv_stride, yd, ud, in vp9_mfqe()