Commit 8d58d014 authored by Anthony Loiseau's avatar Anthony Loiseau Committed by Rémi Denis-Courmont

Tag some more options as safe

Add:
- http-user-agent
- ps-trust-timestamps
- vout-event
And some rtsp options (username, passwd)
Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 53b5e315
......@@ -115,6 +115,7 @@ vlc_module_begin ()
change_safe()
add_string( "http-user-agent", COPYRIGHT_MESSAGE , NULL, AGENT_TEXT,
AGENT_LONGTEXT, true )
change_safe()
add_bool( "http-reconnect", 0, NULL, RECONNECT_TEXT,
RECONNECT_LONGTEXT, true )
add_bool( "http-continuous", 0, NULL, CONTINUOUS_TEXT,
......
......@@ -141,8 +141,10 @@ vlc_module_begin ()
change_safe()
add_string( "rtsp-user", NULL, NULL, USER_TEXT,
USER_LONGTEXT, true )
change_safe()
add_password( "rtsp-pwd", NULL, NULL, PASS_TEXT,
PASS_LONGTEXT, true )
change_safe()
vlc_module_end ()
......
......@@ -63,6 +63,7 @@ vlc_module_begin ()
add_bool( "ps-trust-timestamps", true, NULL, TIME_TEXT,
TIME_LONGTEXT, true )
change_safe ()
add_submodule ()
set_description( N_("MPEG-PS demuxer") )
......
......@@ -1577,6 +1577,7 @@ vlc_module_begin ()
add_bool( "quiet-synchro", 0, NULL, QUIET_SYNCHRO_TEXT,
QUIET_SYNCHRO_LONGTEXT, true )
add_integer( "vout-event", 1, NULL, VOUT_EVENT_TEXT, VOUT_EVENT_LONGTEXT, true )
change_safe()
change_integer_list( pi_vout_event_values, ppsz_vout_event_descriptions, NULL )
add_deprecated_alias( "x11-event" ) /* renamed since 1.0.0 */
#ifndef __APPLE__
......
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