Lines Matching refs:rtp_ctx
28 RTPMuxContext *rtp_ctx = ctx->priv_data;
31 rtp_ctx->timestamp = rtp_ctx->cur_timestamp;
32 rtp_ctx->buf_ptr = rtp_ctx->buf;
35 *rtp_ctx->buf_ptr++ = 0x08;
38 len = FFMIN(size, rtp_ctx->max_payload_size - RTP_VP9_DESC_REQUIRED_SIZE);
42 rtp_ctx->buf[0] |= 0x04;
45 memcpy(rtp_ctx->buf_ptr, buf, len);
46 ff_rtp_send_data(ctx, rtp_ctx->buf, len + RTP_VP9_DESC_REQUIRED_SIZE, size == len);
52 rtp_ctx->buf[0] &= ~0x08;