Lines Matching defs:size
54 #define QDM2_LIST_ADD(list, size, packet) \
56 if (size > 0) { \
57 list[size - 1].next = &list[size]; \
59 list[size].packet = packet; \
60 list[size].next = NULL; \
61 size++; \
88 unsigned int size; ///< subpacket size
135 int group_size; ///< size of frame group (16 frames per group)
136 int fft_size; ///< size of FFT, in complex numbers
137 int checksum_size; ///< size of data block, used also for checksum
142 int frame_size; ///< size of data frame
260 * Fill a QDM2SubPacket structure with packet type, size, and data pointer.
271 sub_packet->size = 0;
274 sub_packet->size = get_bits(gb, 8);
277 sub_packet->size <<= 8;
278 sub_packet->size |= get_bits(gb, 8);
289 av_log(NULL, AV_LOG_DEBUG, "Subpacket: type=%d size=%d start_offs=%x\n",
290 sub_packet->type, sub_packet->size, get_bits_count(gb) / 8);
985 init_get_bits(&gb, node->packet->data, node->packet->size * 8);
1027 init_get_bits(&gb, node->packet->data, node->packet->size * 8);
1047 length = node->packet->size * 8;
1076 length = node->packet->size * 8;
1149 init_get_bits(&gb, header.data, header.size * 8);
1185 init_get_bits(&gb, header.data, header.size * 8);
1188 if (next_index >= header.size)
1195 next_index = packet->size + get_bits_count(&gb) / 8;
1196 sub_packet_size = ((packet->size > 0xff) ? 1 : 0) + packet->size + 2;
1204 packet->size += packet_bytes - sub_packet_size;
1392 init_get_bits(&gb, packet->data, packet->size * 8);
1617 int tmp_val, tmp, size;
1629 32 size (including this field)
1633 32 size (including this field, in bytes)
1639 32 block size (=4096)
1640 32 frame size (=256) (for one channel)
1641 32 packet size (=1300)
1643 32 size (including this field, in bytes)
1675 size = bytestream2_get_be32(&gb);
1677 if (size > bytestream2_get_bytes_left(&gb)) {
1678 av_log(avctx, AV_LOG_ERROR, "extradata size too small, %i < %i\n",
1679 bytestream2_get_bytes_left(&gb), size);
1683 av_log(avctx, AV_LOG_DEBUG, "size: %d\n", size);
1705 av_log(avctx, AV_LOG_ERROR, "data block size invalid (%u)\n", s->checksum_size);
1756 av_log(avctx, AV_LOG_ERROR, "FFT size %d not power of 2.\n", s->fft_size);
1845 int buf_size = avpkt->size;