32 for (pos = start + bpp; count <
FFMIN(127, len); pos += bpp, count++) {
33 if (same != !memcmp(pos - bpp, pos, bpp)) {
38 if (bpp == 1 && count + 1 <
FFMIN(127, len) && *pos != *(pos + 1))
53 int w,
int add_rep,
int xor_rep,
int add_raw,
int xor_raw)
58 for (x = 0; x <
w; x +=
count) {
61 if (out + bpp + 1 > outbuf + out_size)
64 *out++ = (count ^ xor_rep) + add_rep;
65 memcpy(out, ptr, bpp);
70 if (out + bpp * count >= outbuf + out_size)
73 *out++ = (count ^ xor_raw) + add_raw;
74 memcpy(out, ptr, bpp * count);
int ff_rle_count_pixels(const uint8_t *start, int len, int bpp, int same)
Count up to 127 consecutive pixels which are either all the same or all differ from the previous and ...
Libavcodec external API header.
common internal and external API header
int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *ptr, int bpp, int w, int add_rep, int xor_rep, int add_raw, int xor_raw)
RLE compress the row, with maximum size of out_size.