Lines Matching defs:count
55 int val, count, x, start = bytestream2_tell_p(pbc);
63 for (x = 0; x < w; x += count) {
65 count = ff_rle_count_pixels(src, w - x, bpp, 1);
66 if (count > 1) {
71 bytestream2_put(pbc, count);
76 count = ff_rle_count_pixels(src, w - x, bpp, 0);
77 if (bytestream2_get_bytes_left_p(pbc) < bpp * (count + 1))
80 bytestream2_put(pbc, count + 0x80);
81 for (i = 0; i < count; i++) {
87 src += count * bpp;