Lines Matching defs:size
95 // size of the XING/LAME data, starting from the Xing tag
111 uint32_t audio_size; // total size of the audio data
119 int32_t size;
228 avio_wb32(dyn_ctx, 0x01 | 0x02 | 0x04 | 0x08); // frames / size / TOC / vbr scale
230 mp3->size = mpah.frame_size;
236 avio_wb32(dyn_ctx, 0); // size
296 mp3->size += pkt->size;
299 mp3->bag[mp3->pos] = mp3->size;
302 /* shrink table to half size by throwing away each second bag. */
308 /* adjust current position to half of table size. */
320 if (pkt->data && pkt->size >= 4) {
334 av_log(s, AV_LOG_WARNING, "Audio packet of size %d (starting with %08"PRIX32"...) "
335 "is invalid, writing it anyway.\n", pkt->size, h);
342 if (base + 4 <= pkt->size) {
352 if (base + 4 <= pkt->size && MKBETAG('V','B','R','I') == AV_RB32(pkt->data + base))
361 mp3->audio_size += pkt->size;
363 mp3->audio_crc, pkt->data, pkt->size);
414 AV_WB32(mp3->xing_frame + mp3->xing_offset + 12, mp3->size);
420 int seek_point = 256LL * mp3->bag[j] / mp3->size;