Lines Matching refs:rtp_ctx
30 AVFormatContext *rtp_ctx;
45 if (chain->rtp_ctx) {
46 av_write_trailer(chain->rtp_ctx);
47 avformat_free_context(chain->rtp_ctx);
58 AVFormatContext *mpegts_ctx = NULL, *rtp_ctx = NULL;
102 rtp_ctx = avformat_alloc_context();
103 if (!rtp_ctx) {
107 rtp_ctx->oformat = rtp_format;
108 st = avformat_new_stream(rtp_ctx, NULL);
116 rtp_ctx->pb = s->pb;
118 ret = avformat_write_header(rtp_ctx, &rtp_muxer_options);
123 chain->rtp_ctx = rtp_ctx;
133 avformat_free_context(rtp_ctx);
164 chain->rtp_ctx->streams[0]->time_base);
168 chain->rtp_ctx->streams[0]->time_base);
169 ret = av_write_frame(chain->rtp_ctx, local_pkt);