]> git.sesse.net Git - vlc/commitdiff
Instantiate VLM if vlm-conf option is used. You can now use VLM without having to...
authorAntoine Cellerier <dionoea@videolan.org>
Sun, 30 Mar 2008 20:47:47 +0000 (22:47 +0200)
committerAntoine Cellerier <dionoea@videolan.org>
Sun, 30 Mar 2008 20:49:40 +0000 (22:49 +0200)
src/libvlc-common.c

index d2c06d52cb2e0d70fb31e29292c5a14476fe6f43..a0ba3cd49b2c13f0827ee2e97071fb9cf9b49fe6 100644 (file)
@@ -93,6 +93,8 @@
 
 #include "playlist/playlist_internal.h"
 
+#include <vlc_vlm.h>
+
 /*****************************************************************************
  * The evil global variable. We handle it with care, don't worry.
  *****************************************************************************/
@@ -766,6 +768,15 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
     }
     free( psz_modules );
 
+    /* Initialize VLM if vlm-conf is specified */
+    psz_parser = config_GetPsz( p_libvlc, "vlm-conf" );
+    if( psz_parser && *psz_parser )
+    {
+        if( !vlm_New( p_libvlc ) )
+            msg_Err( p_libvlc, "VLM initialization failed" );
+    }
+    free( psz_parser );
+
     /*
      * Load background interfaces
      */
@@ -923,6 +934,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;
+    vlm_t              * p_vlm = NULL;
 
     /* Ask the interfaces to stop and destroy them */
     msg_Dbg( p_libvlc, "removing all interfaces" );
@@ -986,6 +998,11 @@ int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
     vlc_mutex_destroy( &p_libvlc->p_stats->lock );
     FREENULL( p_libvlc->p_stats );
 
+    /* Destroy VLM if created in libvlc_InternalInit */
+    p_vlm = vlc_object_find( p_libvlc, VLC_OBJECT_VLM, FIND_ANYWHERE );
+    if( p_vlm )
+        vlm_Delete( p_vlm );
+
     return VLC_SUCCESS;
 }