Home
last modified time | relevance | path

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

/external/webp/src/dec/
Dframe.c134 const int uv_offset = dec->cache_id_ * 8 * dec->cache_uv_stride_; in VP8StoreBlock() local
136 uint8_t* const udst = dec->cache_u_ + dec->mb_x_ * 8 + uv_offset; in VP8StoreBlock()
137 uint8_t* const vdst = dec->cache_v_ + dec->mb_x_ * 8 + uv_offset; in VP8StoreBlock()
172 const int uv_offset = ctx->id_ * 8 * dec->cache_uv_stride_; in FinishRow() local
174 uint8_t* const udst = dec->cache_u_ - uvsize + uv_offset; in FinishRow()
175 uint8_t* const vdst = dec->cache_v_ - uvsize + uv_offset; in FinishRow()
193 io->u = dec->cache_u_ + uv_offset; in FinishRow()
194 io->v = dec->cache_v_ + uv_offset; in FinishRow()
/external/chromium/webkit/glue/media/
Dvideo_renderer_impl.cc274 size_t uv_offset = (video_frame->stride(media::VideoFrame::kUPlane) * in FastPaint() local
279 video_frame->data(media::VideoFrame::kUPlane) + uv_offset; in FastPaint()
281 video_frame->data(media::VideoFrame::kVPlane) + uv_offset; in FastPaint()
/external/webp/src/enc/
Dpicture.c327 const int uv_offset = (top / 2) * pic->uv_stride + left / 2; in WebPPictureCrop() local
330 CopyPlane(pic->u + uv_offset, pic->uv_stride, in WebPPictureCrop()
332 CopyPlane(pic->v + uv_offset, pic->uv_stride, in WebPPictureCrop()