1 /*****************************************************************************
2 * libvlc.h: libvlc_* new external API structures
3 *****************************************************************************
4 * Copyright (C) 1998-2007 the VideoLAN team
7 * Authors: Filippo Carone <littlejohn@videolan.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 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 General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef _LIBVLC_STRUCTURES_H
25 #define _LIBVLC_STRUCTURES_H 1
33 /** This structure is opaque. It represents a libvlc instance */
34 typedef struct libvlc_instance_t libvlc_instance_t;
36 /*****************************************************************************
38 *****************************************************************************/
40 /** defgroup libvlc_exception Exceptions
42 * LibVLC Exceptions handling
46 typedef struct libvlc_exception_t
55 /*****************************************************************************
57 *****************************************************************************/
58 /** defgroup libvlc_tag Tag
60 * LibVLC Tag support in media descriptor
64 typedef struct libvlc_tag_query_t libvlc_tag_query_t;
65 typedef char * libvlc_tag_t;
69 /*****************************************************************************
71 *****************************************************************************/
72 /** defgroup libvlc_media_descriptor MediaDescriptor
74 * LibVLC Media Descriptor handling
79 /** defgroup libvlc_meta Meta
80 * \ingroup libvlc_media_descriptor
85 typedef enum libvlc_meta_t {
89 libvlc_meta_Copyright,
91 libvlc_meta_TrackNumber,
92 libvlc_meta_Description,
98 libvlc_meta_NowPlaying,
99 libvlc_meta_Publisher,
100 libvlc_meta_EncodedBy,
101 libvlc_meta_ArtworkURL,
107 typedef struct libvlc_media_descriptor_t libvlc_media_descriptor_t;
112 /*****************************************************************************
114 *****************************************************************************/
115 /** defgroup libvlc_media_instance MediaInstance
117 * LibVLC Media Instance handling
121 typedef struct libvlc_media_instance_t libvlc_media_instance_t;
125 /*****************************************************************************
127 *****************************************************************************/
128 /** defgroup libvlc_media_list MediaList
130 * LibVLC Media List handling
134 typedef struct libvlc_media_list_t libvlc_media_list_t;
138 /*****************************************************************************
140 *****************************************************************************/
141 /** defgroup libvlc_media_list MediaList
143 * LibVLC Dynamic Media list: Media list with content synchronized with
148 typedef struct libvlc_dynamic_media_list_t libvlc_dynamic_media_list_t;
152 /*****************************************************************************
154 *****************************************************************************/
155 /** defgroup libvlc_media_list_player MediaListPlayer
157 * LibVLC Media List Player handling
161 typedef struct libvlc_media_list_player_t libvlc_media_list_player_t;
165 /*****************************************************************************
167 *****************************************************************************/
168 /** defgroup libvlc_media_library Media Library
170 * LibVLC Media Library
174 typedef struct libvlc_media_library_t libvlc_media_library_t;
178 /*****************************************************************************
180 *****************************************************************************/
181 /** defgroup libvlc_playlist Playlist
183 * LibVLC Playlist handling
187 typedef struct libvlc_playlist_item_t
193 } libvlc_playlist_item_t;
198 /*****************************************************************************
200 *****************************************************************************/
201 /** defgroup libvlc_video Video
203 * LibVLC Video handling
208 * Downcast to this general type as placeholder for a platform specific one, such as:
210 * CGrafPort on MacOSX,
213 typedef int libvlc_drawable_t;
216 * Rectangle type for video geometry
218 typedef struct libvlc_rectangle_t
228 /*****************************************************************************
229 * Services/Media Discovery
230 *****************************************************************************/
231 /** defgroup libvlc_media_discoverer Media Discoverer
233 * LibVLC Media Discoverer
237 typedef struct libvlc_media_discoverer_t libvlc_media_discoverer_t;
241 /*****************************************************************************
242 * Message log handling
243 *****************************************************************************/
245 /** defgroup libvlc_log Log
247 * LibVLC Message Logging
251 /** This structure is opaque. It represents a libvlc log instance */
252 typedef struct libvlc_log_t libvlc_log_t;
254 /** This structure is opaque. It represents a libvlc log iterator */
255 typedef struct libvlc_log_iterator_t libvlc_log_iterator_t;
257 typedef struct libvlc_log_message_t
259 unsigned sizeof_msg; /* sizeof() of message structure, must be filled in by user */
260 int i_severity; /* 0=INFO, 1=ERR, 2=WARN, 3=DBG */
261 const char *psz_type; /* module type */
262 const char *psz_name; /* module name */
263 const char *psz_header; /* optional header */
264 const char *psz_message; /* message */
265 } libvlc_log_message_t;
269 /*****************************************************************************
271 *****************************************************************************/
273 /** defgroup libvlc_callbacks Callbacks
275 * LibVLC Event Callbacks
280 * Available events: (XXX: being reworked)
281 * - libvlc_MediaInstanceReachedEnd
284 typedef enum libvlc_event_type_t {
285 libvlc_MediaDescriptorMetaChanged,
286 libvlc_MediaDescriptorSubItemAdded,
288 libvlc_MediaInstancePlayed,
289 libvlc_MediaInstancePaused,
290 libvlc_MediaInstanceReachedEnd,
291 libvlc_MediaInstancePositionChanged,
293 libvlc_MediaListItemAdded,
294 libvlc_MediaListItemDeleted,
296 libvlc_MediaListPlayerPlayed,
297 libvlc_MediaListPlayerNextItemSet,
298 libvlc_MediaListPlayerStopped,
300 } libvlc_event_type_t;
304 * \param type the even type
305 * \param p_obj the sender object
306 * \param u Event dependent content
309 typedef struct libvlc_event_t
311 libvlc_event_type_t type;
313 union event_type_specific
315 /* media descriptor */
318 libvlc_meta_t meta_type;
319 } media_descriptor_meta_changed;
322 libvlc_media_descriptor_t * new_child;
323 } media_descriptor_subitem_added;
328 long int new_position;
329 } media_instance_position_changed;
334 libvlc_media_descriptor_t * item;
336 } media_list_item_added;
339 libvlc_media_descriptor_t * item;
341 } media_list_item_deleted;
346 * Event manager that belongs to a libvlc object, and from whom events can
350 typedef struct libvlc_event_manager_t libvlc_event_manager_t;
353 * Callback function notification
354 * \param p_event the event triggering the callback
357 typedef void ( *libvlc_callback_t )( const libvlc_event_t *, void * );