Lines Matching refs:repeat
182 int last_symbol = 0, repeat = 0, prev_avail = 0;
209 if (repeat-- < 1) {
214 repeat = 0;
216 if (repeat >= (INT_MAX >> 8) - 1) {
217 av_log(avctx, AV_LOG_ERROR, "repeat overflow\n");
220 repeat = (repeat << 8) + bytestream2_get_byte(gB) + 1;
223 int skip = FFMIN((unsigned)repeat, dst + w - p);
224 repeat -= skip;
255 int last_symbol = 0, repeat = 0, prev_avail = 0;
336 if (repeat-- < 1) {
346 repeat = 0;
348 repeat = get_bits(gb, b);
350 repeat += (1 << b) - 1;
353 int skip = FFMIN(repeat, pal_dst + w - pp);
354 repeat -= skip;