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
40caaae0
Commit
40caaae0
authored
May 31, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc_InternalAddIntf: remove useless options
parent
9ae47b93
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
18 deletions
+14
-18
src/control/core.c
src/control/core.c
+1
-1
src/control/libvlc_internal.h
src/control/libvlc_internal.h
+1
-2
src/libvlc-common.c
src/libvlc-common.c
+12
-15
No files found.
src/control/core.c
View file @
40caaae0
...
...
@@ -169,7 +169,7 @@ void libvlc_release( libvlc_instance_t *p_instance )
void
libvlc_add_intf
(
libvlc_instance_t
*
p_i
,
const
char
*
name
,
libvlc_exception_t
*
p_e
)
{
if
(
libvlc_InternalAddIntf
(
p_i
->
p_libvlc_int
,
name
,
true
,
0
,
NULL
)
)
if
(
libvlc_InternalAddIntf
(
p_i
->
p_libvlc_int
,
name
,
true
)
)
RAISEVOID
(
"Interface initialization failed"
);
}
...
...
src/control/libvlc_internal.h
View file @
40caaae0
...
...
@@ -47,8 +47,7 @@ VLC_EXPORT (int, libvlc_InternalInit, ( libvlc_int_t *, int, const char *ppsz_ar
VLC_EXPORT
(
int
,
libvlc_InternalCleanup
,
(
libvlc_int_t
*
)
);
VLC_EXPORT
(
int
,
libvlc_InternalDestroy
,
(
libvlc_int_t
*
,
bool
)
);
VLC_EXPORT
(
int
,
libvlc_InternalAddIntf
,
(
libvlc_int_t
*
,
const
char
*
,
bool
,
int
,
const
char
*
const
*
)
);
VLC_EXPORT
(
int
,
libvlc_InternalAddIntf
,
(
libvlc_int_t
*
,
const
char
*
,
bool
)
);
/***************************************************************************
* Opaque structures for libvlc API
...
...
src/libvlc-common.c
View file @
40caaae0
...
...
@@ -806,7 +806,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
if
(
psz_temp
)
{
sprintf
(
psz_temp
,
"%s,none"
,
psz_module
);
libvlc_InternalAddIntf
(
p_libvlc
,
psz_temp
,
false
,
0
,
NULL
);
libvlc_InternalAddIntf
(
p_libvlc
,
psz_temp
,
false
);
free
(
psz_temp
);
}
}
...
...
@@ -816,18 +816,18 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
/*
* Always load the hotkeys interface if it exists
*/
libvlc_InternalAddIntf
(
p_libvlc
,
"hotkeys,none"
,
false
,
0
,
NULL
);
libvlc_InternalAddIntf
(
p_libvlc
,
"hotkeys,none"
,
false
);
#ifdef HAVE_DBUS_3
/* loads dbus control interface if in one-instance mode
* we do it only when playlist exists, because dbus module needs it */
if
(
config_GetInt
(
p_libvlc
,
"one-instance"
)
>
0
)
libvlc_InternalAddIntf
(
p_libvlc
,
"dbus,none"
,
false
,
0
,
NULL
);
libvlc_InternalAddIntf
(
p_libvlc
,
"dbus,none"
,
false
);
/* Prevents the power management daemon from suspending the system
* when VLC is active */
if
(
config_GetInt
(
p_libvlc
,
"inhibit"
)
>
0
)
libvlc_InternalAddIntf
(
p_libvlc
,
"inhibit,none"
,
false
,
0
,
NULL
);
libvlc_InternalAddIntf
(
p_libvlc
,
"inhibit,none"
,
false
);
#endif
/*
...
...
@@ -837,20 +837,20 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
#ifdef HAVE_X11_XLIB_H
if
(
config_GetInt
(
p_libvlc
,
"disable-screensaver"
)
)
{
libvlc_InternalAddIntf
(
p_libvlc
,
"screensaver,none"
,
false
,
0
,
NULL
);
libvlc_InternalAddIntf
(
p_libvlc
,
"screensaver,none"
,
false
);
}
#endif
if
(
config_GetInt
(
p_libvlc
,
"file-logging"
)
>
0
)
{
libvlc_InternalAddIntf
(
p_libvlc
,
"logger,none"
,
false
,
0
,
NULL
);
libvlc_InternalAddIntf
(
p_libvlc
,
"logger,none"
,
false
);
}
#ifdef HAVE_SYSLOG_H
if
(
config_GetInt
(
p_libvlc
,
"syslog"
)
>
0
)
{
char
*
logmode
=
var_CreateGetString
(
p_libvlc
,
"logmode"
);
var_SetString
(
p_libvlc
,
"logmode"
,
"syslog"
);
libvlc_InternalAddIntf
(
p_libvlc
,
"logger,none"
,
false
,
0
,
NULL
);
libvlc_InternalAddIntf
(
p_libvlc
,
"logger,none"
,
false
);
if
(
logmode
)
{
...
...
@@ -864,12 +864,12 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
if
(
config_GetInt
(
p_libvlc
,
"show-intf"
)
>
0
)
{
libvlc_InternalAddIntf
(
p_libvlc
,
"showintf,none"
,
false
,
0
,
NULL
);
libvlc_InternalAddIntf
(
p_libvlc
,
"showintf,none"
,
false
);
}
if
(
config_GetInt
(
p_libvlc
,
"network-synchronisation"
)
>
0
)
{
libvlc_InternalAddIntf
(
p_libvlc
,
"netsync,none"
,
false
,
0
,
NULL
);
libvlc_InternalAddIntf
(
p_libvlc
,
"netsync,none"
,
false
);
}
#ifdef WIN32
...
...
@@ -1104,10 +1104,8 @@ int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, bool b_release )
/**
* Add an interface plugin and run it
*/
int
libvlc_InternalAddIntf
(
libvlc_int_t
*
p_libvlc
,
char
const
*
psz_module
,
bool
b_play
,
int
i_options
,
const
char
*
const
*
ppsz_options
)
int
libvlc_InternalAddIntf
(
libvlc_int_t
*
p_libvlc
,
char
const
*
psz_module
,
bool
b_play
)
{
int
i_err
;
intf_thread_t
*
p_intf
=
NULL
;
...
...
@@ -1133,8 +1131,7 @@ int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc,
}
/* Try to create the interface */
p_intf
=
intf_Create
(
p_libvlc
,
psz_module
?
psz_module
:
"$intf"
,
i_options
,
ppsz_options
);
p_intf
=
intf_Create
(
p_libvlc
,
psz_module
?
psz_module
:
"$intf"
,
0
,
NULL
);
if
(
p_intf
==
NULL
)
{
msg_Err
(
p_libvlc
,
"interface
\"
%s
\"
initialization failed"
,
...
...
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