Lines Matching refs:mtu
61 size_t mtu; member
76 static bool init_send_pipeline(pa_rtp_context *c, int fd, uint8_t payload, size_t mtu, const pa_sam… in init_send_pipeline() argument
112 …g_object_set(appsrc, "caps", caps, "is-live", TRUE, "blocksize", mtu, "format", 3 /* time */, NULL… in init_send_pipeline()
113 g_object_set(pay, "mtu", mtu, NULL); in init_send_pipeline()
170 pa_rtp_context* pa_rtp_context_new_send(int fd, uint8_t payload, size_t mtu, const pa_sample_spec *… in pa_rtp_context_new_send() argument
181 c->mtu = mtu - RTP_HEADER_SIZE; in pa_rtp_context_new_send()
182 c->send_buf = pa_xmalloc(c->mtu); in pa_rtp_context_new_send()
190 if (!init_send_pipeline(c, fd, payload, mtu, ss)) in pa_rtp_context_new_send()
244 if (pa_memblockq_get_length(q) < c->mtu) in pa_rtp_send()
262 size_t k = n + chunk.length > c->mtu ? c->mtu - n : chunk.length; in pa_rtp_send()
274 if (r < 0 || n >= c->mtu) { in pa_rtp_send()
306 if (r < 0 || pa_memblockq_get_length(q) < c->mtu) in pa_rtp_send()