Home
last modified time | relevance | path

Searched refs:transport_priv (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavformat/
Drtsp.c766 if (rtsp_st->transport_priv) { in ff_rtsp_undo_setup()
768 AVFormatContext *rtpctx = rtsp_st->transport_priv; in ff_rtsp_undo_setup()
779 ff_rdt_parse_close(rtsp_st->transport_priv); in ff_rtsp_undo_setup()
781 ff_rtp_parse_close(rtsp_st->transport_priv); in ff_rtsp_undo_setup()
783 rtsp_st->transport_priv = NULL; in ff_rtsp_undo_setup()
844 int ret = ff_rtp_chain_mux_open((AVFormatContext **)&rtsp_st->transport_priv, in ff_rtsp_open_transport_ctx()
852 st->time_base = ((AVFormatContext*)rtsp_st->transport_priv)->streams[0]->time_base; in ff_rtsp_open_transport_ctx()
856 rtsp_st->transport_priv = ff_rdt_parse_open(s, st->index, in ff_rtsp_open_transport_ctx()
860 rtsp_st->transport_priv = ff_rtp_parse_open(s, st, in ff_rtsp_open_transport_ctx()
864 if (!rtsp_st->transport_priv) { in ff_rtsp_open_transport_ctx()
[all …]
Drtspenc.c145 AVFormatContext *rtpctx = rtsp_st->transport_priv; in ff_rtsp_tcp_write_packet()
218 rtpctx = rtsp_st->transport_priv; in rtsp_write_packet()
Drtspdec.c287 if (rtsp_st->transport_priv) { in rtsp_read_setup()
289 ff_rdt_parse_close(rtsp_st->transport_priv); in rtsp_read_setup()
291 ff_rtp_parse_close(rtsp_st->transport_priv); in rtsp_read_setup()
292 rtsp_st->transport_priv = NULL; in rtsp_read_setup()
550 RTPDemuxContext *rtpctx = rtsp_st->transport_priv; in rtsp_read_play()
578 RTPDemuxContext *rtpctx = rtsp_st->transport_priv; in rtsp_read_play()
Drtsp.h445 void *transport_priv; /**< RTP/RDT parse context if input, RTP AVFormatContext if output */ member