]> git.sesse.net Git - vlc/commitdiff
Correctly release sout object when it has been kept
authorRafaël Carré <funman@videolan.org>
Sun, 20 Apr 2008 19:26:49 +0000 (21:26 +0200)
committerRafaël Carré <funman@videolan.org>
Sun, 20 Apr 2008 19:26:49 +0000 (21:26 +0200)
src/libvlc-common.c

index a3bb83b8d428cd7305562a0c2bc3da803664b2db..bd432a96c927552ca1fe3c0352cea31f7766f784 100644 (file)
@@ -943,6 +943,7 @@ int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
     vout_thread_t      * p_vout = NULL;
     aout_instance_t    * p_aout = NULL;
     announce_handler_t * p_announce = NULL;
+    sout_instance_t    * p_sout = NULL;
 
     /* Ask the interfaces to stop and destroy them */
     msg_Dbg( p_libvlc, "removing all interfaces" );
@@ -977,6 +978,15 @@ int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
         aout_Delete( p_aout );
     }
 
+    p_sout = vlc_object_find( p_libvlc, VLC_OBJECT_SOUT, FIND_CHILD );
+    if( p_sout )
+    {
+        msg_Dbg( p_sout, "removing kept stream output" );
+        vlc_object_detach( (vlc_object_t*)p_sout );
+        vlc_object_release( (vlc_object_t*)p_sout );
+        sout_DeleteInstance( p_sout );
+    }
+
     /* Destroy VLM if created in libvlc_InternalInit */
     if( p_libvlc->p_vlm )
     {