]> git.sesse.net Git - vlc/commitdiff
podcast: probing support
authorRémi Denis-Courmont <remi@remlab.net>
Mon, 21 Dec 2009 18:20:09 +0000 (20:20 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 21 Dec 2009 19:42:37 +0000 (21:42 +0200)
modules/services_discovery/podcast.c

index 17f9af4fd001bba97223580d86bce27923f1dc63..a75f7131eb722f7364a324a24c0a40b841233632 100644 (file)
@@ -58,6 +58,8 @@
 static int  Open ( vlc_object_t * );
 static void Close( vlc_object_t * );
 
+VLC_SD_PROBE_HELPER("podcast", N_("Podcasts"))
+
 #define URLS_TEXT N_("Podcast URLs list")
 #define URLS_LONGTEXT N_("Enter the list of podcasts to retrieve, " \
                          "separated by '|' (pipe)." )
@@ -75,6 +77,8 @@ vlc_module_begin ()
     set_capability( "services_discovery", 0 )
     set_callbacks( Open, Close )
 
+    VLC_SD_PROBE_SUBMODULE
+
 vlc_module_end ()