Lines Matching defs:rtsp_st
93 RTSPStream *rtsp_st;
95 rtsp_st = av_mallocz(sizeof(RTSPStream));
96 if (!rtsp_st)
98 dynarray_add(&rt->rtsp_streams, &rt->nb_rtsp_streams, rtsp_st);
100 rtsp_st->stream_index = i;
102 av_strlcpy(rtsp_st->control_url, rt->control_uri, sizeof(rtsp_st->control_url));
104 av_strlcatf(rtsp_st->control_url, sizeof(rtsp_st->control_url),
142 int ff_rtsp_tcp_write_packet(AVFormatContext *s, RTSPStream *rtsp_st)
145 AVFormatContext *rtpctx = rtsp_st->transport_priv;
167 id = rtsp_st->interleaved_max; /* RTCP */
169 id = rtsp_st->interleaved_min; /* RTP */
184 RTSPStream *rtsp_st;
217 rtsp_st = rt->rtsp_streams[pkt->stream_index];
218 rtpctx = rtsp_st->transport_priv;
226 ret = ff_rtsp_tcp_write_packet(s, rtsp_st);