Commit e58c9db6 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

libvlc: Remove libvlc_event_(init|fini) as they were finally not needed.

parent e111c9e2
...@@ -132,8 +132,6 @@ libvlc_instance_t * libvlc_new( int argc, const char *const *argv, ...@@ -132,8 +132,6 @@ libvlc_instance_t * libvlc_new( int argc, const char *const *argv,
vlc_mutex_init(&p_new->instance_lock); vlc_mutex_init(&p_new->instance_lock);
vlc_mutex_init(&p_new->event_callback_lock); vlc_mutex_init(&p_new->event_callback_lock);
libvlc_event_init(p_new, p_e);
return p_new; return p_new;
} }
...@@ -156,8 +154,6 @@ void libvlc_release( libvlc_instance_t *p_instance ) ...@@ -156,8 +154,6 @@ void libvlc_release( libvlc_instance_t *p_instance )
vlc_mutex_lock( lock ); vlc_mutex_lock( lock );
refs = --p_instance->ref_count; refs = --p_instance->ref_count;
if( refs == 0 )
libvlc_event_fini( p_instance );
vlc_mutex_unlock( lock ); vlc_mutex_unlock( lock );
if( refs == 0 ) if( refs == 0 )
......
...@@ -56,28 +56,6 @@ group_contains_listener( libvlc_event_listeners_group_t * group, ...@@ -56,28 +56,6 @@ group_contains_listener( libvlc_event_listeners_group_t * group,
* Internal libvlc functions * Internal libvlc functions
*/ */
/**************************************************************************
* libvlc_event_init (internal) :
*
* initialization function.
**************************************************************************/
void libvlc_event_init( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
{
VLC_UNUSED(p_instance);
VLC_UNUSED(p_e);
/* Will certainly be used to install libvlc_instance event */
}
/**************************************************************************
* libvlc_event_fini (internal) :
*
* finalization function.
**************************************************************************/
void libvlc_event_fini( libvlc_instance_t *p_instance )
{
VLC_UNUSED(p_instance);
}
/************************************************************************** /**************************************************************************
* libvlc_event_manager_init (internal) : * libvlc_event_manager_init (internal) :
* *
......
...@@ -50,10 +50,6 @@ VLC_EXPORT (int, libvlc_InternalDestroy, ( libvlc_int_t *, bool ) ); ...@@ -50,10 +50,6 @@ 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,
bool, int, const char *const * ) ); bool, int, const char *const * ) );
void libvlc_event_init( libvlc_instance_t *, libvlc_exception_t * );
void libvlc_event_fini( libvlc_instance_t * );
/*************************************************************************** /***************************************************************************
* Opaque structures for libvlc API * Opaque structures for libvlc API
***************************************************************************/ ***************************************************************************/
......
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