Home | History | Annotate | Download | only in dec

Lines Matching refs:green

36 //  1. green + length prefix codes + color cache codes,
42 GREEN = 0,
322 // The huffman data is stored in red and green bytes.
712 code = ReadSymbol(&htree_group->htrees_[GREEN], br); \
714 int red, green, blue, alpha; \
716 green = code; \
720 *src = STORE_PIXEL(alpha, red, green, blue); \
797 static WEBP_INLINE uint32_t GetARGBPixel(int alpha, int red, int green,
799 return (alpha << 24) | (red << 16) | (green << 8) | blue;
802 static WEBP_INLINE uint8_t GetAlphaPixel(int alpha, int red, int green,
807 return green; // Alpha value is stored in green channel.
1098 // Extract alpha (which is stored in the green plane).