Searched defs:pic2 (Results 1 - 1 of 1) sorted by relevance

/external/webp/src/enc/
H A Dpicture.c916 int WebPPictureDistortion(const WebPPicture* pic1, const WebPPicture* pic2, argument
922 if (pic1 == NULL || pic2 == NULL ||
923 pic1->width != pic2->width || pic1->height != pic2->height ||
924 pic1->y == NULL || pic2->y == NULL ||
925 pic1->u == NULL || pic2->u == NULL ||
926 pic1->v == NULL || pic2->v == NULL ||
931 if (pic1->use_argb == 1 || pic1->use_argb != pic2->use_argb) {
936 if (has_alpha != !!(pic2->colorspace & WEBP_CSP_ALPHA_BIT) ||
937 (has_alpha && (pic1->a == NULL || pic2
[all...]

Completed in 20 milliseconds