Lines Matching defs:outcnt
55 int outcnt = 0, maxcnt;
94 while (outcnt < maxcnt && buf_end - 2 >= buf) {
99 AV_WN16A(&out[2 * outcnt], code); // rgb555 pixel coded directly
100 outcnt++;
118 start = (outcnt + offsets[oidx]) % maxcnt;
120 if (maxcnt - start < count || maxcnt - outcnt < count)
129 memcpy(out + 2 * outcnt, prev + 2 * start, 2 * count);
144 if (outcnt < offset || maxcnt - outcnt < count)
147 av_memcpy_backptr(out + 2 * outcnt, 2 * offset, 2 * count);
149 outcnt += count;
153 if (outcnt - maxcnt)
154 av_log(avctx, AV_LOG_DEBUG, "frame finished with %d diff\n", outcnt - maxcnt);