Lines Matching defs:pixel
98 uint32_t pixel = colors[code & 3];
100 AV_WL32(dst + x * 4, pixel);
161 uint32_t pixel = colors[code & 3] | ((unsigned)alpha << 24);
164 AV_WL32(dst + x * 4, pixel);
170 /** Convert a premultiplied alpha pixel to a straight alpha pixel. */
272 uint32_t pixel;
294 pixel = colors[code & 3] | ((unsigned)alpha << 24);
296 AV_WL32(dst + x * 4, pixel);
437 uint32_t pixel = RGBA(c, c, c, 255U);
438 AV_WL32(dst + x * pix_size + y * stride, pixel);