Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
0b21fc27
Commit
0b21fc27
authored
Mar 30, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup private and volatile option
Volatile/unsaveable options are now always internal implicitly.
parent
b04dd1e9
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
27 additions
and
39 deletions
+27
-39
include/vlc_plugin.h
include/vlc_plugin.h
+7
-4
modules/access/cdda.c
modules/access/cdda.c
+3
-3
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+1
-1
modules/gui/skins2/src/skin_main.cpp
modules/gui/skins2/src/skin_main.cpp
+1
-1
modules/video_output/xcb/window.c
modules/video_output/xcb/window.c
+1
-1
src/libvlc-module.c
src/libvlc-module.c
+14
-28
src/modules/modules.c
src/modules/modules.c
+0
-1
No files found.
include/vlc_plugin.h
View file @
0b21fc27
...
@@ -417,16 +417,19 @@ enum vlc_module_properties
...
@@ -417,16 +417,19 @@ enum vlc_module_properties
vlc_config_set (p_config, VLC_CONFIG_ADD_ACTION, \
vlc_config_set (p_config, VLC_CONFIG_ADD_ACTION, \
(vlc_callback_t)(pf_action), (const char *)(text));
(vlc_callback_t)(pf_action), (const char *)(text));
#define change_internal() \
vlc_config_set (p_config, VLC_CONFIG_PRIVATE);
#define change_need_restart() \
#define change_need_restart() \
vlc_config_set (p_config, VLC_CONFIG_RESTART);
vlc_config_set (p_config, VLC_CONFIG_RESTART);
#define change_autosave() \
#define change_autosave() \
vlc_config_set (p_config, VLC_CONFIG_PERSISTENT);
vlc_config_set (p_config, VLC_CONFIG_PERSISTENT);
#define change_unsaveable() \
/* For options that are saved but hidden from the preferences panel */
#define change_private() \
vlc_config_set (p_config, VLC_CONFIG_PRIVATE);
/* For options that cannot be saved in the configuration */
#define change_volatile() \
change_private() \
vlc_config_set (p_config, VLC_CONFIG_VOLATILE);
vlc_config_set (p_config, VLC_CONFIG_VOLATILE);
#define change_safe() \
#define change_safe() \
...
...
modules/access/cdda.c
View file @
0b21fc27
...
@@ -77,11 +77,11 @@ vlc_module_begin ()
...
@@ -77,11 +77,11 @@ vlc_module_begin ()
change_safe
()
change_safe
()
add_integer
(
"cdda-track"
,
0
,
NULL
,
NULL
,
NULL
,
true
)
add_integer
(
"cdda-track"
,
0
,
NULL
,
NULL
,
NULL
,
true
)
change_
internal
()
change_
volatile
()
add_integer
(
"cdda-first-sector"
,
-
1
,
NULL
,
NULL
,
NULL
,
true
)
add_integer
(
"cdda-first-sector"
,
-
1
,
NULL
,
NULL
,
NULL
,
true
)
change_
internal
()
change_
volatile
()
add_integer
(
"cdda-last-sector"
,
-
1
,
NULL
,
NULL
,
NULL
,
true
)
add_integer
(
"cdda-last-sector"
,
-
1
,
NULL
,
NULL
,
NULL
,
true
)
change_
internal
()
change_
volatile
()
#ifdef HAVE_LIBCDDB
#ifdef HAVE_LIBCDDB
add_string
(
"cddb-server"
,
"freedb.freedb.org"
,
NULL
,
N_
(
"CDDB Server"
),
add_string
(
"cddb-server"
,
"freedb.freedb.org"
,
NULL
,
N_
(
"CDDB Server"
),
...
...
modules/gui/qt4/qt4.cpp
View file @
0b21fc27
...
@@ -226,7 +226,7 @@ vlc_module_begin ()
...
@@ -226,7 +226,7 @@ vlc_module_begin ()
add_bool
(
"qt-privacy-ask"
,
true
,
NULL
,
PRIVACY_TEXT
,
PRIVACY_TEXT
,
add_bool
(
"qt-privacy-ask"
,
true
,
NULL
,
PRIVACY_TEXT
,
PRIVACY_TEXT
,
false
)
false
)
change_
internal
()
change_
private
()
add_integer
(
"qt-fullscreen-screennumber"
,
-
1
,
NULL
,
FULLSCREEN_NUMBER_TEXT
,
add_integer
(
"qt-fullscreen-screennumber"
,
-
1
,
NULL
,
FULLSCREEN_NUMBER_TEXT
,
FULLSCREEN_NUMBER_LONGTEXT
,
false
);
FULLSCREEN_NUMBER_LONGTEXT
,
false
);
...
...
modules/gui/skins2/src/skin_main.cpp
View file @
0b21fc27
...
@@ -561,7 +561,7 @@ vlc_module_begin ()
...
@@ -561,7 +561,7 @@ vlc_module_begin ()
add_string
(
"skins2-config"
,
""
,
NULL
,
SKINS2_CONFIG
,
SKINS2_CONFIG_LONG
,
add_string
(
"skins2-config"
,
""
,
NULL
,
SKINS2_CONFIG
,
SKINS2_CONFIG_LONG
,
true
)
true
)
change_autosave
()
change_autosave
()
change_
internal
()
change_
private
()
#ifdef WIN32
#ifdef WIN32
add_bool
(
"skins2-systray"
,
false
,
onSystrayChange
,
SKINS2_SYSTRAY
,
add_bool
(
"skins2-systray"
,
false
,
onSystrayChange
,
SKINS2_SYSTRAY
,
SKINS2_SYSTRAY_LONG
,
false
);
SKINS2_SYSTRAY_LONG
,
false
);
...
...
modules/video_output/xcb/window.c
View file @
0b21fc27
...
@@ -76,7 +76,7 @@ vlc_module_begin ()
...
@@ -76,7 +76,7 @@ vlc_module_begin ()
set_callbacks
(
EmOpen
,
EmClose
)
set_callbacks
(
EmOpen
,
EmClose
)
add_integer
(
"drawable-xid"
,
0
,
NULL
,
XID_TEXT
,
XID_LONGTEXT
,
true
)
add_integer
(
"drawable-xid"
,
0
,
NULL
,
XID_TEXT
,
XID_LONGTEXT
,
true
)
change_
unsaveab
le
()
change_
volati
le
()
vlc_module_end
()
vlc_module_end
()
...
...
src/libvlc-module.c
View file @
0b21fc27
...
@@ -2077,8 +2077,7 @@ vlc_module_begin ()
...
@@ -2077,8 +2077,7 @@ vlc_module_begin ()
ONEINSTANCE_LONGTEXT
,
true
)
ONEINSTANCE_LONGTEXT
,
true
)
add_bool
(
"started-from-file"
,
0
,
NULL
,
STARTEDFROMFILE_TEXT
,
add_bool
(
"started-from-file"
,
0
,
NULL
,
STARTEDFROMFILE_TEXT
,
STARTEDFROMFILE_LONGTEXT
,
true
)
STARTEDFROMFILE_LONGTEXT
,
true
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_bool
(
"one-instance-when-started-from-file"
,
1
,
NULL
,
add_bool
(
"one-instance-when-started-from-file"
,
1
,
NULL
,
ONEINSTANCEWHENSTARTEDFROMFILE_TEXT
,
ONEINSTANCEWHENSTARTEDFROMFILE_TEXT
,
ONEINSTANCEWHENSTARTEDFROMFILE_LONGTEXT
,
true
)
ONEINSTANCEWHENSTARTEDFROMFILE_LONGTEXT
,
true
)
...
@@ -2746,51 +2745,38 @@ vlc_module_begin ()
...
@@ -2746,51 +2745,38 @@ vlc_module_begin ()
add_bool
(
"help"
,
false
,
NULL
,
HELP_TEXT
,
""
,
false
)
add_bool
(
"help"
,
false
,
NULL
,
HELP_TEXT
,
""
,
false
)
change_short
(
'h'
)
change_short
(
'h'
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_bool
(
"full-help"
,
false
,
NULL
,
FULL_HELP_TEXT
,
""
,
false
)
add_bool
(
"full-help"
,
false
,
NULL
,
FULL_HELP_TEXT
,
""
,
false
)
change_short
(
'H'
)
change_short
(
'H'
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_bool
(
"longhelp"
,
false
,
NULL
,
LONGHELP_TEXT
,
""
,
false
)
add_bool
(
"longhelp"
,
false
,
NULL
,
LONGHELP_TEXT
,
""
,
false
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_bool
(
"help-verbose"
,
false
,
NULL
,
HELP_VERBOSE_TEXT
,
""
,
add_bool
(
"help-verbose"
,
false
,
NULL
,
HELP_VERBOSE_TEXT
,
""
,
false
)
false
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_bool
(
"list"
,
false
,
NULL
,
LIST_TEXT
,
""
,
false
)
add_bool
(
"list"
,
false
,
NULL
,
LIST_TEXT
,
""
,
false
)
change_short
(
'l'
)
change_short
(
'l'
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_bool
(
"list-verbose"
,
false
,
NULL
,
LIST_VERBOSE_TEXT
,
""
,
add_bool
(
"list-verbose"
,
false
,
NULL
,
LIST_VERBOSE_TEXT
,
""
,
false
)
false
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_string
(
"module"
,
NULL
,
NULL
,
MODULE_TEXT
,
""
,
false
)
add_string
(
"module"
,
NULL
,
NULL
,
MODULE_TEXT
,
""
,
false
)
change_short
(
'p'
)
change_short
(
'p'
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_bool
(
"ignore-config"
,
true
,
NULL
,
IGNORE_CONFIG_TEXT
,
""
,
false
)
add_bool
(
"ignore-config"
,
true
,
NULL
,
IGNORE_CONFIG_TEXT
,
""
,
false
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_obsolete_bool
(
"save-config"
)
add_obsolete_bool
(
"save-config"
)
add_bool
(
"reset-config"
,
false
,
NULL
,
RESET_CONFIG_TEXT
,
""
,
false
)
add_bool
(
"reset-config"
,
false
,
NULL
,
RESET_CONFIG_TEXT
,
""
,
false
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_bool
(
"reset-plugins-cache"
,
false
,
NULL
,
add_bool
(
"reset-plugins-cache"
,
false
,
NULL
,
RESET_PLUGINS_CACHE_TEXT
,
""
,
false
)
RESET_PLUGINS_CACHE_TEXT
,
""
,
false
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_bool
(
"version"
,
false
,
NULL
,
VERSION_TEXT
,
""
,
false
)
add_bool
(
"version"
,
false
,
NULL
,
VERSION_TEXT
,
""
,
false
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_string
(
"config"
,
NULL
,
NULL
,
CONFIG_TEXT
,
""
,
false
)
add_string
(
"config"
,
NULL
,
NULL
,
CONFIG_TEXT
,
""
,
false
)
change_internal
()
change_volatile
()
change_unsaveable
()
add_bool
(
"version"
,
false
,
NULL
,
VERSION_TEXT
,
""
,
false
)
add_bool
(
"version"
,
false
,
NULL
,
VERSION_TEXT
,
""
,
false
)
change_internal
()
change_volatile
()
change_unsaveable
()
/* Usage (mainly useful for cmd line stuff) */
/* Usage (mainly useful for cmd line stuff) */
/* add_usage_hint( PLAYLIST_USAGE ) */
/* add_usage_hint( PLAYLIST_USAGE ) */
...
...
src/modules/modules.c
View file @
0b21fc27
...
@@ -730,7 +730,6 @@ module_config_t *module_config_get( const module_t *module, unsigned *restrict p
...
@@ -730,7 +730,6 @@ module_config_t *module_config_get( const module_t *module, unsigned *restrict p
{
{
const
module_config_t
*
item
=
module
->
p_config
+
i
;
const
module_config_t
*
item
=
module
->
p_config
+
i
;
if
(
item
->
b_internal
/* internal option */
if
(
item
->
b_internal
/* internal option */
||
item
->
b_unsaveable
/* non-modifiable option */
||
item
->
b_removed
/* removed option */
)
||
item
->
b_removed
/* removed option */
)
continue
;
continue
;
...
...
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