]> git.sesse.net Git - vlc/commitdiff
vlc_sd_GetNames: use probe
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 19 Dec 2009 23:27:59 +0000 (01:27 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 21 Dec 2009 19:42:32 +0000 (21:42 +0200)
src/playlist/services_discovery.c

index 53a314be44e19788e4df8cf103835233933a6798..35547c87bd387c42f68edbf7d43f3a8e6c2f2316 100644 (file)
 #include "vlc_playlist.h"
 #include "vlc_events.h"
 #include <vlc_services_discovery.h>
+#include <vlc_probe.h>
 #include "playlist_internal.h"
 #include "../libvlc.h"
 
+#undef vlc_sd_GetNames
+
+typedef struct
+{
+    char *name;
+    char *longname;
+} vlc_sd_probe_t;
+
+/**
+ * Gets the list of available services discovery plugins.
+ */
+char **vlc_sd_GetNames (vlc_object_t *obj, char ***pppsz_longnames)
+{
+    size_t count;
+    vlc_sd_probe_t *tab = vlc_probe (obj, "services probe", &count);
+
+    if (count == 0)
+    {
+        free (tab);
+        return NULL;
+    }
+
+    char **names = malloc (sizeof(char *) * (count + 1));
+    char **longnames = malloc (sizeof(char *) * (count + 1));
+
+    if (unlikely (names == NULL || longnames == NULL))
+        abort();
+    for( size_t i = 0; i < count; i++ )
+    {
+        names[i] = tab[i].name;
+        longnames[i] = tab[i].longname;
+    }
+    free (tab);
+    names[count] = longnames[count] = NULL;
+    *pppsz_longnames = longnames;
+    return names;
+}
+
+
 struct vlc_sd_internal_t
 {
     /* the playlist items for category and onelevel */
@@ -50,17 +90,6 @@ static void services_discovery_Destructor ( vlc_object_t *p_obj );
  * That's how the playlist get's Service Discovery information
  */
 
-#undef vlc_sd_GetNames
-
-/**
- * Gets the list of available services discovery plugins.
- */
-char **vlc_sd_GetNames( vlc_object_t *obj, char ***pppsz_longnames )
-{
-    return module_GetModulesNamesForCapability( "services_discovery",
-                                                pppsz_longnames );
-}
-
 /***********************************************************************
  * Create
  ***********************************************************************/