Home
last modified time | relevance | path

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

/external/webp/src/dec/
Dframe.c254 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; in FinishRow() local
256 uint8_t* const udst = dec->cache_u_ - uvsize + uv_offset; in FinishRow()
257 uint8_t* const vdst = dec->cache_v_ - uvsize + uv_offset; in FinishRow()
284 io->u = dec->cache_u_ + uv_offset; in FinishRow()
285 io->v = dec->cache_v_ + uv_offset; in FinishRow()
812 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; in ReconstructRow() local
814 uint8_t* const u_out = dec->cache_u_ + mb_x * 8 + uv_offset; in ReconstructRow()
815 uint8_t* const v_out = dec->cache_v_ + mb_x * 8 + uv_offset; in ReconstructRow()
/external/webp/src/enc/
Dpicture_rescale.c146 const int uv_offset = (top / 2) * pic->uv_stride + left / 2; in WebPPictureCrop() local
149 CopyPlane(pic->u + uv_offset, pic->uv_stride, in WebPPictureCrop()
151 CopyPlane(pic->v + uv_offset, pic->uv_stride, in WebPPictureCrop()