Home
last modified time | relevance | path

Searched defs:WebPPicture (Results 1 – 1 of 1) sorted by relevance

/external/webp/include/webp/
Dencode.h114 typedef struct WebPPicture WebPPicture; // main structure for I/O typedef
167 struct WebPPicture { struct
169 WebPEncCSP colorspace; // colorspace: should be YUV420 for now (=Y'CbCr).
170 int width, height; // dimensions.
171 uint8_t *y, *u, *v; // pointers to luma/chroma planes.
172 int y_stride, uv_stride; // luma/chroma strides.
173 uint8_t *a; // pointer to the alpha plane
174 int a_stride; // stride of the alpha plane
177 WebPWriterFunction writer; // can be NULL
201 WEBP_EXTERN(int) WebPPictureInitInternal(WebPPicture* const, int); argument