Lines Matching defs:count
71 int v, count;
94 count = ((v >> 13) + 2) << 1;
95 if (frame - frame_start < offset || frame_end - frame < count)
97 av_memcpy_backptr(frame, offset, count);
98 frame += count;
114 int v, offset, count, segments;
129 count = ((v >> 13) + 2) << 1;
130 if (frame - frame_start < offset || frame_end - frame < count)
132 av_memcpy_backptr(frame, offset, count);
133 frame += count;
151 int i, v, offset, count, segments;
167 count = ((v >> 13) + 2) << 1;
168 if (frame - frame_start < offset || frame_end - frame < count*2 + width)
170 for (i = 0; i < count; i++) {
200 int count, lines, segments;
202 count = bytestream2_get_le16(gb);
203 if (count >= height)
205 frame += width * count;
207 if (count + lines > height)
220 count = (int8_t)bytestream2_get_byte(gb);
221 if (count >= 0) {
222 if (frame - line_ptr < count)
224 if (bytestream2_get_buffer(gb, line_ptr, count) != count)
227 count = -count;
228 if (frame - line_ptr < count)
230 memset(line_ptr, bytestream2_get_byte(gb), count);
232 line_ptr += count;
243 int count, i, v, lines, segments;
279 count = (int8_t)bytestream2_get_byte(gb);
280 if (count >= 0) {
281 if (frame - line_ptr < count * 2)
283 if (bytestream2_get_buffer(gb, line_ptr, count * 2) != count * 2)
285 line_ptr += count * 2;
287 count = -count;
288 if (frame - line_ptr < count * 2)
291 for (i = 0; i < count; i++)