Searched refs:WebPCopyPlane (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | picture_rescale_enc.c | 67 WebPCopyPlane(src->y, src->y_stride, in WebPPictureCopy() 69 WebPCopyPlane(src->u, src->uv_stride, dst->u, dst->uv_stride, in WebPPictureCopy() 71 WebPCopyPlane(src->v, src->uv_stride, dst->v, dst->uv_stride, in WebPPictureCopy() 74 WebPCopyPlane(src->a, src->a_stride, in WebPPictureCopy() 78 WebPCopyPlane((const uint8_t*)src->argb, 4 * src->argb_stride, in WebPPictureCopy() 141 WebPCopyPlane(pic->y + y_offset, pic->y_stride, in WebPPictureCrop() 143 WebPCopyPlane(pic->u + uv_offset, pic->uv_stride, in WebPPictureCrop() 145 WebPCopyPlane(pic->v + uv_offset, pic->uv_stride, in WebPPictureCrop() 150 WebPCopyPlane(pic->a + a_offset, pic->a_stride, in WebPPictureCrop() 156 WebPCopyPlane(src, pic->argb_stride * 4, (uint8_t*)tmp.argb, in WebPPictureCrop()
|
D | alpha_enc.c | 333 WebPCopyPlane(pic->a, pic->a_stride, quant_alpha, width, width, height); in EncodeAlpha()
|
/third_party/skia/third_party/externals/libwebp/src/dec/ |
D | buffer_dec.c | 282 WebPCopyPlane(src->rgba, src->stride, dst->rgba, dst->stride, in WebPCopyDecBufferPixels() 288 WebPCopyPlane(src->y, src->y_stride, dst->y, dst->y_stride, in WebPCopyDecBufferPixels() 290 WebPCopyPlane(src->u, src->u_stride, dst->u, dst->u_stride, in WebPCopyDecBufferPixels() 292 WebPCopyPlane(src->v, src->v_stride, dst->v, dst->v_stride, in WebPCopyDecBufferPixels() 295 WebPCopyPlane(src->a, src->a_stride, dst->a, dst->a_stride, in WebPCopyDecBufferPixels()
|
D | io_dec.c | 35 WebPCopyPlane(io->y, io->y_stride, y_dst, buf->y_stride, mb_w, mb_h); in EmitYUV() 36 WebPCopyPlane(io->u, io->uv_stride, u_dst, buf->u_stride, uv_w, uv_h); in EmitYUV() 37 WebPCopyPlane(io->v, io->uv_stride, v_dst, buf->v_stride, uv_w, uv_h); in EmitYUV()
|
/third_party/skia/third_party/externals/libwebp/src/utils/ |
D | utils.c | 234 void WebPCopyPlane(const uint8_t* src, int src_stride, in WebPCopyPlane() function 249 WebPCopyPlane((uint8_t*)src->argb, 4 * src->argb_stride, (uint8_t*)dst->argb, in WebPCopyPixels()
|
D | utils.h | 172 WEBP_EXTERN void WebPCopyPlane(const uint8_t* src, int src_stride,
|
/third_party/skia/third_party/externals/libwebp/examples/ |
D | gifdec.c | 34 extern void WebPCopyPlane(const uint8_t* src, int src_stride, 274 WebPCopyPlane((uint8_t*)src, (int)(4 * src_stride), in GIFDisposeFrame()
|