Searched defs:WebPPicture (Results 1 – 1 of 1) sorted by relevance
114 typedef struct WebPPicture WebPPicture; // main structure for I/O typedef167 struct WebPPicture { struct169 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 plane174 int a_stride; // stride of the alpha plane177 WebPWriterFunction writer; // can be NULL201 WEBP_EXTERN(int) WebPPictureInitInternal(WebPPicture* const, int); argument