]> git.sesse.net Git - vlc/blob - include/vlc/libvlc.h
Add libvlc_media_player_set_hwnd and libvlc_media_player_set_xid
[vlc] / include / vlc / libvlc.h
1 /*****************************************************************************
2  * libvlc.h:  libvlc external API
3  *****************************************************************************
4  * Copyright (C) 1998-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Paul Saman <jpsaman@videolan.org>
9  *          Pierre d'Herbemont <pdherbemont@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /**
27  * \file
28  * This file defines libvlc external API
29  */
30
31 /**
32  * \defgroup libvlc libvlc
33  * This is libvlc, the base library of the VLC program.
34  *
35  * @{
36  */
37
38 #ifndef VLC_LIBVLC_H
39 #define VLC_LIBVLC_H 1
40
41 #if defined (WIN32) && defined (DLL_EXPORT)
42 # define VLC_PUBLIC_API __declspec(dllexport)
43 #else
44 # define VLC_PUBLIC_API
45 #endif
46
47 #ifdef __LIBVLC__
48 /* Avoid unuseful warnings from libvlc with our deprecated APIs */
49 #   define VLC_DEPRECATED_API VLC_PUBLIC_API
50 #elif defined(__GNUC__) && \
51       (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
52 # define VLC_DEPRECATED_API VLC_PUBLIC_API __attribute__((deprecated))
53 #else
54 # define VLC_DEPRECATED_API VLC_PUBLIC_API
55 #endif
56
57 # ifdef __cplusplus
58 extern "C" {
59 # endif
60
61 /*****************************************************************************
62  * Exception handling
63  *****************************************************************************/
64 /** \defgroup libvlc_exception libvlc_exception
65  * \ingroup libvlc_core
66  * LibVLC Exceptions handling
67  * @{
68  */
69
70 /**
71  * Initialize an exception structure. This can be called several times to
72  * reuse an exception structure.
73  *
74  * \param p_exception the exception to initialize
75  */
76 VLC_PUBLIC_API void libvlc_exception_init( libvlc_exception_t *p_exception );
77
78 /**
79  * Has an exception been raised?
80  *
81  * \param p_exception the exception to query
82  * \return 0 if the exception was raised, 1 otherwise
83  */
84 VLC_PUBLIC_API int
85 libvlc_exception_raised( const libvlc_exception_t *p_exception );
86
87 /**
88  * Raise an exception using a user-provided message.
89  *
90  * \param p_exception the exception to raise
91  * \param psz_format the exception message format string
92  * \param ... the format string arguments
93  */
94 VLC_PUBLIC_API void
95 libvlc_exception_raise( libvlc_exception_t *p_exception,
96                         const char *psz_format, ... );
97
98 /**
99  * Clear an exception object so it can be reused.
100  * The exception object must have be initialized.
101  *
102  * \param p_exception the exception to clear
103  */
104 VLC_PUBLIC_API void libvlc_exception_clear( libvlc_exception_t * );
105
106 /**
107  * Get an exception's message.
108  *
109  * \param p_exception the exception to query
110  * \return the exception message or NULL if not applicable (exception not
111  *         raised, for example)
112  */
113 VLC_PUBLIC_API const char *
114 libvlc_exception_get_message( const libvlc_exception_t *p_exception );
115
116 /**@} */
117
118 /*****************************************************************************
119  * Core handling
120  *****************************************************************************/
121
122 /** \defgroup libvlc_core libvlc_core
123  * \ingroup libvlc
124  * LibVLC Core
125  * @{
126  */
127
128 /**
129  * Create and initialize a libvlc instance.
130  *
131  * \param argc the number of arguments
132  * \param argv command-line-type arguments. argv[0] must be the path of the
133  *        calling program.
134  * \param p_e an initialized exception pointer
135  * \return the libvlc instance
136  */
137 VLC_PUBLIC_API libvlc_instance_t *
138 libvlc_new( int , const char *const *, libvlc_exception_t *);
139
140 /**
141  * Return a libvlc instance identifier for legacy APIs. Use of this
142  * function is discouraged, you should convert your program to use the
143  * new API.
144  *
145  * \param p_instance the instance
146  * \return the instance identifier
147  */
148 VLC_PUBLIC_API int libvlc_get_vlc_id( libvlc_instance_t *p_instance );
149
150 /**
151  * Decrement the reference count of a libvlc instance, and destroy it
152  * if it reaches zero.
153  *
154  * \param p_instance the instance to destroy
155  */
156 VLC_PUBLIC_API void libvlc_release( libvlc_instance_t * );
157
158 /**
159  * Increments the reference count of a libvlc instance.
160  * The initial reference count is 1 after libvlc_new() returns.
161  *
162  * \param p_instance the instance to reference
163  */
164 VLC_PUBLIC_API void libvlc_retain( libvlc_instance_t * );
165
166 /**
167  * Try to start a user interface for the libvlc instance, and wait until the
168  * user exits.
169  *
170  * \param p_instance the instance
171  * \param name interface name, or NULL for default
172  * \param p_exception an initialized exception pointer
173  */
174 VLC_PUBLIC_API
175 void libvlc_add_intf( libvlc_instance_t *p_instance, const char *name,
176                       libvlc_exception_t *p_exception );
177
178 /**
179  * Waits until an interface causes the instance to exit.
180  * You should start at least one interface first, using libvlc_add_intf().
181  *
182  * \param p_instance the instance
183  */
184 VLC_PUBLIC_API
185 void libvlc_wait( libvlc_instance_t *p_instance );
186
187 /**
188  * Retrieve libvlc version.
189  *
190  * Example: "0.9.0-git Grishenko"
191  *
192  * \return a string containing the libvlc version
193  */
194 VLC_PUBLIC_API const char * libvlc_get_version(void);
195
196 /**
197  * Retrieve libvlc compiler version.
198  *
199  * Example: "gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu6)"
200  *
201  * \return a string containing the libvlc compiler version
202  */
203 VLC_PUBLIC_API const char * libvlc_get_compiler(void);
204
205 /**
206  * Retrieve libvlc changeset.
207  *
208  * Example: "aa9bce0bc4"
209  *
210  * \return a string containing the libvlc changeset
211  */
212 VLC_PUBLIC_API const char * libvlc_get_changeset(void);
213
214 struct vlc_object_t;
215
216 /**
217  * Return the libvlc internal object, the main object that all other depend on.
218  * Any of of this function should be considered an ugly hack and avoided at all
219  * cost. E.g. you need to expose some functionality that is not provided by the
220  * libvlc API directly with libvlccore.
221  * Remember to release the object with vlc_object_release( obj* )
222  *
223  * \param p_instance the libvlc instance
224  */
225 VLC_PUBLIC_API struct vlc_object_t *libvlc_get_vlc_instance(libvlc_instance_t *);
226
227 /** @}*/
228
229 /*****************************************************************************
230  * media
231  *****************************************************************************/
232 /** \defgroup libvlc_media libvlc_media
233  * \ingroup libvlc
234  * LibVLC Media
235  * @{
236  */
237
238 /**
239  * Create a media with the given MRL.
240  *
241  * \param p_instance the instance
242  * \param psz_mrl the MRL to read
243  * \param p_e an initialized exception pointer
244  * \return the newly created media
245  */
246 VLC_PUBLIC_API libvlc_media_t * libvlc_media_new(
247                                    libvlc_instance_t *p_instance,
248                                    const char * psz_mrl,
249                                    libvlc_exception_t *p_e );
250
251 /**
252  * Create a media as an empty node with the passed name.
253  *
254  * \param p_instance the instance
255  * \param psz_name the name of the node
256  * \param p_e an initialized exception pointer
257  * \return the new empty media
258  */
259 VLC_PUBLIC_API libvlc_media_t * libvlc_media_new_as_node(
260                                    libvlc_instance_t *p_instance,
261                                    const char * psz_name,
262                                    libvlc_exception_t *p_e );
263
264 /**
265  * Add an option to the media.
266  *
267  * This option will be used to determine how the media_player will
268  * read the media. This allows to use VLC's advanced
269  * reading/streaming options on a per-media basis.
270  *
271  * The options are detailed in vlc --long-help, for instance "--sout-all"
272  *
273  * \param p_instance the instance
274  * \param ppsz_options the options (as a string)
275  * \param p_e an initialized exception pointer
276  */
277 VLC_PUBLIC_API void libvlc_media_add_option(
278                                    libvlc_media_t * p_md,
279                                    const char * ppsz_options,
280                                    libvlc_exception_t * p_e );
281 /**
282  * Add an option to the media from an untrusted source.
283  *
284  * This option will be used to determine how the media_player will
285  * read the media. This allows to use VLC's advanced
286  * reading/streaming options on a per-media basis.
287  *
288  * The options are detailed in vlc --long-help, for instance "--sout-all"
289  *
290  * \param p_instance the instance
291  * \param ppsz_options the options (as a string)
292  * \param p_e an initialized exception pointer
293  */
294 VLC_PUBLIC_API void libvlc_media_add_option_untrusted(
295                                    libvlc_media_t * p_md,
296                                    const char * ppsz_options,
297                                    libvlc_exception_t * p_e );
298
299
300 /**
301  * Retain a reference to a media descriptor object (libvlc_media_t). Use
302  * libvlc_media_release() to decrement the reference count of a
303  * media descriptor object.
304  *
305  * \param p_meta_desc a media descriptor object.
306  */
307 VLC_PUBLIC_API void libvlc_media_retain(
308                                    libvlc_media_t *p_meta_desc );
309
310 /**
311  * Decrement the reference count of a media descriptor object. If the
312  * reference count is 0, then libvlc_media_release() will release the
313  * media descriptor object. It will send out an libvlc_MediaFreed event
314  * to all listeners. If the media descriptor object has been released it
315  * should not be used again.
316  *
317  * \param p_meta_desc a media descriptor object.
318  */
319 VLC_PUBLIC_API void libvlc_media_release(
320                                    libvlc_media_t *p_meta_desc );
321
322
323 /**
324  * Get the media resource locator (mrl) from a media descriptor object
325  *
326  * \param p_md a media descriptor object
327  * \param p_e an initialized exception object
328  * \return string with mrl of media descriptor object
329  */
330 VLC_PUBLIC_API char * libvlc_media_get_mrl( libvlc_media_t * p_md,
331                                                        libvlc_exception_t * p_e );
332
333 /**
334  * Duplicate a media descriptor object.
335  *
336  * \param p_meta_desc a media descriptor object.
337  */
338 VLC_PUBLIC_API libvlc_media_t * libvlc_media_duplicate( libvlc_media_t * );
339
340 /**
341  * Read the meta of the media.
342  *
343  * \param p_meta_desc the media to read
344  * \param e_meta_desc the meta to read
345  * \param p_e an initialized exception pointer
346  * \return the media's meta
347  */
348 VLC_PUBLIC_API char * libvlc_media_get_meta(
349                                    libvlc_media_t *p_meta_desc,
350                                    libvlc_meta_t e_meta,
351                                    libvlc_exception_t *p_e );
352 /**
353  * Get current state of media descriptor object. Possible media states
354  * are defined in libvlc_structures.c ( libvlc_NothingSpecial=0,
355  * libvlc_Opening, libvlc_Buffering, libvlc_Playing, libvlc_Paused,
356  * libvlc_Stopped, libvlc_Ended,
357  * libvlc_Error).
358  *
359  * @see libvlc_state_t
360  * \param p_meta_desc a media descriptor object
361  * \param p_e an initialized exception object
362  * \return state of media descriptor object
363  */
364 VLC_PUBLIC_API libvlc_state_t libvlc_media_get_state(
365                                    libvlc_media_t *p_meta_desc,
366                                    libvlc_exception_t *p_e );
367
368 /**
369  * Get subitems of media descriptor object. This will increment
370  * the reference count of supplied media descriptor object. Use
371  * libvlc_media_list_release() to decrement the reference counting.
372  *
373  * \param p_md media descriptor object
374  * \param p_e initalized exception object
375  * \return list of media descriptor subitems or NULL
376  */
377 VLC_PUBLIC_API libvlc_media_list_t *
378     libvlc_media_subitems( libvlc_media_t *p_md,
379                                       libvlc_exception_t *p_e );
380 /**
381  * Get event manager from media descriptor object.
382  * NOTE: this function doesn't increment reference counting.
383  *
384  * \param p_md a media descriptor object
385  * \param p_e an initialized exception object
386  * \return event manager object
387  */
388 VLC_PUBLIC_API libvlc_event_manager_t *
389     libvlc_media_event_manager( libvlc_media_t * p_md,
390                                            libvlc_exception_t * p_e );
391
392 /**
393  * Get duration of media descriptor object item.
394  *
395  * \param p_md media descriptor object
396  * \param p_e an initialized exception object
397  * \return duration of media item
398  */
399 VLC_PUBLIC_API libvlc_time_t
400    libvlc_media_get_duration( libvlc_media_t * p_md,
401                                          libvlc_exception_t * p_e );
402
403 /**
404  * Get preparsed status for media descriptor object.
405  *
406  * \param p_md media descriptor object
407  * \param p_e an initialized exception object
408  * \return true if media object has been preparsed otherwise it returns false
409  */
410 VLC_PUBLIC_API int
411    libvlc_media_is_preparsed( libvlc_media_t * p_md,
412                                          libvlc_exception_t * p_e );
413
414 /**
415  * Sets media descriptor's user_data. user_data is specialized data
416  * accessed by the host application, VLC.framework uses it as a pointer to
417  * an native object that references a libvlc_media_t pointer
418  *
419  * \param p_md media descriptor object
420  * \param p_new_user_data pointer to user data
421  * \param p_e an initialized exception object
422  */
423 VLC_PUBLIC_API void
424     libvlc_media_set_user_data( libvlc_media_t * p_md,
425                                            void * p_new_user_data,
426                                            libvlc_exception_t * p_e);
427
428 /**
429  * Get media descriptor's user_data. user_data is specialized data
430  * accessed by the host application, VLC.framework uses it as a pointer to
431  * an native object that references a libvlc_media_t pointer
432  *
433  * \param p_md media descriptor object
434  * \param p_e an initialized exception object
435  */
436 VLC_PUBLIC_API void *
437     libvlc_media_get_user_data( libvlc_media_t * p_md,
438                                            libvlc_exception_t * p_e);
439
440 /** @}*/
441
442 /*****************************************************************************
443  * Media Player
444  *****************************************************************************/
445 /** \defgroup libvlc_media_player libvlc_media_player
446  * \ingroup libvlc
447  * LibVLC Media Player, object that let you play a media
448  * in a custom drawable
449  * @{
450  */
451
452 /**
453  * Create an empty Media Player object
454  *
455  * \param p_libvlc_instance the libvlc instance in which the Media Player
456  *        should be created.
457  * \param p_e an initialized exception pointer
458  */
459 VLC_PUBLIC_API libvlc_media_player_t * libvlc_media_player_new( libvlc_instance_t *, libvlc_exception_t * );
460
461 /**
462  * Create a Media Player object from a Media
463  *
464  * \param p_md the media. Afterwards the p_md can be safely
465  *        destroyed.
466  * \param p_e an initialized exception pointer
467  */
468 VLC_PUBLIC_API libvlc_media_player_t * libvlc_media_player_new_from_media( libvlc_media_t *, libvlc_exception_t * );
469
470 /**
471  * Release a media_player after use
472  * Decrement the reference count of a media player object. If the
473  * reference count is 0, then libvlc_media_player_release() will
474  * release the media player object. If the media player object
475  * has been released, then it should not be used again.
476  *
477  * \param p_mi the Media Player to free
478  */
479 VLC_PUBLIC_API void libvlc_media_player_release( libvlc_media_player_t * );
480
481 /**
482  * Retain a reference to a media player object. Use
483  * libvlc_media_player_release() to decrement reference count.
484  *
485  * \param p_mi media player object
486  */
487 VLC_PUBLIC_API void libvlc_media_player_retain( libvlc_media_player_t * );
488
489 /**
490  * Set the media that will be used by the media_player. If any,
491  * previous md will be released.
492  *
493  * \param p_mi the Media Player
494  * \param p_md the Media. Afterwards the p_md can be safely
495  *        destroyed.
496  * \param p_e an initialized exception pointer
497  */
498 VLC_PUBLIC_API void libvlc_media_player_set_media( libvlc_media_player_t *, libvlc_media_t *, libvlc_exception_t * );
499
500 /**
501  * Get the media used by the media_player.
502  *
503  * \param p_mi the Media Player
504  * \param p_e an initialized exception pointer
505  * \return the media associated with p_mi, or NULL if no
506  *         media is associated
507  */
508 VLC_PUBLIC_API libvlc_media_t * libvlc_media_player_get_media( libvlc_media_player_t *, libvlc_exception_t * );
509
510 /**
511  * Get the Event Manager from which the media player send event.
512  *
513  * \param p_mi the Media Player
514  * \param p_e an initialized exception pointer
515  * \return the event manager associated with p_mi
516  */
517 VLC_PUBLIC_API libvlc_event_manager_t * libvlc_media_player_event_manager ( libvlc_media_player_t *, libvlc_exception_t * );
518
519 /**
520  * is_playing
521  *
522  * \param p_mi the Media Player
523  * \param p_e an initialized exception pointer
524  * \return 1 if the media player is playing, 0 otherwise
525  */
526 VLC_PUBLIC_API int libvlc_media_player_is_playing ( libvlc_media_player_t *, libvlc_exception_t * );
527
528 /**
529  * Play
530  *
531  * \param p_mi the Media Player
532  * \param p_e an initialized exception pointer
533  */
534 VLC_PUBLIC_API void libvlc_media_player_play ( libvlc_media_player_t *, libvlc_exception_t * );
535
536 /**
537  * Pause
538  *
539  * \param p_mi the Media Player
540  * \param p_e an initialized exception pointer
541  */
542 VLC_PUBLIC_API void libvlc_media_player_pause ( libvlc_media_player_t *, libvlc_exception_t * );
543
544 /**
545  * Stop
546  *
547  * \param p_mi the Media Player
548  * \param p_e an initialized exception pointer
549  */
550 VLC_PUBLIC_API void libvlc_media_player_stop ( libvlc_media_player_t *, libvlc_exception_t * );
551
552 /**
553  * Set an X Window System drawable where the media player should render its
554  * video output. If LibVLC was built without X11 output support, then this has
555  * no effects.
556  *
557  * The specified identifier must correspond to an existing Input/Output class
558  * X11 drawable. The caller shall ensure that the X11 server is the same as the
559  * one the VLC instance has been configured with.
560  * If XVideo is <b>not</b> supported or usable, it is assumed that the drawable
561  * has the following properties in common with the default X11 screen:
562  * depth, scan line pad, black pixel. This is a bug.
563  * Using a pixmap rather than a window might not work as VLC might try to
564  * get window properties and subscribe to window events.
565  *
566  * \param p_mi the Media Player
567  * \param drawable the ID of the X drawable
568  * \param p_e an initialized exception pointer
569  */
570 VLC_PUBLIC_API void libvlc_media_player_set_xid ( libvlc_media_player_t *p_mi, uint32_t drawable, libvlc_exception_t *p_e );
571
572 /**
573  * Set a Win32/Win64 API window handle (HWND) where the media player should
574  * render its video output. If LibVLC was built without Win32/Win64 API output
575  * support, then this has no effects.
576  *
577  * \param p_mi the Media Player
578  * \param drawable windows handle of the drawable
579  * \param p_e an initialized exception pointer
580  */
581 VLC_PUBLIC_API void libvlc_media_player_set_hwnd ( libvlc_media_player_t *p_mi, void *drawable, libvlc_exception_t *p_e );
582
583 /**
584  * Set the drawable where the media player should render its video output.
585  *
586  * On Windows 32-bits, a window handle (HWND) is expected.
587  * On Windows 64-bits, this function will always fail.
588  *
589  * On OSX, a CGrafPort is expected.
590  *
591  * Otherwise, this shall be the identifier of an existing X11 drawable (window
592  * or pixmap). It is assumed that the X11 server is the same as the one in
593  * x11-display if configured. If XVideo is <b>not</b> supported, it is assumed
594  * that the drawable has the same pixmap format as the default X11 screen
595  * (especially depth, scan line pad, black pixel); this is a bug.
596  *
597  * \param p_mi the Media Player
598  * \param drawable the libvlc_drawable_t where the media player
599  *        should render its video
600  * \param p_e an initialized exception pointer
601  */
602 VLC_PUBLIC_API void libvlc_media_player_set_drawable ( libvlc_media_player_t *, libvlc_drawable_t, libvlc_exception_t * );
603
604 /**
605  * Get the drawable where the media player should render its video output
606  *
607  * \param p_mi the Media Player
608  * \param p_e an initialized exception pointer
609  * \return the libvlc_drawable_t where the media player
610  *         should render its video
611  */
612 VLC_PUBLIC_API libvlc_drawable_t
613                     libvlc_media_player_get_drawable ( libvlc_media_player_t *, libvlc_exception_t * );
614
615 /** \bug This might go away ... to be replaced by a broader system */
616
617 /**
618  * Get the current movie length (in ms).
619  *
620  * \param p_mi the Media Player
621  * \param p_e an initialized exception pointer
622  * \return the movie length (in ms).
623  */
624 VLC_PUBLIC_API libvlc_time_t libvlc_media_player_get_length( libvlc_media_player_t *, libvlc_exception_t *);
625
626 /**
627  * Get the current movie time (in ms).
628  *
629  * \param p_mi the Media Player
630  * \param p_e an initialized exception pointer
631  * \return the movie time (in ms).
632  */
633 VLC_PUBLIC_API libvlc_time_t libvlc_media_player_get_time( libvlc_media_player_t *, libvlc_exception_t *);
634
635 /**
636  * Set the movie time (in ms).
637  *
638  * \param p_mi the Media Player
639  * \param the movie time (in ms).
640  * \param p_e an initialized exception pointer
641  */
642 VLC_PUBLIC_API void libvlc_media_player_set_time( libvlc_media_player_t *, libvlc_time_t, libvlc_exception_t *);
643
644 /**
645  * Get movie position.
646  *
647  * \param p_mi the Media Player
648  * \param p_e an initialized exception pointer
649  * \return movie position
650  */
651 VLC_PUBLIC_API float libvlc_media_player_get_position( libvlc_media_player_t *, libvlc_exception_t *);
652
653 /**
654  * Set movie position.
655  *
656  * \param p_mi the Media Player
657  * \param p_e an initialized exception pointer
658  * \return movie position
659  */
660 VLC_PUBLIC_API void libvlc_media_player_set_position( libvlc_media_player_t *, float, libvlc_exception_t *);
661
662 /**
663  * Set movie chapter
664  *
665  * \param p_mi the Media Player
666  * \param i_chapter chapter number to play
667  * \param p_e an initialized exception pointer
668  */
669 VLC_PUBLIC_API void libvlc_media_player_set_chapter( libvlc_media_player_t *, int, libvlc_exception_t *);
670
671 /**
672  * Get movie chapter
673  *
674  * \param p_mi the Media Player
675  * \param p_e an initialized exception pointer
676  * \return chapter number currently playing
677  */
678 VLC_PUBLIC_API int libvlc_media_player_get_chapter( libvlc_media_player_t *, libvlc_exception_t * );
679
680 /**
681  * Get movie chapter count
682  *
683  * \param p_mi the Media Player
684  * \param p_e an initialized exception pointer
685  * \return number of chapters in movie
686  */
687 VLC_PUBLIC_API int libvlc_media_player_get_chapter_count( libvlc_media_player_t *, libvlc_exception_t *);
688 VLC_PUBLIC_API int libvlc_media_player_will_play        ( libvlc_media_player_t *, libvlc_exception_t *);
689
690 /**
691  * Get title chapter count
692  *
693  * \param p_mi the Media Player
694  * \param i_title title
695  * \param p_e an initialized exception pointer
696  * \return number of chapters in title
697  */
698 VLC_PUBLIC_API int libvlc_media_player_get_chapter_count_for_title(
699                        libvlc_media_player_t *, int, libvlc_exception_t *);
700
701 /**
702  * Set movie title
703  *
704  * \param p_mi the Media Player
705  * \param i_title title number to play
706  * \param p_e an initialized exception pointer
707  */
708 VLC_PUBLIC_API void libvlc_media_player_set_title( libvlc_media_player_t *, int, libvlc_exception_t *);
709
710 /**
711  * Get movie title
712  *
713  * \param p_mi the Media Player
714  * \param p_e an initialized exception pointer
715  * \return title number currently playing
716  */
717 VLC_PUBLIC_API int libvlc_media_player_get_title( libvlc_media_player_t *, libvlc_exception_t *);
718
719 /**
720  * Get movie title count
721  *
722  * \param p_mi the Media Player
723  * \param p_e an initialized exception pointer
724  * \return title number count
725  */
726 VLC_PUBLIC_API int libvlc_media_player_get_title_count( libvlc_media_player_t *, libvlc_exception_t *);
727
728 /**
729  * Set previous chapter
730  *
731  * \param p_mi the Media Player
732  * \param p_e an initialized exception pointer
733  */
734 VLC_PUBLIC_API void libvlc_media_player_previous_chapter( libvlc_media_player_t *, libvlc_exception_t *);
735
736 /**
737  * Set next chapter
738  *
739  * \param p_mi the Media Player
740  * \param p_e an initialized exception pointer
741  */
742 VLC_PUBLIC_API void libvlc_media_player_next_chapter( libvlc_media_player_t *, libvlc_exception_t *);
743
744 /**
745  * Get movie play rate
746  *
747  * \param p_mi the Media Player
748  * \param p_e an initialized exception pointer
749  * \return movie play rate
750  */
751 VLC_PUBLIC_API float libvlc_media_player_get_rate( libvlc_media_player_t *, libvlc_exception_t *);
752
753 /**
754  * Set movie play rate
755  *
756  * \param p_mi the Media Player
757  * \param movie play rate to set
758  * \param p_e an initialized exception pointer
759  */
760 VLC_PUBLIC_API void libvlc_media_player_set_rate( libvlc_media_player_t *, float, libvlc_exception_t *);
761
762 /**
763  * Get current movie state
764  *
765  * \param p_mi the Media Player
766  * \param p_e an initialized exception pointer
767  * \return current movie state as libvlc_state_t
768  */
769 VLC_PUBLIC_API libvlc_state_t libvlc_media_player_get_state( libvlc_media_player_t *, libvlc_exception_t *);
770
771 /**
772  * Get movie fps rate
773  *
774  * \param p_mi the Media Player
775  * \param p_e an initialized exception pointer
776  * \return frames per second (fps) for this playing movie
777  */
778 VLC_PUBLIC_API float libvlc_media_player_get_fps( libvlc_media_player_t *, libvlc_exception_t *);
779
780 /** end bug */
781
782 /**
783  * Does this media player have a video output?
784  *
785  * \param p_md the media player
786  * \param p_e an initialized exception pointer
787  */
788 VLC_PUBLIC_API int  libvlc_media_player_has_vout( libvlc_media_player_t *, libvlc_exception_t *);
789
790 /**
791  * Is this media player seekable?
792  *
793  * \param p_input the input
794  * \param p_e an initialized exception pointer
795  */
796 VLC_PUBLIC_API int libvlc_media_player_is_seekable( libvlc_media_player_t *p_mi, libvlc_exception_t *p_e );
797
798 /**
799  * Can this media player be paused?
800  *
801  * \param p_input the input
802  * \param p_e an initialized exception pointer
803  */
804 VLC_PUBLIC_API int libvlc_media_player_can_pause( libvlc_media_player_t *p_mi, libvlc_exception_t *p_e );
805
806 /**
807  * Release (free) libvlc_track_description_t
808  *
809  * \param p_track_description the structure to release
810  */
811 VLC_PUBLIC_API void libvlc_track_description_release( libvlc_track_description_t *p_track_description );
812
813 /** \defgroup libvlc_video libvlc_video
814  * \ingroup libvlc_media_player
815  * LibVLC Video handling
816  * @{
817  */
818
819 /**
820  * Toggle fullscreen status on video output.
821  *
822  * \param p_mediaplayer the media player
823  * \param p_e an initialized exception pointer
824  */
825 VLC_PUBLIC_API void libvlc_toggle_fullscreen( libvlc_media_player_t *, libvlc_exception_t * );
826
827 /**
828  * Enable or disable fullscreen on a video output.
829  *
830  * \param p_mediaplayer the media player
831  * \param b_fullscreen boolean for fullscreen status
832  * \param p_e an initialized exception pointer
833  */
834 VLC_PUBLIC_API void libvlc_set_fullscreen( libvlc_media_player_t *, int, libvlc_exception_t * );
835
836 /**
837  * Get current fullscreen status.
838  *
839  * \param p_mediaplayer the media player
840  * \param p_e an initialized exception pointer
841  * \return the fullscreen status (boolean)
842  */
843 VLC_PUBLIC_API int libvlc_get_fullscreen( libvlc_media_player_t *, libvlc_exception_t * );
844
845 /**
846  * Get current video height.
847  *
848  * \param p_mediaplayer the media player
849  * \param p_e an initialized exception pointer
850  * \return the video height
851  */
852 VLC_PUBLIC_API int libvlc_video_get_height( libvlc_media_player_t *, libvlc_exception_t * );
853
854 /**
855  * Get current video width.
856  *
857  * \param p_mediaplayer the media player
858  * \param p_e an initialized exception pointer
859  * \return the video width
860  */
861 VLC_PUBLIC_API int libvlc_video_get_width( libvlc_media_player_t *, libvlc_exception_t * );
862
863 /**
864  * Get current video aspect ratio.
865  *
866  * \param p_mediaplayer the media player
867  * \param p_e an initialized exception pointer
868  * \return the video aspect ratio
869  */
870 VLC_PUBLIC_API char *libvlc_video_get_aspect_ratio( libvlc_media_player_t *, libvlc_exception_t * );
871
872 /**
873  * Set new video aspect ratio.
874  *
875  * \param p_mediaplayer the media player
876  * \param psz_aspect new video aspect-ratio
877  * \param p_e an initialized exception pointer
878  */
879 VLC_PUBLIC_API void libvlc_video_set_aspect_ratio( libvlc_media_player_t *, char *, libvlc_exception_t * );
880
881 /**
882  * Get current video subtitle.
883  *
884  * \param p_mediaplayer the media player
885  * \param p_e an initialized exception pointer
886  * \return the video subtitle selected
887  */
888 VLC_PUBLIC_API int libvlc_video_get_spu( libvlc_media_player_t *, libvlc_exception_t * );
889
890 /**
891  * Get the number of available video subtitles.
892  *
893  * \param p_mediaplayer the media player
894  * \param p_e an initialized exception pointer
895  * \return the number of available video subtitles
896  */
897 VLC_PUBLIC_API int libvlc_video_get_spu_count( libvlc_media_player_t *, libvlc_exception_t * );
898
899 /**
900  * Get the description of available video subtitles.
901  *
902  * \param p_mediaplayer the media player
903  * \param p_e an initialized exception pointer
904  * \return list containing description of available video subtitles
905  */
906 VLC_PUBLIC_API libvlc_track_description_t *
907         libvlc_video_get_spu_description( libvlc_media_player_t *, libvlc_exception_t * );
908
909 /**
910  * Set new video subtitle.
911  *
912  * \param p_mediaplayer the media player
913  * \param i_spu new video subtitle to select
914  * \param p_e an initialized exception pointer
915  */
916 VLC_PUBLIC_API void libvlc_video_set_spu( libvlc_media_player_t *, int , libvlc_exception_t * );
917
918 /**
919  * Set new video subtitle file.
920  *
921  * \param p_mediaplayer the media player
922  * \param psz_subtitle new video subtitle file
923  * \param p_e an initialized exception pointer
924  * \return the success status (boolean)
925  */
926 VLC_PUBLIC_API int libvlc_video_set_subtitle_file( libvlc_media_player_t *, char *, libvlc_exception_t * );
927
928 /**
929  * Get the description of available titles.
930  *
931  * \param p_mediaplayer the media player
932  * \param p_e an initialized exception pointer
933  * \return list containing description of available titles
934  */
935 VLC_PUBLIC_API libvlc_track_description_t *
936         libvlc_video_get_title_description( libvlc_media_player_t *, libvlc_exception_t * );
937
938 /**
939  * Get the description of available chapters for specific title.
940  *
941  * \param p_mediaplayer the media player
942  * \param i_title selected title
943  * \param p_e an initialized exception pointer
944  * \return list containing description of available chapter for title i_title
945  */
946 VLC_PUBLIC_API libvlc_track_description_t *
947         libvlc_video_get_chapter_description( libvlc_media_player_t *, int, libvlc_exception_t * );
948
949 /**
950  * Get current crop filter geometry.
951  *
952  * \param p_mediaplayer the media player
953  * \param p_e an initialized exception pointer
954  * \return the crop filter geometry
955  */
956 VLC_PUBLIC_API char *libvlc_video_get_crop_geometry( libvlc_media_player_t *, libvlc_exception_t * );
957
958 /**
959  * Set new crop filter geometry.
960  *
961  * \param p_mediaplayer the media player
962  * \param psz_geometry new crop filter geometry
963  * \param p_e an initialized exception pointer
964  */
965 VLC_PUBLIC_API void libvlc_video_set_crop_geometry( libvlc_media_player_t *, char *, libvlc_exception_t * );
966
967 /**
968  * Toggle teletext transparent status on video output.
969  *
970  * \param p_mediaplayer the media player
971  * \param p_e an initialized exception pointer
972  */
973 VLC_PUBLIC_API void libvlc_toggle_teletext( libvlc_media_player_t *, libvlc_exception_t * );
974
975 /**
976  * Get current teletext page requested.
977  *
978  * \param p_mediaplayer the media player
979  * \param p_e an initialized exception pointer
980  * \return the current teletext page requested.
981  */
982 VLC_PUBLIC_API int libvlc_video_get_teletext( libvlc_media_player_t *, libvlc_exception_t * );
983
984 /**
985  * Set new teletext page to retrieve.
986  *
987  * \param p_mediaplayer the media player
988  * \param i_page teletex page number requested
989  * \param p_e an initialized exception pointer
990  */
991 VLC_PUBLIC_API void libvlc_video_set_teletext( libvlc_media_player_t *, int, libvlc_exception_t * );
992
993 /**
994  * Get number of available video tracks.
995  *
996  * \param p_mi media player
997  * \param p_e an initialized exception
998  * \return the number of available video tracks (int)
999  */
1000 VLC_PUBLIC_API int libvlc_video_get_track_count( libvlc_media_player_t *,  libvlc_exception_t * );
1001
1002 /**
1003  * Get the description of available video tracks.
1004  *
1005  * \param p_mi media player
1006  * \param p_e an initialized exception
1007  * \return list with description of available video tracks
1008  */
1009 VLC_PUBLIC_API libvlc_track_description_t *
1010         libvlc_video_get_track_description( libvlc_media_player_t *,  libvlc_exception_t * );
1011
1012 /**
1013  * Get current video track.
1014  *
1015  * \param p_mi media player
1016  * \param p_e an initialized exception pointer
1017  * \return the video track (int)
1018  */
1019 VLC_PUBLIC_API int libvlc_video_get_track( libvlc_media_player_t *, libvlc_exception_t * );
1020
1021 /**
1022  * Set video track.
1023  *
1024  * \param p_mi media player
1025  * \param i_track the track (int)
1026  * \param p_e an initialized exception pointer
1027  */
1028 VLC_PUBLIC_API void libvlc_video_set_track( libvlc_media_player_t *, int, libvlc_exception_t * );
1029
1030 /**
1031  * Take a snapshot of the current video window.
1032  *
1033  * If i_width AND i_height is 0, original size is used.
1034  * If i_width XOR i_height is 0, original aspect-ratio is preserved.
1035  *
1036  * \param p_mediaplayer the media player
1037  * \param psz_filepath the path where to save the screenshot to
1038  * \param i_width the snapshot's width
1039  * \param i_height the snapshot's height
1040  * \param p_e an initialized exception pointer
1041  */
1042 VLC_PUBLIC_API void libvlc_video_take_snapshot( libvlc_media_player_t *, char *,unsigned int, unsigned int, libvlc_exception_t * );
1043
1044 /**
1045  * Resize the current video output window.
1046  *
1047  * \param p_instance libvlc instance
1048  * \param width new width for video output window
1049  * \param height new height for video output window
1050  * \param p_e an initialized exception pointer
1051  * \return the success status (boolean)
1052  */
1053 VLC_PUBLIC_API void libvlc_video_resize( libvlc_media_player_t *, int, int, libvlc_exception_t *);
1054
1055 /**
1056  * Change the parent for the current the video output.
1057  *
1058  * \param p_instance libvlc instance
1059  * \param drawable the new parent window (Drawable on X11, CGrafPort on MacOSX, HWND on Win32)
1060  * \param p_e an initialized exception pointer
1061  * \return the success status (boolean)
1062  */
1063 VLC_PUBLIC_API int libvlc_video_reparent( libvlc_media_player_t *, libvlc_drawable_t, libvlc_exception_t * );
1064
1065 /**
1066  * Tell windowless video output to redraw rectangular area (MacOS X only).
1067  *
1068  * \param p_instance libvlc instance
1069  * \param area coordinates within video drawable
1070  * \param p_e an initialized exception pointer
1071  */
1072 VLC_PUBLIC_API void libvlc_video_redraw_rectangle( libvlc_media_player_t *, const libvlc_rectangle_t *, libvlc_exception_t * );
1073
1074 /**
1075  * Set the default video output size.
1076  *
1077  * This setting will be used as default for all video outputs.
1078  *
1079  * \param p_instance libvlc instance
1080  * \param width new width for video drawable
1081  * \param height new height for video drawable
1082  * \param p_e an initialized exception pointer
1083  */
1084 VLC_PUBLIC_API void libvlc_video_set_size( libvlc_instance_t *, int, int, libvlc_exception_t * );
1085
1086 /**
1087  * Set the default video output viewport for a windowless video output
1088  * (MacOS X only).
1089  *
1090  * This setting will be used as default for all video outputs.
1091  *
1092  * \param p_instance libvlc instance
1093  * \param view coordinates within video drawable
1094  * \param clip coordinates within video drawable
1095  * \param p_e an initialized exception pointer
1096  */
1097 VLC_PUBLIC_API void libvlc_video_set_viewport( libvlc_instance_t *, const libvlc_rectangle_t *, const libvlc_rectangle_t *, libvlc_exception_t * );
1098
1099 /** @} video */
1100
1101 /** \defgroup libvlc_audio libvlc_audio
1102  * \ingroup libvlc_media_player
1103  * LibVLC Audio handling
1104  * @{
1105  */
1106
1107 /**
1108  * Audio device types
1109  */
1110 typedef enum libvlc_audio_output_device_types_t {
1111     libvlc_AudioOutputDevice_Error  = -1,
1112     libvlc_AudioOutputDevice_Mono   =  1,
1113     libvlc_AudioOutputDevice_Stereo =  2,
1114     libvlc_AudioOutputDevice_2F2R   =  4,
1115     libvlc_AudioOutputDevice_3F2R   =  5,
1116     libvlc_AudioOutputDevice_5_1    =  6,
1117     libvlc_AudioOutputDevice_6_1    =  7,
1118     libvlc_AudioOutputDevice_7_1    =  8,
1119     libvlc_AudioOutputDevice_SPDIF  = 10
1120 } libvlc_audio_output_device_types_t;
1121
1122 /**
1123  * Audio channels
1124  */
1125 typedef enum libvlc_audio_output_channel_t {
1126     libvlc_AudioChannel_Error   = -1,
1127     libvlc_AudioChannel_Stereo  =  1,
1128     libvlc_AudioChannel_RStereo =  2,
1129     libvlc_AudioChannel_Left    =  3,
1130     libvlc_AudioChannel_Right   =  4,
1131     libvlc_AudioChannel_Dolbys  =  5
1132 } libvlc_audio_output_channel_t;
1133
1134
1135 /**
1136  * Get the list of available audio outputs
1137  *
1138  * \param p_instance libvlc instance
1139  * \param p_e an initialized exception pointer
1140  * \return list of available audio outputs, at the end free it with
1141 *          \see libvlc_audio_output_list_release \see libvlc_audio_output_t
1142  */
1143 VLC_PUBLIC_API libvlc_audio_output_t *
1144         libvlc_audio_output_list_get( libvlc_instance_t *,
1145                                       libvlc_exception_t * );
1146
1147 /**
1148  * Free the list of available audio outputs
1149  *
1150  * \param p_list list with audio outputs for release
1151  */
1152 VLC_PUBLIC_API void libvlc_audio_output_list_release( libvlc_audio_output_t * );
1153
1154 /**
1155  * Set the audio output.
1156  * Change will be applied after stop and play.
1157  *
1158  * \param p_instance libvlc instance
1159  * \param psz_name name of audio output,
1160  *               use psz_name of \see libvlc_audio_output_t
1161  * \return true if function succeded
1162  */
1163 VLC_PUBLIC_API int libvlc_audio_output_set( libvlc_instance_t *,
1164                                             const char * );
1165
1166 /**
1167  * Get count of devices for audio output, these devices are hardware oriented
1168  * like analor or digital output of sound card
1169  *
1170  * \param p_instance libvlc instance
1171  * \param psz_audio_output - name of audio output, \see libvlc_audio_output_t
1172  * \return number of devices
1173  */
1174 VLC_PUBLIC_API int libvlc_audio_output_device_count( libvlc_instance_t *,
1175                                                      const char * );
1176
1177 /**
1178  * Get long name of device, if not available short name given
1179  *
1180  * \param p_instance libvlc instance
1181  * \param psz_audio_output - name of audio output, \see libvlc_audio_output_t
1182  * \param i_device device index
1183  * \return long name of device
1184  */
1185 VLC_PUBLIC_API char * libvlc_audio_output_device_longname( libvlc_instance_t *,
1186                                                            const char *,
1187                                                            int );
1188
1189 /**
1190  * Get id name of device
1191  *
1192  * \param p_instance libvlc instance
1193  * \param psz_audio_output - name of audio output, \see libvlc_audio_output_t
1194  * \param i_device device index
1195  * \return id name of device, use for setting device, need to be free after use
1196  */
1197 VLC_PUBLIC_API char * libvlc_audio_output_device_id( libvlc_instance_t *,
1198                                                      const char *,
1199                                                      int );
1200
1201 /**
1202  * Set device for using
1203  *
1204  * \param p_instance libvlc instance
1205  * \param psz_audio_output - name of audio output, \see libvlc_audio_output_t
1206  * \param psz_device_id device
1207  */
1208 VLC_PUBLIC_API void libvlc_audio_output_device_set( libvlc_instance_t *,
1209                                                     const char *,
1210                                                     const char * );
1211
1212 /**
1213  * Get current audio device type. Device type describes something like
1214  * character of output sound - stereo sound, 2.1, 5.1 etc
1215  *
1216  * \param p_instance vlc instance
1217  * \param p_e an initialized exception pointer
1218  * \return the audio devices type \see libvlc_audio_output_device_types_t
1219  */
1220 VLC_PUBLIC_API int libvlc_audio_output_get_device_type(
1221         libvlc_instance_t *, libvlc_exception_t * );
1222
1223 /**
1224  * Set current audio device type.
1225  *
1226  * \param p_instance vlc instance
1227  * \param device_type the audio device type,
1228           according to \see libvlc_audio_output_device_types_t
1229  * \param p_e an initialized exception pointer
1230  */
1231 VLC_PUBLIC_API void libvlc_audio_output_set_device_type( libvlc_instance_t *,
1232                                                          int,
1233                                                          libvlc_exception_t * );
1234
1235
1236 /**
1237  * Toggle mute status.
1238  *
1239  * \param p_instance libvlc instance
1240  * \param p_e an initialized exception pointer
1241  */
1242 VLC_PUBLIC_API void libvlc_audio_toggle_mute( libvlc_instance_t *, libvlc_exception_t * );
1243
1244 /**
1245  * Get current mute status.
1246  *
1247  * \param p_instance libvlc instance
1248  * \param p_e an initialized exception pointer
1249  * \return the mute status (boolean)
1250  */
1251 VLC_PUBLIC_API int libvlc_audio_get_mute( libvlc_instance_t *, libvlc_exception_t * );
1252
1253 /**
1254  * Set mute status.
1255  *
1256  * \param p_instance libvlc instance
1257  * \param status If status is true then mute, otherwise unmute
1258  * \param p_e an initialized exception pointer
1259  */
1260 VLC_PUBLIC_API void libvlc_audio_set_mute( libvlc_instance_t *, int , libvlc_exception_t * );
1261
1262 /**
1263  * Get current audio level.
1264  *
1265  * \param p_instance libvlc instance
1266  * \param p_e an initialized exception pointer
1267  * \return the audio level (int)
1268  */
1269 VLC_PUBLIC_API int libvlc_audio_get_volume( libvlc_instance_t *, libvlc_exception_t * );
1270
1271 /**
1272  * Set current audio level.
1273  *
1274  * \param p_instance libvlc instance
1275  * \param i_volume the volume (int)
1276  * \param p_e an initialized exception pointer
1277  */
1278 VLC_PUBLIC_API void libvlc_audio_set_volume( libvlc_instance_t *, int, libvlc_exception_t *);
1279
1280 /**
1281  * Get number of available audio tracks.
1282  *
1283  * \param p_mi media player
1284  * \param p_e an initialized exception
1285  * \return the number of available audio tracks (int)
1286  */
1287 VLC_PUBLIC_API int libvlc_audio_get_track_count( libvlc_media_player_t *,  libvlc_exception_t * );
1288
1289  /**
1290  * Get the description of available audio tracks.
1291  *
1292  * \param p_mi media player
1293  * \param p_e an initialized exception
1294  * \return list with description of available audio tracks
1295  */
1296 VLC_PUBLIC_API libvlc_track_description_t *
1297         libvlc_audio_get_track_description( libvlc_media_player_t *,  libvlc_exception_t * );
1298
1299 /**
1300  * Get current audio track.
1301  *
1302  * \param p_mi media player
1303  * \param p_e an initialized exception pointer
1304  * \return the audio track (int)
1305  */
1306 VLC_PUBLIC_API int libvlc_audio_get_track( libvlc_media_player_t *, libvlc_exception_t * );
1307
1308 /**
1309  * Set current audio track.
1310  *
1311  * \param p_mi media player
1312  * \param i_track the track (int)
1313  * \param p_e an initialized exception pointer
1314  */
1315 VLC_PUBLIC_API void libvlc_audio_set_track( libvlc_media_player_t *, int, libvlc_exception_t * );
1316
1317 /**
1318  * Get current audio channel.
1319  *
1320  * \param p_instance vlc instance
1321  * \param p_e an initialized exception pointer
1322  * \return the audio channel \see libvlc_audio_output_channel_t
1323  */
1324 VLC_PUBLIC_API int
1325     libvlc_audio_get_channel( libvlc_instance_t *, libvlc_exception_t * );
1326
1327 /**
1328  * Set current audio channel.
1329  *
1330  * \param p_instance vlc instance
1331  * \param channel the audio channel, \see libvlc_audio_output_channel_t
1332  * \param p_e an initialized exception pointer
1333  */
1334 VLC_PUBLIC_API void libvlc_audio_set_channel( libvlc_instance_t *,
1335                                               int,
1336                                               libvlc_exception_t * );
1337
1338 /** @} audio */
1339
1340 /** @} media_player */
1341
1342 /*****************************************************************************
1343  * Event handling
1344  *****************************************************************************/
1345
1346 /** \defgroup libvlc_event libvlc_event
1347  * \ingroup libvlc_core
1348  * LibVLC Events
1349  * @{
1350  */
1351
1352 /**
1353  * Register for an event notification.
1354  *
1355  * \param p_event_manager the event manager to which you want to attach to.
1356  *        Generally it is obtained by vlc_my_object_event_manager() where
1357  *        my_object is the object you want to listen to.
1358  * \param i_event_type the desired event to which we want to listen
1359  * \param f_callback the function to call when i_event_type occurs
1360  * \param user_data user provided data to carry with the event
1361  * \param p_e an initialized exception pointer
1362  */
1363 VLC_PUBLIC_API void libvlc_event_attach( libvlc_event_manager_t *p_event_manager,
1364                                          libvlc_event_type_t i_event_type,
1365                                          libvlc_callback_t f_callback,
1366                                          void *user_data,
1367                                          libvlc_exception_t *p_e );
1368
1369 /**
1370  * Unregister an event notification.
1371  *
1372  * \param p_event_manager the event manager
1373  * \param i_event_type the desired event to which we want to unregister
1374  * \param f_callback the function to call when i_event_type occurs
1375  * \param p_user_data user provided data to carry with the event
1376  * \param p_e an initialized exception pointer
1377  */
1378 VLC_PUBLIC_API void libvlc_event_detach( libvlc_event_manager_t *p_event_manager,
1379                                          libvlc_event_type_t i_event_type,
1380                                          libvlc_callback_t f_callback,
1381                                          void *p_user_data,
1382                                          libvlc_exception_t *p_e );
1383
1384 /**
1385  * Get an event's type name.
1386  *
1387  * \param i_event_type the desired event
1388  */
1389 VLC_PUBLIC_API const char * libvlc_event_type_name( libvlc_event_type_t event_type );
1390
1391 /** @} */
1392
1393 /*****************************************************************************
1394  * Media Library
1395  *****************************************************************************/
1396 /** \defgroup libvlc_media_library libvlc_media_library
1397  * \ingroup libvlc
1398  * LibVLC Media Library
1399  * @{
1400  */
1401 VLC_PUBLIC_API libvlc_media_library_t *
1402     libvlc_media_library_new( libvlc_instance_t * p_inst,
1403                               libvlc_exception_t * p_e );
1404
1405 /**
1406  * Release media library object. This functions decrements the
1407  * reference count of the media library object. If it reaches 0,
1408  * then the object will be released.
1409  *
1410  * \param p_mlib media library object
1411  */
1412 VLC_PUBLIC_API void
1413     libvlc_media_library_release( libvlc_media_library_t * p_mlib );
1414
1415 /**
1416  * Retain a reference to a media library object. This function will
1417  * increment the reference counting for this object. Use
1418  * libvlc_media_library_release() to decrement the reference count.
1419  *
1420  * \param p_mlib media library object
1421  */
1422 VLC_PUBLIC_API void
1423     libvlc_media_library_retain( libvlc_media_library_t * p_mlib );
1424
1425 /**
1426  * Load media library.
1427  *
1428  * \param p_mlib media library object
1429  * \param p_e an initialized exception object.
1430  */
1431 VLC_PUBLIC_API void
1432     libvlc_media_library_load( libvlc_media_library_t * p_mlib,
1433                                libvlc_exception_t * p_e );
1434
1435 /**
1436  * Save media library.
1437  *
1438  * \param p_mlib media library object
1439  * \param p_e an initialized exception object.
1440  */
1441 VLC_PUBLIC_API void
1442     libvlc_media_library_save( libvlc_media_library_t * p_mlib,
1443                                libvlc_exception_t * p_e );
1444
1445 /**
1446  * Get media library subitems.
1447  *
1448  * \param p_mlib media library object
1449  * \param p_e an initialized exception object.
1450  * \return media list subitems
1451  */
1452 VLC_PUBLIC_API libvlc_media_list_t *
1453     libvlc_media_library_media_list( libvlc_media_library_t * p_mlib,
1454                                      libvlc_exception_t * p_e );
1455
1456
1457 /** @} */
1458
1459
1460 /*****************************************************************************
1461  * Services/Media Discovery
1462  *****************************************************************************/
1463 /** \defgroup libvlc_media_discoverer libvlc_media_discoverer
1464  * \ingroup libvlc
1465  * LibVLC Media Discoverer
1466  * @{
1467  */
1468
1469 /**
1470  * Discover media service by name.
1471  *
1472  * \param p_inst libvlc instance
1473  * \param psz_name service name
1474  * \param p_e an initialized exception object
1475  * \return media discover object
1476  */
1477 VLC_PUBLIC_API libvlc_media_discoverer_t *
1478 libvlc_media_discoverer_new_from_name( libvlc_instance_t * p_inst,
1479                                        const char * psz_name,
1480                                        libvlc_exception_t * p_e );
1481
1482 /**
1483  * Release media discover object. If the reference count reaches 0, then
1484  * the object will be released.
1485  *
1486  * \param p_mdis media service discover object
1487  */
1488 VLC_PUBLIC_API void   libvlc_media_discoverer_release( libvlc_media_discoverer_t * p_mdis );
1489
1490 /**
1491  * Get media service discover object its localized name.
1492  *
1493  * \param media discover object
1494  * \return localized name
1495  */
1496 VLC_PUBLIC_API char * libvlc_media_discoverer_localized_name( libvlc_media_discoverer_t * p_mdis );
1497
1498 /**
1499  * Get media service discover media list.
1500  *
1501  * \param p_mdis media service discover object
1502  * \return list of media items
1503  */
1504 VLC_PUBLIC_API libvlc_media_list_t * libvlc_media_discoverer_media_list( libvlc_media_discoverer_t * p_mdis );
1505
1506 /**
1507  * Get event manager from media service discover object.
1508  *
1509  * \param p_mdis media service discover object
1510  * \return event manager object.
1511  */
1512 VLC_PUBLIC_API libvlc_event_manager_t *
1513         libvlc_media_discoverer_event_manager( libvlc_media_discoverer_t * p_mdis );
1514
1515 /**
1516  * Query if media service discover object is running.
1517  *
1518  * \param p_mdis media service discover object
1519  * \return true if running, false if not
1520  */
1521 VLC_PUBLIC_API int
1522         libvlc_media_discoverer_is_running( libvlc_media_discoverer_t * p_mdis );
1523
1524 /**@} */
1525
1526
1527 /*****************************************************************************
1528  * Message log handling
1529  *****************************************************************************/
1530
1531 /** \defgroup libvlc_log libvlc_log
1532  * \ingroup libvlc_core
1533  * LibVLC Message Logging
1534  * @{
1535  */
1536
1537 /**
1538  * Return the VLC messaging verbosity level.
1539  *
1540  * \param p_instance libvlc instance
1541  * \param p_e an initialized exception pointer
1542  * \return verbosity level for messages
1543  */
1544 VLC_PUBLIC_API unsigned libvlc_get_log_verbosity( const libvlc_instance_t *p_instance,
1545                                                   libvlc_exception_t *p_e );
1546
1547 /**
1548  * Set the VLC messaging verbosity level.
1549  *
1550  * \param p_instance libvlc log instance
1551  * \param level log level
1552  * \param p_e an initialized exception pointer
1553  */
1554 VLC_PUBLIC_API void libvlc_set_log_verbosity( libvlc_instance_t *p_instance, unsigned level,
1555                                               libvlc_exception_t *p_e );
1556
1557 /**
1558  * Open a VLC message log instance.
1559  *
1560  * \param p_instance libvlc instance
1561  * \param p_e an initialized exception pointer
1562  * \return log message instance
1563  */
1564 VLC_PUBLIC_API libvlc_log_t *libvlc_log_open( libvlc_instance_t *, libvlc_exception_t *);
1565
1566 /**
1567  * Close a VLC message log instance.
1568  *
1569  * \param p_log libvlc log instance
1570  * \param p_e an initialized exception pointer
1571  */
1572 VLC_PUBLIC_API void libvlc_log_close( libvlc_log_t *, libvlc_exception_t *);
1573
1574 /**
1575  * Returns the number of messages in a log instance.
1576  *
1577  * \param p_log libvlc log instance
1578  * \param p_e an initialized exception pointer
1579  * \return number of log messages
1580  */
1581 VLC_PUBLIC_API unsigned libvlc_log_count( const libvlc_log_t *, libvlc_exception_t *);
1582
1583 /**
1584  * Clear a log instance.
1585  *
1586  * All messages in the log are removed. The log should be cleared on a
1587  * regular basis to avoid clogging.
1588  *
1589  * \param p_log libvlc log instance
1590  * \param p_e an initialized exception pointer
1591  */
1592 VLC_PUBLIC_API void libvlc_log_clear( libvlc_log_t *, libvlc_exception_t *);
1593
1594 /**
1595  * Allocate and returns a new iterator to messages in log.
1596  *
1597  * \param p_log libvlc log instance
1598  * \param p_e an initialized exception pointer
1599  * \return log iterator object
1600  */
1601 VLC_PUBLIC_API libvlc_log_iterator_t *libvlc_log_get_iterator( const libvlc_log_t *, libvlc_exception_t *);
1602
1603 /**
1604  * Release a previoulsy allocated iterator.
1605  *
1606  * \param p_iter libvlc log iterator
1607  * \param p_e an initialized exception pointer
1608  */
1609 VLC_PUBLIC_API void libvlc_log_iterator_free( libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e );
1610
1611 /**
1612  * Return whether log iterator has more messages.
1613  *
1614  * \param p_iter libvlc log iterator
1615  * \param p_e an initialized exception pointer
1616  * \return true if iterator has more message objects, else false
1617  */
1618 VLC_PUBLIC_API int libvlc_log_iterator_has_next( const libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e );
1619
1620 /**
1621  * Return the next log message.
1622  *
1623  * The message contents must not be freed
1624  *
1625  * \param p_iter libvlc log iterator
1626  * \param p_buffer log buffer
1627  * \param p_e an initialized exception pointer
1628  * \return log message object
1629  */
1630 VLC_PUBLIC_API libvlc_log_message_t *libvlc_log_iterator_next( libvlc_log_iterator_t *p_iter,
1631                                                                libvlc_log_message_t *p_buffer,
1632                                                                libvlc_exception_t *p_e );
1633
1634 /** @} */
1635
1636 # ifdef __cplusplus
1637 }
1638 # endif
1639
1640 #endif /* <vlc/libvlc.h> */