Lines Matching defs:size
72 { "buffer_size", "Send/Receive buffer size (in bytes)", OFFSET(buffer_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
78 { "pkt_size", "Maximum packet size", OFFSET(pkt_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
211 * 'pkt_size=n' : set max packet size
391 static int rtp_read(URLContext *h, uint8_t *buf, int size)
411 len = recvfrom(p[i].fd, buf, size, 0,
435 static int rtp_write(URLContext *h, const uint8_t *buf, int size)
441 if (size < 2)
456 return size;
493 ret = sendto(fd, buf, size, 0, (struct sockaddr *) source,
507 if ((ret = ffurl_write(hd, buf, size)) < 0) {
512 if ((ret_fec = ffurl_write(s->fec_hd, buf, size)) < 0) {