Lines Matching defs:size
27 void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size)
37 size -= 7;
45 (len + size) > s->max_payload_size ||
54 /* Write the AU header size */
66 if (size <= max_packet_size) {
68 AV_WB16(p, size * 8);
69 memcpy(s->buf_ptr, buff, size);
70 s->buf_ptr += size;
72 int au_size = size;
77 while (size > 0) {
78 len = FFMIN(size, max_packet_size);
81 ff_rtp_send_data(s1, p, len + 4, len == size);
82 size -= len;