Commit 875531f7 authored by Pierre Ynard's avatar Pierre Ynard

rtp sout: destroy mutex

parent 10a05481
...@@ -553,6 +553,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -553,6 +553,7 @@ static int Open( vlc_object_t *p_this )
msg_Err( p_stream, "unsupported muxer type for RTP (only TS/PS)" ); msg_Err( p_stream, "unsupported muxer type for RTP (only TS/PS)" );
free( psz ); free( psz );
vlc_mutex_destroy( &p_sys->lock_sdp ); vlc_mutex_destroy( &p_sys->lock_sdp );
vlc_mutex_destroy( &p_sys->lock_ts );
vlc_mutex_destroy( &p_sys->lock_es ); vlc_mutex_destroy( &p_sys->lock_es );
free( p_sys->psz_vod_session ); free( p_sys->psz_vod_session );
free( p_sys->psz_destination ); free( p_sys->psz_destination );
...@@ -569,6 +570,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -569,6 +570,7 @@ static int Open( vlc_object_t *p_this )
msg_Err( p_stream, "cannot create muxer" ); msg_Err( p_stream, "cannot create muxer" );
sout_AccessOutDelete( p_sys->p_grab ); sout_AccessOutDelete( p_sys->p_grab );
vlc_mutex_destroy( &p_sys->lock_sdp ); vlc_mutex_destroy( &p_sys->lock_sdp );
vlc_mutex_destroy( &p_sys->lock_ts );
vlc_mutex_destroy( &p_sys->lock_es ); vlc_mutex_destroy( &p_sys->lock_es );
free( p_sys->psz_vod_session ); free( p_sys->psz_vod_session );
free( p_sys->psz_destination ); free( p_sys->psz_destination );
...@@ -582,6 +584,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -582,6 +584,7 @@ static int Open( vlc_object_t *p_this )
sout_MuxDelete( p_sys->p_mux ); sout_MuxDelete( p_sys->p_mux );
sout_AccessOutDelete( p_sys->p_grab ); sout_AccessOutDelete( p_sys->p_grab );
vlc_mutex_destroy( &p_sys->lock_sdp ); vlc_mutex_destroy( &p_sys->lock_sdp );
vlc_mutex_destroy( &p_sys->lock_ts );
vlc_mutex_destroy( &p_sys->lock_es ); vlc_mutex_destroy( &p_sys->lock_es );
free( p_sys->psz_vod_session ); free( p_sys->psz_vod_session );
free( p_sys->psz_destination ); free( p_sys->psz_destination );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment