Lines Matching defs:count
225 int count = FFMIN(pixel_count, width - current_x);
226 memcpy(palette_plane + index, pixel_buffer, count);
227 pixel_count -= count;
228 index += count;
229 pixel_buffer += count;
230 current_x += count;
274 int count = FFMIN3(pixel_count, width - curframe_x,
278 prev_palette_plane + prevframe_index, count);
279 pixel_count -= count;
280 curframe_index += count;
281 prevframe_index += count;
282 curframe_x += count;
283 prevframe_x += count;