[vlc-devel] commit: libvlc_InternalAddInft: Remove unused b_block parameter ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sat May 31 12:15:57 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sat May 31 13:14:18 2008 +0300| [06a986a5f375bc21a107349bd05548ea2853af3f]
libvlc_InternalAddInft: Remove unused b_block parameter
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=06a986a5f375bc21a107349bd05548ea2853af3f
---
src/control/core.c | 2 +-
src/control/libvlc_internal.h | 2 +-
src/libvlc-common.c | 27 ++++++++++-----------------
3 files changed, 12 insertions(+), 19 deletions(-)
diff --git a/src/control/core.c b/src/control/core.c
index ed332e2..6a804ed 100644
--- a/src/control/core.c
+++ b/src/control/core.c
@@ -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, false, true, 0, NULL ) )
+ if( libvlc_InternalAddIntf( p_i->p_libvlc_int, name, true, 0, NULL ) )
RAISEVOID( "Interface initialization failed" );
}
diff --git a/src/control/libvlc_internal.h b/src/control/libvlc_internal.h
index fa4c68b..68f7b1c 100644
--- a/src/control/libvlc_internal.h
+++ b/src/control/libvlc_internal.h
@@ -47,7 +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,
+VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *,
bool, int, const char *const * ) );
/***************************************************************************
diff --git a/src/libvlc-common.c b/src/libvlc-common.c
index 8ebb597..18edd09 100644
--- a/src/libvlc-common.c
+++ b/src/libvlc-common.c
@@ -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, false, 0, NULL );
+ libvlc_InternalAddIntf( p_libvlc, psz_temp, false, 0, NULL );
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, false, 0, NULL );
+ libvlc_InternalAddIntf( p_libvlc, "hotkeys,none", false, 0, NULL );
#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, false, 0, NULL );
+ libvlc_InternalAddIntf( p_libvlc, "dbus,none", false, 0, NULL );
/* 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, false, 0, NULL );
+ libvlc_InternalAddIntf( p_libvlc, "inhibit,none", false, 0, NULL );
#endif
/*
@@ -837,31 +837,31 @@ 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, false, 0, NULL );
+ libvlc_InternalAddIntf( p_libvlc, "screensaver,none", false, 0, NULL );
}
#endif
if( config_GetInt( p_libvlc, "file-logging" ) > 0 )
{
- libvlc_InternalAddIntf( p_libvlc, "logger,none", false, false, 0, NULL );
+ libvlc_InternalAddIntf( p_libvlc, "logger,none", false, 0, NULL );
}
#ifdef HAVE_SYSLOG_H
if( config_GetInt( p_libvlc, "syslog" ) > 0 )
{
const char *psz_logmode = "logmode=syslog";
- libvlc_InternalAddIntf( p_libvlc, "logger,none", false, false,
+ libvlc_InternalAddIntf( p_libvlc, "logger,none", false,
1, &psz_logmode );
}
#endif
if( config_GetInt( p_libvlc, "show-intf" ) > 0 )
{
- libvlc_InternalAddIntf( p_libvlc, "showintf,none", false, false, 0, NULL );
+ libvlc_InternalAddIntf( p_libvlc, "showintf,none", false, 0, NULL );
}
if( config_GetInt( p_libvlc, "network-synchronisation") > 0 )
{
- libvlc_InternalAddIntf( p_libvlc, "netsync,none", false, false, 0, NULL );
+ libvlc_InternalAddIntf( p_libvlc, "netsync,none", false, 0, NULL );
}
#ifdef WIN32
@@ -1098,7 +1098,7 @@ int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, bool b_release )
*/
int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc,
char const *psz_module,
- bool b_block, bool b_play,
+ bool b_play,
int i_options, const char *const *ppsz_options )
{
int i_err;
@@ -1148,13 +1148,6 @@ int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc,
return i_err;
}
- if( b_block )
- {
- vlc_thread_join( p_intf );
- vlc_object_detach( p_intf );
- vlc_object_release( p_intf );
- }
-
return VLC_SUCCESS;
};
More information about the vlc-devel
mailing list