Commit 8aeec8a4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Move --playlist-autostart to main

parent f9c0df35
...@@ -42,10 +42,6 @@ ...@@ -42,10 +42,6 @@
/***************************************************************************** /*****************************************************************************
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
#define AUTOSTART_TEXT N_( "Auto start" )
#define AUTOSTART_LONGTEXT N_( "Automatically start playing the playlist " \
"content once it's loaded." )
#define SHOW_ADULT_TEXT N_( "Show shoutcast adult content" ) #define SHOW_ADULT_TEXT N_( "Show shoutcast adult content" )
#define SHOW_ADULT_LONGTEXT N_( "Show NC17 rated video streams when " \ #define SHOW_ADULT_LONGTEXT N_( "Show NC17 rated video streams when " \
"using shoutcast video playlists." ) "using shoutcast video playlists." )
...@@ -59,9 +55,6 @@ vlc_module_begin () ...@@ -59,9 +55,6 @@ vlc_module_begin ()
set_category( CAT_INPUT ) set_category( CAT_INPUT )
set_subcategory( SUBCAT_INPUT_DEMUX ) set_subcategory( SUBCAT_INPUT_DEMUX )
add_bool( "playlist-autostart", true,
AUTOSTART_TEXT, AUTOSTART_LONGTEXT, false )
add_obsolete_integer( "parent-item" ) /* removed since 1.1.0 */ add_obsolete_integer( "parent-item" ) /* removed since 1.1.0 */
add_bool( "playlist-skip-ads", true, add_bool( "playlist-skip-ads", true,
......
...@@ -1272,6 +1272,10 @@ static const char *const ppsz_albumart_descriptions[] = ...@@ -1272,6 +1272,10 @@ static const char *const ppsz_albumart_descriptions[] =
#define PAP_LONGTEXT N_( \ #define PAP_LONGTEXT N_( \
"Pause each item in the playlist on the last frame." ) "Pause each item in the playlist on the last frame." )
#define AUTOSTART_TEXT N_( "Auto start" )
#define AUTOSTART_LONGTEXT N_( "Automatically start playing the playlist " \
"content once it's loaded." )
#define ML_TEXT N_("Use media library") #define ML_TEXT N_("Use media library")
#define ML_LONGTEXT N_( \ #define ML_LONGTEXT N_( \
"The media library is automatically saved and reloaded each time you " \ "The media library is automatically saved and reloaded each time you " \
...@@ -2100,6 +2104,8 @@ vlc_module_begin () ...@@ -2100,6 +2104,8 @@ vlc_module_begin ()
change_safe() change_safe()
add_bool( "play-and-pause", 0, PAP_TEXT, PAP_LONGTEXT, true ) add_bool( "play-and-pause", 0, PAP_TEXT, PAP_LONGTEXT, true )
change_safe() change_safe()
add_bool( "playlist-autostart", true,
AUTOSTART_TEXT, AUTOSTART_LONGTEXT, false )
add_bool( "media-library", 0, ML_TEXT, ML_LONGTEXT, false ) add_bool( "media-library", 0, ML_TEXT, ML_LONGTEXT, false )
#if defined( MEDIA_LIBRARY ) #if defined( MEDIA_LIBRARY )
add_bool( "load-media-library-on-startup", 1, LOAD_ML_TEXT, add_bool( "load-media-library-on-startup", 1, LOAD_ML_TEXT,
......
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