Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavformat/
Drtsp.c769 if (rtsp_st->transport_priv) { in ff_rtsp_undo_setup()
771 AVFormatContext *rtpctx = rtsp_st->transport_priv; in ff_rtsp_undo_setup()
782 ff_rdt_parse_close(rtsp_st->transport_priv); in ff_rtsp_undo_setup()
784 ff_rtp_parse_close(rtsp_st->transport_priv); in ff_rtsp_undo_setup()
786 rtsp_st->transport_priv = NULL; in ff_rtsp_undo_setup()
847 int ret = ff_rtp_chain_mux_open((AVFormatContext **)&rtsp_st->transport_priv, in ff_rtsp_open_transport_ctx()
855 st->time_base = ((AVFormatContext*)rtsp_st->transport_priv)->streams[0]->time_base; in ff_rtsp_open_transport_ctx()
859 rtsp_st->transport_priv = ff_rdt_parse_open(s, st->index, in ff_rtsp_open_transport_ctx()
863 rtsp_st->transport_priv = ff_rtp_parse_open(s, st, in ff_rtsp_open_transport_ctx()
867 if (!rtsp_st->transport_priv) { in ff_rtsp_open_transport_ctx()
[all …]
Drtspenc.c144 AVFormatContext *rtpctx = rtsp_st->transport_priv; in ff_rtsp_tcp_write_packet()
214 rtpctx = rtsp_st->transport_priv; in rtsp_write_packet()
Drtspdec.c278 if (rtsp_st->transport_priv) { in rtsp_read_setup()
280 ff_rdt_parse_close(rtsp_st->transport_priv); in rtsp_read_setup()
282 ff_rtp_parse_close(rtsp_st->transport_priv); in rtsp_read_setup()
283 rtsp_st->transport_priv = NULL; in rtsp_read_setup()
541 RTPDemuxContext *rtpctx = rtsp_st->transport_priv; in rtsp_read_play()
569 RTPDemuxContext *rtpctx = rtsp_st->transport_priv; in rtsp_read_play()
Drtsp.h446 void *transport_priv; /**< RTP/RDT parse context if input, RTP AVFormatContext if output */ member