X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fcontrol%2Flibvlc_internal.h;h=fe2f0e548464dedf385297346957a7d3f497c31d;hb=e038c5268f243761f3d3b63def32fda573ce1e4d;hp=d382fe185fd3451094b4f889cdb2f4e80433be5a;hpb=a1eb826dcd331dd41cba9b06008beb813212ba9a;p=vlc diff --git a/src/control/libvlc_internal.h b/src/control/libvlc_internal.h index d382fe185f..fe2f0e5484 100644 --- a/src/control/libvlc_internal.h +++ b/src/control/libvlc_internal.h @@ -3,7 +3,7 @@ * Also contains some internal utility functions ***************************************************************************** * Copyright (C) 2005 the VideoLAN team - * $Id: control_structures.h 13752 2005-12-15 10:14:42Z oaubert $ + * $Id$ * * Authors: Clément Stenac * @@ -25,97 +25,177 @@ #ifndef _LIBVLC_INTERNAL_H #define _LIBVLC_INTERNAL_H 1 -# ifdef __cplusplus -extern "C" { -# endif +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif #include #include #include #include - + +# ifdef __cplusplus +extern "C" { +# endif + /*************************************************************************** * Internal creation and destruction functions ***************************************************************************/ VLC_EXPORT (libvlc_int_t *, libvlc_InternalCreate, ( void ) ); -VLC_EXPORT (int, libvlc_InternalInit, ( libvlc_int_t *, int, char *ppsz_argv[] ) ); +VLC_EXPORT (int, libvlc_InternalInit, ( libvlc_int_t *, int, const char *ppsz_argv[] ) ); VLC_EXPORT (int, libvlc_InternalCleanup, ( libvlc_int_t * ) ); -VLC_EXPORT (int, libvlc_InternalDestroy, ( libvlc_int_t *, vlc_bool_t ) ); +VLC_EXPORT (int, libvlc_InternalDestroy, ( libvlc_int_t *, bool ) ); -VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, vlc_bool_t, - vlc_bool_t, int, const char *const * ) ); +VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, bool, + bool, int, const char *const * ) ); VLC_EXPORT (void, libvlc_event_init, ( libvlc_instance_t *, libvlc_exception_t * ) ); -VLC_EXPORT (void, libvlc_event_fini, ( libvlc_instance_t *, libvlc_exception_t * ) ); +VLC_EXPORT (void, libvlc_event_fini, ( libvlc_instance_t * ) ); + /*************************************************************************** * Opaque structures for libvlc API ***************************************************************************/ +typedef int * libvlc_media_list_path_t; /* (Media List Player Internal) */ + +typedef enum libvlc_lock_state_t +{ + libvlc_Locked, + libvlc_UnLocked +} libvlc_lock_state_t; + struct libvlc_instance_t { libvlc_int_t *p_libvlc_int; vlm_t *p_vlm; int b_playlist_locked; + unsigned ref_count; vlc_mutex_t instance_lock; vlc_mutex_t event_callback_lock; struct libvlc_callback_entry_list_t *p_callback_list; }; -struct libvlc_media_descriptor_t +struct libvlc_media_t { + libvlc_event_manager_t * p_event_manager; int b_preparsed; input_item_t *p_input_item; int i_refcount; libvlc_instance_t *p_libvlc_instance; + libvlc_state_t state; + struct libvlc_media_list_t *p_subitems; /* A media descriptor can have + * Sub item */ + void *p_user_data; /* Allows for VLC.framework to hook into media descriptor without creating a new VLCMedia object. */ }; -struct libvlc_tag_query_t +struct libvlc_media_list_t { - struct libvlc_instance_t *p_libvlc_instance; /* Parent instance */ - int i_refcount; + libvlc_event_manager_t * p_event_manager; + libvlc_instance_t * p_libvlc_instance; + int i_refcount; + vlc_mutex_t object_lock; + libvlc_media_t * p_md; /* The media from which the + * mlist comes, if any. */ + vlc_array_t items; + + /* Other way to see that media list */ + /* Used in flat_media_list.c */ + libvlc_media_list_t * p_flat_mlist; + + /* This indicates if this media list is read-only + * from a user point of view */ + bool b_read_only; }; +typedef libvlc_media_list_view_t * (*libvlc_media_list_view_constructor_func_t)( libvlc_media_list_t * p_mlist, libvlc_exception_t * p_e ) ; +typedef void (*libvlc_media_list_view_release_func_t)( libvlc_media_list_view_t * p_mlv ) ; -struct libvlc_media_list_t +typedef int (*libvlc_media_list_view_count_func_t)( libvlc_media_list_view_t * p_mlv, + libvlc_exception_t * ) ; + +typedef libvlc_media_t * + (*libvlc_media_list_view_item_at_index_func_t)( + libvlc_media_list_view_t * p_mlv, + int index, + libvlc_exception_t * ) ; + +typedef libvlc_media_list_view_t * + (*libvlc_media_list_view_children_at_index_func_t)( + libvlc_media_list_view_t * p_mlv, + int index, + libvlc_exception_t * ) ; + +/* A way to see a media list */ +struct libvlc_media_list_view_t { - libvlc_event_manager_t * p_event_manager; - libvlc_instance_t * p_libvlc_instance; - int i_refcount; - vlc_mutex_t object_lock; - libvlc_media_list_t * p_media_provider; /* For dynamic sublist */ - libvlc_tag_query_t * p_query; /* For dynamic sublist */ - DECL_ARRAY(void *) items; + libvlc_event_manager_t * p_event_manager; + libvlc_instance_t * p_libvlc_instance; + int i_refcount; + vlc_mutex_t object_lock; + + libvlc_media_list_t * p_mlist; + + struct libvlc_media_list_view_private_t * p_this_view_data; + + /* Accessors */ + libvlc_media_list_view_count_func_t pf_count; + libvlc_media_list_view_item_at_index_func_t pf_item_at_index; + libvlc_media_list_view_children_at_index_func_t pf_children_at_index; + + libvlc_media_list_view_constructor_func_t pf_constructor; + libvlc_media_list_view_release_func_t pf_release; + + /* Notification callback */ + void (*pf_ml_item_added)(const libvlc_event_t *, libvlc_media_list_view_t *); + void (*pf_ml_item_removed)(const libvlc_event_t *, libvlc_media_list_view_t *); }; -struct libvlc_media_instance_t +struct libvlc_media_player_t { int i_refcount; vlc_mutex_t object_lock; - int i_input_id; /* Input object id. We don't use a pointer to - avoid any crash */ + input_thread_t * p_input_thread; struct libvlc_instance_t * p_libvlc_instance; /* Parent instance */ - libvlc_media_descriptor_t * p_md; /* current media descriptor */ + libvlc_media_t * p_md; /* current media descriptor */ libvlc_event_manager_t * p_event_manager; libvlc_drawable_t drawable; + + bool b_own_its_input_thread; }; struct libvlc_media_list_player_t +{ + libvlc_event_manager_t * p_event_manager; + libvlc_instance_t * p_libvlc_instance; + int i_refcount; + vlc_mutex_t object_lock; + libvlc_media_list_path_t current_playing_item_path; + libvlc_media_t * p_current_playing_item; + libvlc_media_list_t * p_mlist; + libvlc_media_player_t * p_mi; +}; + +struct libvlc_media_library_t { libvlc_event_manager_t * p_event_manager; libvlc_instance_t * p_libvlc_instance; int i_refcount; - vlc_mutex_t object_lock; - int i_current_playing_index; - libvlc_media_descriptor_t * p_current_playing_item; libvlc_media_list_t * p_mlist; - libvlc_media_instance_t * p_mi; }; +struct libvlc_media_discoverer_t +{ + libvlc_event_manager_t * p_event_manager; + libvlc_instance_t * p_libvlc_instance; + services_discovery_t * p_sd; + libvlc_media_list_t * p_mlist; + bool running; + vlc_dictionary_t catname_to_submedialist; +}; - -/* +/* * Event Handling */ /* Example usage @@ -164,14 +244,17 @@ typedef struct libvlc_event_listener_t typedef struct libvlc_event_listeners_group_t { libvlc_event_type_t event_type; - DECL_ARRAY(libvlc_event_listener_t *) listeners; + vlc_array_t listeners; + bool b_sublistener_removed; } libvlc_event_listeners_group_t; typedef struct libvlc_event_manager_t { void * p_obj; struct libvlc_instance_t * p_libvlc_instance; - DECL_ARRAY(libvlc_event_listeners_group_t *) listeners_groups; + vlc_array_t listeners_groups; + vlc_mutex_t object_lock; + vlc_mutex_t event_sending_lock; } libvlc_event_sender_t; @@ -179,27 +262,69 @@ typedef struct libvlc_event_manager_t * Other internal functions ***************************************************************************/ VLC_EXPORT (input_thread_t *, libvlc_get_input_thread, - ( struct libvlc_media_instance_t *, libvlc_exception_t * ) ); + ( struct libvlc_media_player_t *, libvlc_exception_t * ) ); /* Media instance */ -VLC_EXPORT (libvlc_media_instance_t *, libvlc_media_instance_new_from_input_thread, +VLC_EXPORT (libvlc_media_player_t *, libvlc_media_player_new_from_input_thread, ( struct libvlc_instance_t *, input_thread_t *, libvlc_exception_t * ) ); -VLC_EXPORT (void, libvlc_media_instance_destroy, - ( libvlc_media_instance_t * ) ); +VLC_EXPORT (void, libvlc_media_player_destroy, + ( libvlc_media_player_t * ) ); /* Media Descriptor */ -VLC_EXPORT (libvlc_media_descriptor_t *, libvlc_media_descriptor_new_from_input_item, +VLC_EXPORT (libvlc_media_t *, libvlc_media_new_from_input_item, ( struct libvlc_instance_t *, input_item_t *, libvlc_exception_t * ) ); -VLC_EXPORT (libvlc_media_descriptor_t *, libvlc_media_descriptor_duplicate, - ( libvlc_media_descriptor_t * ) ); +VLC_EXPORT (void, libvlc_media_set_state, + ( libvlc_media_t *, libvlc_state_t, libvlc_exception_t * ) ); + +/* Media List */ +VLC_EXPORT ( void, _libvlc_media_list_add_media, + ( libvlc_media_list_t * p_mlist, + libvlc_media_t * p_md, + libvlc_exception_t * p_e ) ); + +VLC_EXPORT ( void, _libvlc_media_list_insert_media, + ( libvlc_media_list_t * p_mlist, + libvlc_media_t * p_md, + int index, + libvlc_exception_t * p_e ) ); + +VLC_EXPORT ( void, _libvlc_media_list_remove_index, + ( libvlc_media_list_t * p_mlist, + int index, + libvlc_exception_t * p_e ) ); + +/* Media List View */ +VLC_EXPORT ( libvlc_media_list_view_t *, libvlc_media_list_view_new, + ( libvlc_media_list_t * p_mlist, + libvlc_media_list_view_count_func_t pf_count, + libvlc_media_list_view_item_at_index_func_t pf_item_at_index, + libvlc_media_list_view_children_at_index_func_t pf_children_at_index, + libvlc_media_list_view_constructor_func_t pf_constructor, + libvlc_media_list_view_release_func_t pf_release, + void * this_view_data, + libvlc_exception_t * p_e ) ); + +VLC_EXPORT ( void, libvlc_media_list_view_set_ml_notification_callback, ( + libvlc_media_list_view_t * p_mlv, + void (*item_added)(const libvlc_event_t *, libvlc_media_list_view_t *), + void (*item_removed)(const libvlc_event_t *, libvlc_media_list_view_t *) )); + +VLC_EXPORT ( void, libvlc_media_list_view_will_delete_item, ( libvlc_media_list_view_t * p_mlv, + libvlc_media_t * p_item, + int index )); +VLC_EXPORT ( void, libvlc_media_list_view_item_deleted, ( libvlc_media_list_view_t * p_mlv, + libvlc_media_t * p_item, + int index )); +VLC_EXPORT ( void, libvlc_media_list_view_will_add_item, ( libvlc_media_list_view_t * p_mlv, + libvlc_media_t * p_item, + int index )); +VLC_EXPORT ( void, libvlc_media_list_view_item_added, ( libvlc_media_list_view_t * p_mlv, + libvlc_media_t * p_item, + int index )); /* Events */ -VLC_EXPORT (void, libvlc_event_init, ( libvlc_instance_t *p_instance, libvlc_exception_t *p_e ) ); - -VLC_EXPORT (void, libvlc_event_fini, ( libvlc_instance_t *p_instance, libvlc_exception_t *p_e ) ); - VLC_EXPORT (libvlc_event_manager_t *, libvlc_event_manager_new, ( void * p_obj, libvlc_instance_t * p_libvlc_inst, libvlc_exception_t *p_e ) ); VLC_EXPORT (void, libvlc_event_manager_release, ( libvlc_event_manager_t * p_em ) );