Lines Matching defs:size
91 unsigned int size, const char *key)
99 value = av_mallocz(size + 1);
103 ret = avio_read(s->pb, value, size);
104 if (ret < size) {
259 int size, byte, ret, offset;
270 size = frame_size[byte & 3];
272 ctx->packet_size = size;
275 ret = av_new_packet(pkt, size);
283 s->bit_rate = 8LL * size-- * st->codecpar->sample_rate * 512 / (506 * pkt->duration);
287 if (ctx->counter < size) {
294 size -= ctx->counter;
298 ctx->counter -= size;
300 ret = avio_read(s->pb, pkt->data + offset, size);
301 if (ret < size)