]> git.sesse.net Git - vlc/blobdiff - modules/services_discovery/podcast.c
adjustments to playlist API changes
[vlc] / modules / services_discovery / podcast.c
index 17f9af4fd001bba97223580d86bce27923f1dc63..6c4584134c60a1f0baeb83992575ab1b3739ae93 100644 (file)
 #include <vlc_network.h>
 #include <assert.h>
 
-#include <errno.h>                                                 /* ENOMEM */
-
 #ifdef HAVE_UNISTD_H
 #    include <unistd.h>
 #endif
-#ifdef HAVE_SYS_TIME_H
-#    include <sys/time.h>
-#endif
 
 /************************************************************************
  * Macros and definitions
@@ -58,6 +53,8 @@
 static int  Open ( vlc_object_t * );
 static void Close( vlc_object_t * );
 
+VLC_SD_PROBE_HELPER("podcast", "Podcasts", SD_CAT_INTERNET)
+
 #define URLS_TEXT N_("Podcast URLs list")
 #define URLS_LONGTEXT N_("Enter the list of podcasts to retrieve, " \
                          "separated by '|' (pipe)." )
@@ -75,6 +72,8 @@ vlc_module_begin ()
     set_capability( "services_discovery", 0 )
     set_callbacks( Open, Close )
 
+    VLC_SD_PROBE_SUBMODULE
+
 vlc_module_end ()