|
|
|
@ -474,16 +474,15 @@ int ff_sdp_parse(AVFormatContext *s, const char *content) |
|
|
|
|
} |
|
|
|
|
#endif /* CONFIG_RTPDEC */ |
|
|
|
|
|
|
|
|
|
/* close and free RTSP streams */ |
|
|
|
|
void ff_rtsp_close_streams(AVFormatContext *s) |
|
|
|
|
void ff_rtsp_undo_setup(AVFormatContext *s) |
|
|
|
|
{ |
|
|
|
|
RTSPState *rt = s->priv_data; |
|
|
|
|
int i; |
|
|
|
|
RTSPStream *rtsp_st; |
|
|
|
|
|
|
|
|
|
for (i = 0; i < rt->nb_rtsp_streams; i++) { |
|
|
|
|
rtsp_st = rt->rtsp_streams[i]; |
|
|
|
|
if (rtsp_st) { |
|
|
|
|
RTSPStream *rtsp_st = rt->rtsp_streams[i]; |
|
|
|
|
if (!rtsp_st) |
|
|
|
|
continue; |
|
|
|
|
if (rtsp_st->transport_priv) { |
|
|
|
|
if (s->oformat) { |
|
|
|
|
AVFormatContext *rtpctx = rtsp_st->transport_priv; |
|
|
|
@ -504,8 +503,24 @@ void ff_rtsp_close_streams(AVFormatContext *s) |
|
|
|
|
else if (CONFIG_RTPDEC) |
|
|
|
|
rtp_parse_close(rtsp_st->transport_priv); |
|
|
|
|
} |
|
|
|
|
rtsp_st->transport_priv = NULL; |
|
|
|
|
if (rtsp_st->rtp_handle) |
|
|
|
|
url_close(rtsp_st->rtp_handle); |
|
|
|
|
rtsp_st->rtp_handle = NULL; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* close and free RTSP streams */ |
|
|
|
|
void ff_rtsp_close_streams(AVFormatContext *s) |
|
|
|
|
{ |
|
|
|
|
RTSPState *rt = s->priv_data; |
|
|
|
|
int i; |
|
|
|
|
RTSPStream *rtsp_st; |
|
|
|
|
|
|
|
|
|
ff_rtsp_undo_setup(s); |
|
|
|
|
for (i = 0; i < rt->nb_rtsp_streams; i++) { |
|
|
|
|
rtsp_st = rt->rtsp_streams[i]; |
|
|
|
|
if (rtsp_st) { |
|
|
|
|
if (rtsp_st->dynamic_handler && rtsp_st->dynamic_protocol_context) |
|
|
|
|
rtsp_st->dynamic_handler->close( |
|
|
|
|
rtsp_st->dynamic_protocol_context); |
|
|
|
|