Lines Matching refs:rtp_ctx
43 RTPMuxContext *rtp_ctx = ctx->priv_data;
46 rtp_ctx->timestamp = rtp_ctx->cur_timestamp;
70 rtp_ctx->buf[0] = 1; /* sbit=0, ebit=0, i=0, v=1 */
71 rtp_ctx->buf[1] = 0; /* gobn=0, mbap=0 */
72 rtp_ctx->buf[2] = 0; /* quant=0, hmvd=5 */
73 rtp_ctx->buf[3] = 0; /* vmvd=0 */
83 cur_frame_size = FFMIN(rtp_ctx->max_payload_size - RTP_H261_HEADER_SIZE, frame_size);
96 memcpy(&rtp_ctx->buf[RTP_H261_HEADER_SIZE], frame_buf, cur_frame_size);
97 ff_rtp_send_data(ctx, rtp_ctx->buf, RTP_H261_HEADER_SIZE + cur_frame_size, last_packet_of_frame);