From: RĂ©mi Denis-Courmont Date: Sat, 23 Jan 2010 12:20:08 +0000 (+0200) Subject: Remove vlc_list_find X-Git-Tag: 1.1.0-ff~1037 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=6c1e53fa81571ea246c9f32f6fa4301eecb8fb69;p=vlc Remove vlc_list_find --- diff --git a/src/libvlc.h b/src/libvlc.h index ced230e343..bbe4681bd7 100644 --- a/src/libvlc.h +++ b/src/libvlc.h @@ -50,8 +50,6 @@ void system_End ( libvlc_int_t * ); */ #define vlc_object_signal_unlocked( obj ) -vlc_list_t *vlc_list_find( vlc_object_t *, int, int ); - /* * Threads subsystem */ diff --git a/src/misc/objects.c b/src/misc/objects.c index 2b6ed7debc..17201cec4d 100644 --- a/src/misc/objects.c +++ b/src/misc/objects.c @@ -707,52 +707,6 @@ void __vlc_object_detach( vlc_object_t *p_this ) vlc_object_release (p_parent); } - -/** - **************************************************************************** - * find a list typed objects and increment their refcount - ***************************************************************************** - * This function recursively looks for a given object type. i_mode can be one - * of FIND_PARENT, FIND_CHILD or FIND_ANYWHERE. - *****************************************************************************/ -vlc_list_t * vlc_list_find( vlc_object_t *p_this, int i_type, int i_mode ) -{ - vlc_list_t *p_list; - int i_count = 0; - - /* Look for the objects */ - switch( i_mode ) - { - case FIND_ANYWHERE: - return vlc_list_find (VLC_OBJECT(p_this->p_libvlc), i_type, FIND_CHILD); - - case FIND_CHILD: - libvlc_lock (p_this->p_libvlc); - i_count = CountChildren( p_this, i_type ); - p_list = NewList( i_count ); - - /* Check allocation was successful */ - if( p_list->i_count != i_count ) - { - libvlc_unlock (p_this->p_libvlc); - p_list->i_count = 0; - break; - } - - p_list->i_count = 0; - ListChildren( p_list, p_this, i_type ); - libvlc_unlock (p_this->p_libvlc); - break; - - default: - msg_Err( p_this, "unimplemented!" ); - p_list = NewList( 0 ); - break; - } - - return p_list; -} - /** * Gets the list of children of an objects, and increment their reference * count.