Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
8aeec8a4
Commit
8aeec8a4
authored
Jun 29, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move --playlist-autostart to main
parent
f9c0df35
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
modules/demux/playlist/playlist.c
modules/demux/playlist/playlist.c
+0
-7
src/libvlc-module.c
src/libvlc-module.c
+6
-0
No files found.
modules/demux/playlist/playlist.c
View file @
8aeec8a4
...
@@ -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
,
...
...
src/libvlc-module.c
View file @
8aeec8a4
...
@@ -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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment