VLC  4.0.0-dev
libvlc.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * libvlc.h: Internal libvlc generic/misc declaration
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001, 2002 VLC authors and VideoLAN
5  * Copyright © 2006-2007 Rémi Denis-Courmont
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23 
24 #ifndef LIBVLC_LIBVLC_H
25 # define LIBVLC_LIBVLC_H 1
26 
27 #include <vlc_input_item.h>
28 
29 extern const char psz_vlc_changeset[];
30 
31 typedef struct variable_t variable_t;
32 
33 /*
34  * OS-specific initialization
35  */
36 void system_Init ( void );
37 void system_Configure ( libvlc_int_t *, int, const char *const [] );
38 #if defined(_WIN32) || defined(__OS2__)
39 void system_End(void);
40 #endif
42 
43 /*
44  * Threads subsystem
45  */
46 
47 /* This cannot be used as is from plugins yet: */
48 int vlc_clone_detach (vlc_thread_t *, void *(*)(void *), void *, int);
49 
50 int vlc_set_priority( vlc_thread_t, int );
51 
53 
54 void vlc_trace (const char *fn, const char *file, unsigned line);
55 #define vlc_backtrace() vlc_trace(__func__, __FILE__, __LINE__)
56 
57 /*
58  * Logging
59  */
60 typedef struct vlc_logger vlc_logger_t;
61 
64 
65 /*
66  * LibVLC exit event handling
67  */
68 typedef struct vlc_exit
69 {
71  void (*handler) (void *);
72  void *opaque;
73 } vlc_exit_t;
74 
75 void vlc_ExitInit( vlc_exit_t * );
76 
77 /*
78  * LibVLC objects stuff
79  */
80 
81 /**
82  * Initializes a VLC object.
83  *
84  * @param obj storage space for object to initialize [OUT]
85  * @param parent parent object (or NULL to initialize the root) [IN]
86  * @param type_name object type name
87  *
88  * @note The type name pointer must remain valid even after the object is
89  * deinitialized, as it might be passed by address to log message queue.
90  * Using constant string literals is appropriate.
91  *
92  * @retval 0 on success
93  * @retval -1 on (out of memory) error
94  */
95 int vlc_object_init(vlc_object_t *obj, vlc_object_t *parent,
96  const char *type_name);
97 
98 /**
99  * Deinitializes a VLC object.
100  *
101  * This frees resources allocated by vlc_object_init().
102  */
104 
105 /**
106  * Creates a VLC object.
107  *
108  * Note that because the object name pointer must remain valid, potentially
109  * even after the destruction of the object (through the message queues), this
110  * function CANNOT be exported to plugins as is. In this case, the old
111  * vlc_object_create() must be used instead.
112  *
113  * @param p_this an existing VLC object
114  * @param i_size byte size of the object structure
115  * @param psz_type object type name
116  * @return the created object, or NULL.
117  */
118 extern void *
119 vlc_custom_create (vlc_object_t *p_this, size_t i_size, const char *psz_type);
120 #define vlc_custom_create(o, s, n) \
121  vlc_custom_create(VLC_OBJECT(o), s, n)
122 
123 /**
124  * Allocates an object resource.
125  *
126  * @param size storage size in bytes of the resource data
127  * @param release callback to release the resource
128  *
129  * @return a pointer to the (uninitialized) storage space, or NULL on error
130  */
131 void *vlc_objres_new(size_t size, void (*release)(void *));
132 
133 /**
134  * Pushes an object resource on the object resources stack.
135  *
136  * @param obj object to allocate the resource for
137  * @param data resource base address (as returned by vlc_objres_new())
138  */
139 void vlc_objres_push(vlc_object_t *obj, void *data);
140 
141 /**
142  * Releases all resources of an object.
143  *
144  * All resources added with vlc_objres_add() are released in reverse order.
145  * The resource list is reset to empty.
146  *
147  * @param obj object whose resources to release
148  */
149 void vlc_objres_clear(vlc_object_t *obj);
150 
151 /**
152  * Releases one object resource explicitly.
153  *
154  * If a resource associated with an object needs to be released explicitly
155  * earlier than normal, call this function. This is relatively slow and should
156  * be avoided.
157  *
158  * @param obj object whose resource to release
159  * @param data private data for the comparison function
160  * @param match comparison function to match the targeted resource
161  */
162 void vlc_objres_remove(vlc_object_t *obj, void *data,
163  bool (*match)(void *, void *));
164 
165 #define ZOOM_SECTION N_("Zoom")
166 #define ZOOM_QUARTER_KEY_TEXT N_("1:4 Quarter")
167 #define ZOOM_HALF_KEY_TEXT N_("1:2 Half")
168 #define ZOOM_ORIGINAL_KEY_TEXT N_("1:1 Original")
169 #define ZOOM_DOUBLE_KEY_TEXT N_("2:1 Double")
170 
171 /**
172  * Private LibVLC instance data.
173  */
175 typedef struct vlc_keystore vlc_keystore;
180 
181 typedef struct libvlc_priv_t
182 {
184 
185  /* Singleton objects */
186  vlc_mutex_t lock; ///< protect playlist and interfaces
187  vlm_t *p_vlm; ///< the VLM singleton (or NULL)
188  vlc_dialog_provider *p_dialog_provider; ///< dialog provider
189  vlc_keystore *p_memory_keystore; ///< memory keystore
190  intf_thread_t *interfaces; ///< Linked-list of interfaces
192  struct input_preparser_t *parser; ///< Input item meta data handler
194  vlc_actions_t *actions; ///< Hotkeys handler
195  struct vlc_medialibrary_t *p_media_library; ///< Media library instance
196  struct vlc_thumbnailer_t *p_thumbnailer; ///< Lazily instantiated media thumbnailer
197 
198  /* Exit callback */
200 } libvlc_priv_t;
201 
202 static inline libvlc_priv_t *libvlc_priv (libvlc_int_t *libvlc)
203 {
204  return container_of(libvlc, libvlc_priv_t, public_data);
205 }
206 
207 int intf_InsertItem(libvlc_int_t *, const char *mrl, unsigned optc,
208  const char * const *optv, unsigned flags);
209 void intf_DestroyAll( libvlc_int_t * );
210 
213  const input_preparser_callbacks_t *cbs,
214  void *cbs_userdata,
215  int timeout, void *id);
216 
217 /*
218  * Variables stuff
219  */
220 void var_OptionParse (vlc_object_t *, const char *, bool trusted);
221 
222 #endif
Definition: thumbnailer.c:31
vlc_keystore * p_memory_keystore
memory keystore
Definition: libvlc.h:189
void var_OptionParse(vlc_object_t *, const char *, bool trusted)
Parse a stringified option This function parse a string option and create the associated object varia...
Definition: variables.c:907
void system_End(void)
Cleans up after system_Init() and system_Configure().
Definition: specific.c:270
Definition: playlist.h:48
int vlc_clone_detach(vlc_thread_t *, void *(*)(void *), void *, int)
Describes an input and is used to spawn input_thread_t objects.
Definition: vlc_input_item.h:77
vlc_mutex_t lock
Definition: libvlc.h:70
static libvlc_priv_t * libvlc_priv(libvlc_int_t *libvlc)
Definition: libvlc.h:202
void vlc_objres_clear(vlc_object_t *obj)
Releases all resources of an object.
Definition: objres.c:84
Definition: medialibrary.c:41
struct vlc_thumbnailer_t * p_thumbnailer
Lazily instantiated media thumbnailer.
Definition: libvlc.h:196
vlc_playlist_t * main_playlist
Definition: libvlc.h:191
vlc_exit_t exit
Definition: libvlc.h:199
void vlc_trace(const char *fn, const char *file, unsigned line)
Print a backtrace to the standard error for debugging purpose.
Definition: thread.c:68
Definition: libvlc.h:181
int vlc_LogPreinit(libvlc_int_t *)
Performs preinitialization of the messages logging subsystem.
Definition: messages.c:464
Definition: vlc_objects.h:115
int vlc_MetadataRequest(libvlc_int_t *libvlc, input_item_t *item, input_item_meta_request_option_t i_options, const input_preparser_callbacks_t *cbs, void *cbs_userdata, int timeout, void *id)
Definition: libvlc.c:474
vlc_actions_t * actions
Hotkeys handler.
Definition: libvlc.h:194
int vlc_object_init(vlc_object_t *obj, vlc_object_t *parent, const char *type_name)
Initializes a VLC object.
Definition: vlc_input_item.h:481
void system_Init(void)
Initializes MME timer, Winsock.
Definition: specific.c:167
libvlc_int_t public_data
Definition: libvlc.h:183
intf_thread_t * interfaces
Linked-list of interfaces.
Definition: libvlc.h:190
vlc_media_source_provider_t * media_source_provider
Definition: libvlc.h:193
void vlc_LogInit(libvlc_int_t *)
Initializes the messages logging subsystem and drain the early messages to the configured log...
Definition: messages.c:446
void vlc_threads_setup(libvlc_int_t *)
Definition: thread.c:89
Definition: vlc_keystore.h:296
Thread handle.
Definition: vlc_threads.h:208
int vlc_set_priority(vlc_thread_t, int)
Definition: thread.c:192
struct input_preparser_t * parser
Input item meta data handler.
Definition: libvlc.h:192
Mutex.
Definition: vlc_threads.h:266
void intf_DestroyAll(libvlc_int_t *)
Stops and destroys all interfaces, then the playlist.
Definition: interface.c:273
The structure describing a variable.
Definition: variables.c:68
Describe all interface-specific data of the interface thread.
Definition: vlc_interface.h:48
int intf_InsertItem(libvlc_int_t *, const char *mrl, unsigned optc, const char *const *optv, unsigned flags)
Inserts an item in the playlist.
Definition: interface.c:202
vlm_t * p_vlm
the VLM singleton (or NULL)
Definition: libvlc.h:187
void vlc_ExitInit(vlc_exit_t *)
Definition: exit.c:30
const char psz_vlc_changeset[]
vlc_mutex_t lock
protect playlist and interfaces
Definition: libvlc.h:186
#define container_of(ptr, type, member)
Definition: vlc_common.h:1137
void(* handler)(void *)
Definition: libvlc.h:71
Definition: libvlc.h:68
Definition: messages.c:54
void vlc_CPU_dump(vlc_object_t *)
Definition: cpu.c:265
Definition: vlm_internal.h:77
struct vlc_exit vlc_exit_t
vlc_dialog_provider * p_dialog_provider
dialog provider
Definition: libvlc.h:188
void * opaque
Definition: libvlc.h:72
This file defines functions, structures and enums for input items in vlc.
Definition: dialog.c:36
void vlc_objres_push(vlc_object_t *obj, void *data)
Pushes an object resource on the object resources stack.
Definition: objres.c:64
Definition: actions.c:393
Definition: media_source.c:52
struct libvlc_priv_t libvlc_priv_t
void system_Configure(libvlc_int_t *, int, const char *const [])
Definition: specific.c:172
VLC object common members.
Definition: vlc_objects.h:43
struct vlc_medialibrary_t * p_media_library
Media library instance.
Definition: libvlc.h:195
input_item_meta_request_option_t
Definition: vlc_input_item.h:460
void vlc_object_deinit(vlc_object_t *obj)
Deinitializes a VLC object.
Definition: objects.c:120
#define VLC_USED
Definition: fourcc_gen.c:32
#define vlc_custom_create(o, s, n)
Definition: libvlc.h:120
Definition: preparser.c:34
void vlc_objres_remove(vlc_object_t *obj, void *data, bool(*match)(void *, void *))
Releases one object resource explicitly.
Definition: objres.c:97
void * vlc_objres_new(size_t size, void(*release)(void *))
Allocates an object resource.
Definition: objres.c:48