Lines Matching refs:offset_count
188 uint32_t offset_count;
198 offset_count = BE_32(atom->data + 4);
199 if (offset_count > (atom->size - 8) / 4) {
200 fprintf(stderr, "stco offset count %"PRIu32" too big\n", offset_count);
204 context->stco_offset_count += offset_count;
207 for (pos = atom->data + 8, end = pos + offset_count * 4;
224 uint32_t offset_count;
234 offset_count = BE_32(atom->data + 4);
235 if (offset_count > (atom->size - 8) / 8) {
236 fprintf(stderr, "co64 offset count %"PRIu32" too big\n", offset_count);
240 for (pos = atom->data + 8, end = pos + offset_count * 8;
304 uint32_t offset_count;
309 offset_count = BE_32(atom->data + 4);
314 set_atom_size(context->dest, atom->header_size, atom->header_size + 8 + offset_count * 8);
318 for (pos = atom->data + 8, end = pos + offset_count * 4;