Home
last modified time | relevance | path

Searched refs:uv_offset (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_mfqe.c222 int mi_offset, y_offset, uv_offset; in mfqe_partition() local
240 uv_offset = 16; in mfqe_partition()
244 uv_offset = 8; in mfqe_partition()
261 mfqe_block(bs_tmp, y + y_offset, u + uv_offset, v + uv_offset, in mfqe_partition()
262 y_stride, uv_stride, yd + y_offset, ud + uv_offset, in mfqe_partition()
263 vd + uv_offset, yd_stride, uvd_stride, qdiff); in mfqe_partition()
267 mfqe_block(bs_tmp, y + y_offset * y_stride, u + uv_offset * uv_stride, in mfqe_partition()
268 v + uv_offset * uv_stride, y_stride, uv_stride, in mfqe_partition()
269 yd + y_offset * yd_stride, ud + uv_offset * uvd_stride, in mfqe_partition()
270 vd + uv_offset * uvd_stride, yd_stride, uvd_stride, qdiff); in mfqe_partition()
[all …]
/external/webp/src/dec/
Dframe.c178 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; in ReconstructRow() local
180 uint8_t* const u_out = dec->cache_u_ + mb_x * 8 + uv_offset; in ReconstructRow()
181 uint8_t* const v_out = dec->cache_v_ + mb_x * 8 + uv_offset; in ReconstructRow()
421 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; in FinishRow() local
423 uint8_t* const udst = dec->cache_u_ - uvsize + uv_offset; in FinishRow()
424 uint8_t* const vdst = dec->cache_v_ - uvsize + uv_offset; in FinishRow()
451 io->u = dec->cache_u_ + uv_offset; in FinishRow()
452 io->v = dec->cache_v_ + uv_offset; in FinishRow()
/external/webp/src/enc/
Dpicture_rescale.c136 const int uv_offset = (top / 2) * pic->uv_stride + left / 2; in WebPPictureCrop() local
139 WebPCopyPlane(pic->u + uv_offset, pic->uv_stride, in WebPPictureCrop()
141 WebPCopyPlane(pic->v + uv_offset, pic->uv_stride, in WebPPictureCrop()
/external/libyuv/files/util/
Dpsnr_main.cc242 const int uv_offset = (do_swap_uv ? uv_size : 0); in UpdateMetrics() local
243 const uint8* const u_org = ch_org + y_size + uv_offset; in UpdateMetrics()
245 const uint8* const v_org = ch_org + y_size + (uv_size - uv_offset); in UpdateMetrics()