Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
1bccb7df
Commit
1bccb7df
authored
Jan 23, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add global options for netsync and showintf and hide them from interface (Closes:#508)
parent
3814df3b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
10 deletions
+31
-10
modules/control/netsync.c
modules/control/netsync.c
+3
-5
modules/control/showintf.c
modules/control/showintf.c
+1
-3
src/libvlc.c
src/libvlc.c
+10
-0
src/libvlc.h
src/libvlc.h
+17
-2
No files found.
modules/control/netsync.c
View file @
1bccb7df
...
...
@@ -65,10 +65,10 @@ static mtime_t GetClockRef( intf_thread_t *, mtime_t );
"the master client used for the network synchronisation." )
vlc_module_begin
();
set_shortname
(
_
(
"Net
s
ync"
));
set_shortname
(
_
(
"Net
work S
ync"
));
set_description
(
_
(
"Network synchronisation"
)
);
set_category
(
CAT_
INTERFACE
);
set_subcategory
(
SUBCAT_
INTERFACE_CONTROL
);
set_category
(
CAT_
ADVANCED
);
set_subcategory
(
SUBCAT_
ADVANCED_MISC
);
add_bool
(
"netsync-master"
,
0
,
NULL
,
NETSYNC_TEXT
,
NETSYNC_LONGTEXT
,
VLC_TRUE
);
...
...
@@ -96,8 +96,6 @@ static int Activate( vlc_object_t *p_this )
{
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_this
;
msg_Info
(
p_intf
,
"Using the netsync interface module..."
);
p_intf
->
p_sys
=
malloc
(
sizeof
(
intf_sys_t
)
);
if
(
!
p_intf
->
p_sys
)
{
...
...
modules/control/showintf.c
View file @
1bccb7df
...
...
@@ -64,10 +64,8 @@ static int MouseEvent( vlc_object_t *, char const *,
vlc_module_begin
();
set_shortname
(
"Showintf"
);
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_CONTROL
);
add_integer
(
"showintf-threshold"
,
10
,
NULL
,
THRESHOLD_TEXT
,
THRESHOLD_LONGTEXT
,
VLC_TRUE
);
set_description
(
_
(
"
Interface showing control interfac
e"
)
);
set_description
(
_
(
"
Show interface with mous
e"
)
);
set_capability
(
"interface"
,
0
);
set_callbacks
(
E_
(
Open
),
E_
(
Close
)
);
...
...
src/libvlc.c
View file @
1bccb7df
...
...
@@ -786,6 +786,16 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
AddIntfInternal
(
0
,
"logger"
,
VLC_FALSE
,
VLC_FALSE
,
1
,
&
psz_logmode
);
}
if
(
config_GetInt
(
p_vlc
,
"show-intf"
)
==
1
)
{
VLC_AddIntf
(
0
,
"showintf"
,
VLC_FALSE
,
VLC_FALSE
);
}
if
(
config_GetInt
(
p_vlc
,
"network-synchronisation"
)
==
1
)
{
VLC_AddIntf
(
0
,
"netsync"
,
VLC_FALSE
,
VLC_FALSE
);
}
/*
* FIXME: kludge to use a p_vlc-local variable for the Mozilla plugin
*/
...
...
src/libvlc.h
View file @
1bccb7df
...
...
@@ -100,6 +100,11 @@ static char *ppsz_snap_formats[] =
"show all the available options, including those that most users should " \
"never touch.")
#define SHOWINTF_TEXT N_("Show interface with mouse")
#define SHOWINTF_LONGTEXT N_( \
"If this enabled, the interface will be shown when you move the mouse to "\
"the edge of the screen in fullscreen mode." )
#define AOUT_CAT_LONGTEXT N_( \
"These options allow you to modify the behavior of the audio " \
"subsystem, and to add audio filters which can be used for " \
...
...
@@ -345,6 +350,11 @@ static char *ppsz_align_descriptions[] =
"Allows you to enable/disable the input clock synchronisation for " \
"real-time sources.")
#define NETSYNC_TEXT N_("Network synchronisation" )
#define NETSYNC_LONGTEXT N_( "This allows you to remotely " \
"synchronise clocks for server and client. The detailed settings " \
"are available in Advanced / Others / Network Sync" )
static
int
pi_clock_values
[]
=
{
-
1
,
0
,
1
};
static
char
*
ppsz_clock_descriptions
[]
=
{
N_
(
"Default"
),
N_
(
"Disable"
),
N_
(
"Enable"
)
};
...
...
@@ -1256,6 +1266,9 @@ vlc_module_begin();
CLOCK_SYNCHRO_LONGTEXT
,
VLC_TRUE
);
change_integer_list
(
pi_clock_values
,
ppsz_clock_descriptions
,
0
);
add_bool
(
"network-synchronisation"
,
VLC_FALSE
,
NULL
,
NETSYNC_TEXT
,
NETSYNC_LONGTEXT
,
VLC_TRUE
);
/* Decoder options */
add_category_hint
(
N_
(
"Decoders"
),
CODEC_CAT_LONGTEXT
,
VLC_TRUE
);
add_string
(
"codec"
,
NULL
,
NULL
,
CODEC_TEXT
,
...
...
@@ -1414,12 +1427,11 @@ vlc_module_begin();
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_GENERAL
);
add_category_hint
(
N_
(
"Interface"
),
INTF_CAT_LONGTEXT
,
VLC_FALSE
);
set_section
(
N_
(
"Interface
module
"
),
NULL
);
set_section
(
N_
(
"Interface
s
"
),
NULL
);
add_module_cat
(
"intf"
,
SUBCAT_INTERFACE_GENERAL
,
NULL
,
NULL
,
INTF_TEXT
,
INTF_LONGTEXT
,
VLC_FALSE
);
change_short
(
'I'
);
set_section
(
N_
(
"Extra interface modules"
),
NULL
);
add_module_list_cat
(
"extraintf"
,
SUBCAT_INTERFACE_GENERAL
,
NULL
,
NULL
,
EXTRAINTF_TEXT
,
EXTRAINTF_LONGTEXT
,
VLC_FALSE
);
...
...
@@ -1437,6 +1449,9 @@ vlc_module_begin();
add_bool
(
"advanced"
,
0
,
NULL
,
ADVANCED_TEXT
,
ADVANCED_LONGTEXT
,
VLC_FALSE
);
add_bool
(
"show-intf"
,
VLC_FALSE
,
NULL
,
SHOWINTF_TEXT
,
SHOWINTF_LONGTEXT
,
VLC_FALSE
);
set_subcategory
(
SUBCAT_INTERFACE_CONTROL
);
add_module_list_cat
(
"control"
,
SUBCAT_INTERFACE_CONTROL
,
NULL
,
NULL
,
CONTROL_TEXT
,
CONTROL_LONGTEXT
,
VLC_FALSE
);
...
...
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