vlc | branch: master | Sébastien Escudier <[email protected]> | Mon Mar 21 10:34:55 2011 +0100| [71119a76c500604fa2858eea1c211fe2b0374b7a] | committer: Sébastien Escudier
rtsp RollOverTcp : close the stream before deleting tracks. Same problem than in 1d4c5a496b8b6d21c20ccb7598216195069f346e > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=71119a76c500604fa2858eea1c211fe2b0374b7a --- modules/demux/live555.cpp | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp index 723a02d..9bf7359 100644 --- a/modules/demux/live555.cpp +++ b/modules/demux/live555.cpp @@ -1575,6 +1575,10 @@ static int RollOverTcp( demux_t *p_demux ) var_SetBool( p_demux, "rtsp-tcp", true ); /* We close the old RTSP session */ + p_sys->rtsp->sendTeardownCommand( *p_sys->ms, NULL ); + Medium::close( p_sys->ms ); + RTSPClient::close( p_sys->rtsp ); + for( i = 0; i < p_sys->i_track; i++ ) { live_track_t *tk = p_sys->track[i]; @@ -1589,10 +1593,6 @@ static int RollOverTcp( demux_t *p_demux ) if( p_sys->i_track ) free( p_sys->track ); if( p_sys->p_out_asf ) stream_Delete( p_sys->p_out_asf ); - p_sys->rtsp->sendTeardownCommand( *p_sys->ms, NULL ); - Medium::close( p_sys->ms ); - RTSPClient::close( p_sys->rtsp ); - p_sys->ms = NULL; p_sys->rtsp = NULL; p_sys->track = NULL; _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
