Lines Matching refs:pixel
65 * @param pixel Fill color (optional, see below)
73 * a fill operation is achieved when 'gb' is null and pixel is >= 0
74 * a skip operation is achieved when 'gb' is null and pixel is < 0
78 int pixel, int count,
88 } else if (pixel >= 0)
89 memset(*dst, pixel, striplen);
142 #define OP(gb, pixel, count) \
143 op(&dst, dst_end, (gb), (pixel), (count), &x, avctx->width, s->frame->linesize[0])
151 int pixel;
153 pixel = bytestream2_get_byte(&gb);
154 if (OP(NULL, pixel, count)) break;
156 int pixel;
169 pixel = type == 3 ? bytestream2_get_byte(&gb) : -1;
171 if (OP(type == 2 ? &gb : NULL, pixel, count)) break;