Lines Matching defs:pixel
126 * is the original image width. We also do pixel format conversion at
306 * the last pixel with bpp=3 */
1094 avpriv_request_sample(avctx, "Blending with pixel format %s",
1404 uint8_t *pixel = &row[2 * s->width - 1];
1408 *pixel-- = *rowp == tcolor ? 0 : 0xff;
1409 *pixel-- = *rowp--;
1412 uint8_t *pixel = &row[4 * s->width - 1];
1416 *pixel-- = AV_RL24(rowp-2) == tcolor ? 0 : 0xff;
1417 *pixel-- = *rowp--;
1418 *pixel-- = *rowp--;
1419 *pixel-- = *rowp--;
1424 uint8_t *pixel = &row[s->bpp * (x - 1)];
1425 memmove(pixel, &row[raw_bpp * (x - 1)], raw_bpp);
1427 if (!memcmp(pixel, s->transparent_color_be, raw_bpp)) {
1428 memset(&pixel[raw_bpp], 0, byte_depth);
1430 memset(&pixel[raw_bpp], 0xff, byte_depth);