demux: libmp4: fix reading last iinf entry v0
[vlc.git] / src / libvlc.h
blob7fc6934406a76e29ce4271c20aad3c700dfb721a
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 * $Id$
8 * Authors: Vincent Seguin <seguin@via.ecp.fr>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #ifndef LIBVLC_LIBVLC_H
26 # define LIBVLC_LIBVLC_H 1
28 #include <vlc_input_item.h>
30 extern const char psz_vlc_changeset[];
32 typedef struct variable_t variable_t;
35 * OS-specific initialization
37 void system_Init ( void );
38 void system_Configure ( libvlc_int_t *, int, const char *const [] );
39 #if defined(_WIN32) || defined(__OS2__)
40 void system_End(void);
41 #ifndef __OS2__
42 int EnumClockSource( const char *, char ***, char *** );
43 #endif
44 #endif
45 void vlc_CPU_dump(vlc_object_t *);
48 * Threads subsystem
51 /* This cannot be used as is from plugins yet: */
52 int vlc_clone_detach (vlc_thread_t *, void *(*)(void *), void *, int);
54 int vlc_set_priority( vlc_thread_t, int );
56 void vlc_threads_setup (libvlc_int_t *);
58 void vlc_trace (const char *fn, const char *file, unsigned line);
59 #define vlc_backtrace() vlc_trace(__func__, __FILE__, __LINE__)
61 #ifndef NDEBUG
62 /**
63 * Marks a mutex locked.
65 void vlc_mutex_mark(const vlc_mutex_t *);
67 /**
68 * Unmarks a mutex.
70 void vlc_mutex_unmark(const vlc_mutex_t *);
71 #else
72 # define vlc_mutex_mark(m) ((void)(m))
73 # define vlc_mutex_unmark(m) ((void)(m))
74 #endif
77 * Logging
79 typedef struct vlc_logger_t vlc_logger_t;
81 int vlc_LogPreinit(libvlc_int_t *) VLC_USED;
82 void vlc_LogInit(libvlc_int_t *);
83 void vlc_LogDeinit(libvlc_int_t *);
86 * LibVLC exit event handling
88 typedef struct vlc_exit
90 vlc_mutex_t lock;
91 void (*handler) (void *);
92 void *opaque;
93 } vlc_exit_t;
95 void vlc_ExitInit( vlc_exit_t * );
96 void vlc_ExitDestroy( vlc_exit_t * );
99 * LibVLC objects stuff
103 * Creates a VLC object.
105 * Note that because the object name pointer must remain valid, potentially
106 * even after the destruction of the object (through the message queues), this
107 * function CANNOT be exported to plugins as is. In this case, the old
108 * vlc_object_create() must be used instead.
110 * @param p_this an existing VLC object
111 * @param i_size byte size of the object structure
112 * @param psz_type object type name
113 * @return the created object, or NULL.
115 extern void *
116 vlc_custom_create (vlc_object_t *p_this, size_t i_size, const char *psz_type);
117 #define vlc_custom_create(o, s, n) \
118 vlc_custom_create(VLC_OBJECT(o), s, n)
121 * Assign a name to an object for vlc_object_find_name().
123 extern int vlc_object_set_name(vlc_object_t *, const char *);
124 #define vlc_object_set_name(o, n) vlc_object_set_name(VLC_OBJECT(o), n)
126 /* Types */
127 typedef void (*vlc_destructor_t) (struct vlc_object_t *);
128 void vlc_object_set_destructor (vlc_object_t *, vlc_destructor_t);
129 #define vlc_object_set_destructor(a,b) \
130 vlc_object_set_destructor (VLC_OBJECT(a), b)
133 * Allocates an object resource.
135 * @param size storage size in bytes of the resource data
136 * @param release callback to release the resource
138 * @return a pointer to the (uninitialized) storage space, or NULL on error
140 void *vlc_objres_new(size_t size, void (*release)(void *));
143 * Pushes an object resource on the object resources stack.
145 * @param obj object to allocate the resource for
146 * @param data resource base address (as returned by vlc_objres_new())
148 void vlc_objres_push(vlc_object_t *obj, void *data);
151 * Releases all resources of an object.
153 * All resources added with vlc_objres_add() are released in reverse order.
154 * The resource list is reset to empty.
156 * @param obj object whose resources to release
158 void vlc_objres_clear(vlc_object_t *obj);
161 * Releases one object resource explicitly.
163 * If a resource associated with an object needs to be released explicitly
164 * earlier than normal, call this function. This is relatively slow and should
165 * be avoided.
167 * @param obj object whose resource to release
168 * @param data private data for the comparison function
169 * @param match comparison function to match the targeted resource
171 void vlc_objres_remove(vlc_object_t *obj, void *data,
172 bool (*match)(void *, void *));
174 #define ZOOM_SECTION N_("Zoom")
175 #define ZOOM_QUARTER_KEY_TEXT N_("1:4 Quarter")
176 #define ZOOM_HALF_KEY_TEXT N_("1:2 Half")
177 #define ZOOM_ORIGINAL_KEY_TEXT N_("1:1 Original")
178 #define ZOOM_DOUBLE_KEY_TEXT N_("2:1 Double")
181 * Private LibVLC instance data.
183 typedef struct vlc_dialog_provider vlc_dialog_provider;
184 typedef struct vlc_keystore vlc_keystore;
185 typedef struct vlc_actions_t vlc_actions_t;
186 typedef struct vlc_playlist vlc_playlist_t;
188 typedef struct libvlc_priv_t
190 libvlc_int_t public_data;
192 /* Singleton objects */
193 vlc_logger_t *logger;
194 vlm_t *p_vlm; ///< the VLM singleton (or NULL)
195 vlc_dialog_provider *p_dialog_provider; ///< dialog provider
196 vlc_keystore *p_memory_keystore; ///< memory keystore
197 struct playlist_t *playlist; ///< Playlist for interfaces
198 vlc_playlist_t *main_playlist;
199 struct input_preparser_t *parser; ///< Input item meta data handler
200 vlc_actions_t *actions; ///< Hotkeys handler
201 struct vlc_medialibrary_t *p_media_library; ///< Media library instance
202 struct vlc_thumbnailer_t *p_thumbnailer; ///< Lazily instantiated media thumbnailer
204 /* Exit callback */
205 vlc_exit_t exit;
206 } libvlc_priv_t;
208 static inline libvlc_priv_t *libvlc_priv (libvlc_int_t *libvlc)
210 return container_of(libvlc, libvlc_priv_t, public_data);
213 int intf_InsertItem(libvlc_int_t *, const char *mrl, unsigned optc,
214 const char * const *optv, unsigned flags);
215 void intf_DestroyAll( libvlc_int_t * );
217 int vlc_MetadataRequest(libvlc_int_t *libvlc, input_item_t *item,
218 input_item_meta_request_option_t i_options,
219 const input_preparser_callbacks_t *cbs,
220 void *cbs_userdata,
221 int timeout, void *id);
224 * Variables stuff
226 void var_OptionParse (vlc_object_t *, const char *, bool trusted);
228 #endif