Commit 220742ef authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

mediadirs: dummy probing support

Maybe we should check the directories do exist first?
parent 2c421865
...@@ -61,6 +61,8 @@ OPEN_MODULE( Picture ) ...@@ -61,6 +61,8 @@ OPEN_MODULE( Picture )
#undef OPEN_MODULE #undef OPEN_MODULE
static int vlc_sd_probe_Open( vlc_object_t * );
vlc_module_begin () vlc_module_begin ()
set_category( CAT_PLAYLIST ) set_category( CAT_PLAYLIST )
set_subcategory( SUBCAT_PLAYLIST_SD ) set_subcategory( SUBCAT_PLAYLIST_SD )
...@@ -85,6 +87,7 @@ vlc_module_begin () ...@@ -85,6 +87,7 @@ vlc_module_begin ()
set_callbacks( OpenPicture, Close ) set_callbacks( OpenPicture, Close )
add_shortcut( "picture_dir" ) add_shortcut( "picture_dir" )
VLC_SD_PROBE_SUBMODULE
vlc_module_end () vlc_module_end ()
...@@ -347,3 +350,12 @@ enum type_e fileType( services_discovery_t *p_sd, const char* psz_file ) ...@@ -347,3 +350,12 @@ enum type_e fileType( services_discovery_t *p_sd, const char* psz_file )
free( psz_dir ); free( psz_dir );
return i_ret; return i_ret;
} }
static int vlc_sd_probe_Open( vlc_object_t *obj )
{
vlc_probe_t *probe = (vlc_probe_t *)obj;
vlc_sd_probe_Add( probe, "video_dir", N_("My Videos") );
vlc_sd_probe_Add( probe, "audio_dir", N_("My Music") );
return vlc_sd_probe_Add( probe, "picture_dir", N_("My Pictures") );
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment