Lines Matching refs:byte_count
314 uint32_t byte_count;
366 state->byte_count = parse_block_data_size(block->size) - 12;
426 state->byte_count = parse_block_data_size(block->size) - 2;
560 uint64_t *byte_count)
586 *byte_count = state->byte_count;
617 uint64_t byte_count)
622 build_block_data_size(block->size, 12 + byte_count);
662 uint64_t byte_count)
669 build_block_data_size(block->size, 2 + byte_count);
682 uint64_t byte_count)
699 frames_per_second, byte_count);
709 frames_per_second, byte_count);
719 uint64_t *byte_count)
764 return write_data_blocks(cntr, *frames_per_second, *byte_count);
775 static int write_data_size(struct container_context *cntr, uint64_t byte_count)
794 if (byte_count > cntr->max_size - offset)
795 byte_count = cntr->max_size;
797 byte_count += offset;
798 build_block_data_size(size_field, byte_count);