Searched refs:a_stride (Results 1 – 5 of 5) sorted by relevance
/external/webp/src/dec/ |
D | buffer.c | 36 const int a_size = buf->a_stride * height; in CheckDecBuffer() 45 ok &= (buf->a_stride >= width); in CheckDecBuffer() 67 int uv_stride = 0, a_stride = 0; in AllocateBuffer() local 79 a_stride = w; in AllocateBuffer() 80 a_size = (uint64_t)a_stride * h; in AllocateBuffer() 110 buf->a_stride = a_stride; in AllocateBuffer()
|
D | io.c | 381 uint8_t* dst = buf->a + io->mb_y * buf->a_stride; in EmitAlphaYUV() 387 dst += buf->a_stride; in EmitAlphaYUV() 585 buf->a, out_width, out_height, buf->a_stride, in InitYUVRescaler()
|
/external/webp/src/enc/ |
D | picture.c | 35 int a_width, a_stride; in WebPPictureAlloc() local 60 a_stride = a_width; in WebPPictureAlloc() 63 a_size = (uint64_t)a_stride * height; in WebPPictureAlloc() 76 picture->a_stride = a_stride; in WebPPictureAlloc() 146 memcpy(dst->a + y * dst->a_stride, in WebPPictureCopy() 147 src->a + y * src->a_stride, src->width); in WebPPictureCopy() 197 memcpy(tmp.a + y * tmp.a_stride, in WebPPictureCrop() 198 pic->a + (top + y) * pic->a_stride + left, width); in WebPPictureCrop() 352 RescalePlane(pic->a, prev_width, prev_height, pic->a_stride, in WebPPictureRescale() 353 tmp.a, width, height, tmp.a_stride, work); in WebPPictureRescale() [all …]
|
/external/webp/include/webp/ |
D | encode.h | 174 int a_stride; // stride of the alpha plane member
|
D | decode.h | 132 int a_stride; // alpha stride member
|