playlist demuxer: remove tabs
[vlc.git] / src / libvlc.h
blob00d53efb701f3ed01a4a4c886e054eaa6e3bbbb9
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
7 * Authors: Vincent Seguin <seguin@via.ecp.fr>
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.
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.
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 *****************************************************************************/
24 #ifndef LIBVLC_LIBVLC_H
25 # define LIBVLC_LIBVLC_H 1
27 #include <vlc_input_item.h>
29 extern const char psz_vlc_changeset[];
31 typedef struct variable_t variable_t;
34 * OS-specific initialization
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 #ifndef __OS2__
41 int EnumClockSource( const char *, char ***, char *** );
42 #endif
43 #endif
44 void vlc_CPU_dump(vlc_object_t *);
47 * Threads subsystem
50 /* This cannot be used as is from plugins yet: */
51 int vlc_clone_detach (vlc_thread_t *, void *(*)(void *), void *, int);
53 int vlc_set_priority( vlc_thread_t, int );
55 void vlc_threads_setup (libvlc_int_t *);
57 void vlc_trace (const char *fn, const char *file, unsigned line);
58 #define vlc_backtrace() vlc_trace(__func__, __FILE__, __LINE__)
60 #ifndef NDEBUG
61 /**
62 * Marks a mutex locked.
64 void vlc_mutex_mark(const vlc_mutex_t *);
66 /**
67 * Unmarks a mutex.
69 void vlc_mutex_unmark(const vlc_mutex_t *);
70 #else
71 # define vlc_mutex_mark(m) ((void)(m))
72 # define vlc_mutex_unmark(m) ((void)(m))
73 #endif
76 * Logging
78 typedef struct vlc_logger vlc_logger_t;
80 int vlc_LogPreinit(libvlc_int_t *) VLC_USED;
81 void vlc_LogInit(libvlc_int_t *);
84 * LibVLC exit event handling
86 typedef struct vlc_exit
88 vlc_mutex_t lock;
89 void (*handler) (void *);
90 void *opaque;
91 } vlc_exit_t;
93 void vlc_ExitInit( vlc_exit_t * );
94 void vlc_ExitDestroy( vlc_exit_t * );
97 * LibVLC objects stuff
101 * Creates a VLC object.
103 * Note that because the object name pointer must remain valid, potentially
104 * even after the destruction of the object (through the message queues), this
105 * function CANNOT be exported to plugins as is. In this case, the old
106 * vlc_object_create() must be used instead.
108 * @param p_this an existing VLC object
109 * @param i_size byte size of the object structure
110 * @param psz_type object type name
111 * @return the created object, or NULL.
113 extern void *
114 vlc_custom_create (vlc_object_t *p_this, size_t i_size, const char *psz_type);
115 #define vlc_custom_create(o, s, n) \
116 vlc_custom_create(VLC_OBJECT(o), s, n)
119 * Assign a name to an object for vlc_object_find_name().
121 extern int vlc_object_set_name(vlc_object_t *, const char *);
122 #define vlc_object_set_name(o, n) vlc_object_set_name(VLC_OBJECT(o), n)
124 /* Types */
125 typedef void (*vlc_destructor_t) (struct vlc_object_t *);
126 void vlc_object_set_destructor (vlc_object_t *, vlc_destructor_t);
127 #define vlc_object_set_destructor(a,b) \
128 vlc_object_set_destructor (VLC_OBJECT(a), b)
131 * Allocates an object resource.
133 * @param size storage size in bytes of the resource data
134 * @param release callback to release the resource
136 * @return a pointer to the (uninitialized) storage space, or NULL on error
138 void *vlc_objres_new(size_t size, void (*release)(void *));
141 * Pushes an object resource on the object resources stack.
143 * @param obj object to allocate the resource for
144 * @param data resource base address (as returned by vlc_objres_new())
146 void vlc_objres_push(vlc_object_t *obj, void *data);
149 * Releases all resources of an object.
151 * All resources added with vlc_objres_add() are released in reverse order.
152 * The resource list is reset to empty.
154 * @param obj object whose resources to release
156 void vlc_objres_clear(vlc_object_t *obj);
159 * Releases one object resource explicitly.
161 * If a resource associated with an object needs to be released explicitly
162 * earlier than normal, call this function. This is relatively slow and should
163 * be avoided.
165 * @param obj object whose resource to release
166 * @param data private data for the comparison function
167 * @param match comparison function to match the targeted resource
169 void vlc_objres_remove(vlc_object_t *obj, void *data,
170 bool (*match)(void *, void *));
172 #define ZOOM_SECTION N_("Zoom")
173 #define ZOOM_QUARTER_KEY_TEXT N_("1:4 Quarter")
174 #define ZOOM_HALF_KEY_TEXT N_("1:2 Half")
175 #define ZOOM_ORIGINAL_KEY_TEXT N_("1:1 Original")
176 #define ZOOM_DOUBLE_KEY_TEXT N_("2:1 Double")
179 * Private LibVLC instance data.
181 typedef struct vlc_dialog_provider vlc_dialog_provider;
182 typedef struct vlc_keystore vlc_keystore;
183 typedef struct vlc_actions_t vlc_actions_t;
184 typedef struct vlc_playlist vlc_playlist_t;
185 typedef struct vlc_media_source_provider_t vlc_media_source_provider_t;
187 typedef struct libvlc_priv_t
189 libvlc_int_t public_data;
191 /* Singleton objects */
192 vlm_t *p_vlm; ///< the VLM singleton (or NULL)
193 vlc_dialog_provider *p_dialog_provider; ///< dialog provider
194 vlc_keystore *p_memory_keystore; ///< memory keystore
195 struct playlist_t *playlist; ///< Playlist for interfaces
196 vlc_playlist_t *main_playlist;
197 struct input_preparser_t *parser; ///< Input item meta data handler
198 vlc_media_source_provider_t *media_source_provider;
199 vlc_actions_t *actions; ///< Hotkeys handler
200 struct vlc_medialibrary_t *p_media_library; ///< Media library instance
201 struct vlc_thumbnailer_t *p_thumbnailer; ///< Lazily instantiated media thumbnailer
203 /* Exit callback */
204 vlc_exit_t exit;
205 } libvlc_priv_t;
207 static inline libvlc_priv_t *libvlc_priv (libvlc_int_t *libvlc)
209 return container_of(libvlc, libvlc_priv_t, public_data);
212 int intf_InsertItem(libvlc_int_t *, const char *mrl, unsigned optc,
213 const char * const *optv, unsigned flags);
214 void intf_DestroyAll( libvlc_int_t * );
216 int vlc_MetadataRequest(libvlc_int_t *libvlc, input_item_t *item,
217 input_item_meta_request_option_t i_options,
218 const input_preparser_callbacks_t *cbs,
219 void *cbs_userdata,
220 int timeout, void *id);
223 * Variables stuff
225 void var_OptionParse (vlc_object_t *, const char *, bool trusted);
227 #endif