]> git.sesse.net Git - vlc/blob - include/vlc/libvlc.h
libvlc enhanced:
[vlc] / include / vlc / libvlc.h
1 /*****************************************************************************
2  * libvlc.h:  libvlc_* new external API
3  *****************************************************************************
4  * Copyright (C) 1998-2005 the VideoLAN team
5  * $Id: vlc.h 13701 2005-12-12 17:58:56Z zorglub $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
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.
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 General Public License for more details.
18  *
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  *****************************************************************************/
23
24 /**
25  * \defgroup libvlc Libvlc
26  * This is libvlc, the base library of the VLC program.
27  *
28  * @{
29  */
30
31
32 #ifndef _LIBVLC_H
33 #define _LIBVLC_H 1
34
35 #include <vlc/vlc.h>
36
37 # ifdef __cplusplus
38 extern "C" {
39 # endif
40
41 /*****************************************************************************
42  * Exception handling
43  *****************************************************************************/
44 /** defgroup libvlc_exception Exceptions
45  * \ingroup libvlc
46  * LibVLC Exceptions handling
47  * @{
48  */
49
50 struct libvlc_exception_t
51 {
52     int b_raised;
53     char *psz_message;
54 };
55 typedef struct libvlc_exception_t libvlc_exception_t;
56
57 /**
58  * Initialize an exception structure. This can be called several times to reuse
59  * an exception structure.
60  * \param p_exception the exception to initialize
61  */
62 void libvlc_exception_init( libvlc_exception_t *p_exception );
63
64 /**
65  * Has an exception been raised ?
66  * \param p_exception the exception to query
67  * \return 0 if no exception raised, 1 else
68  */
69 int libvlc_exception_raised( libvlc_exception_t *p_exception );
70
71 /**
72  * Raise an exception
73  * \param p_exception the exception to raise
74  * \param psz_message the exception message
75  */
76 void libvlc_exception_raise( libvlc_exception_t *p_exception, char *psz_format, ... );
77
78 /**
79  * Clear an exception object so it can be reused.
80  * The exception object must be initialized
81  * \param p_exception the exception to clear
82  */
83 void libvlc_exception_clear( libvlc_exception_t * );
84
85 /**
86  * Get exception message
87  * \param p_exception the exception to query
88  * \return the exception message or NULL if not applicable (exception not raised
89  * for example)
90  */
91 char* libvlc_exception_get_message( libvlc_exception_t *p_exception );
92
93 /**@} */
94
95 /*****************************************************************************
96  * Core handling
97  *****************************************************************************/
98
99 /** defgroup libvlc_core Core
100  * \ingroup libvlc
101  * LibVLC Core
102  * @{
103  */
104
105 /** This structure is opaque. It represents a libvlc instance */
106 typedef struct libvlc_instance_t libvlc_instance_t;
107
108 /**
109  * Create an initialized libvlc instance
110  * \param argc the number of arguments
111  * \param argv command-line-type arguments
112  * \param exception an initialized exception pointer
113  */
114 libvlc_instance_t * libvlc_new( int , char **, libvlc_exception_t *);
115
116 /**
117  * Destroy a libvlc instance
118  * \param p_instance the instance to destroy
119  */
120 void libvlc_destroy( libvlc_instance_t *);
121
122 /** @}*/
123
124 /*****************************************************************************
125  * Playlist
126  *****************************************************************************/
127 /** defgroup libvlc_playlist Playlist
128  * \ingroup libvlc
129  * LibVLC Playlist handling
130  * @{
131  */
132
133 /**
134  * Start playing. You can give some additionnal playlist item options
135  * that will be added to the item before playing it.
136  * \param p_instance the instance
137  * \param i_id the item to play. If this is a negative number, the next
138  * item will be selected. Else, the item with the given ID will be played
139  * \param i_options the number of options to add to the item
140  * \param ppsz_options the options to add to the item
141  * \param p_exception an initialized exception
142  */
143 void libvlc_playlist_play( libvlc_instance_t*, int, int, char **,
144                            libvlc_exception_t * );
145
146 /**
147  * Pause a running playlist, resume if it was stopped
148  * \param p_instance the instance to pause
149  * \param p_exception an initialized exception
150  */
151 void libvlc_playlist_pause( libvlc_instance_t *, libvlc_exception_t * );
152
153 /**
154  * Checks if the playlist is running
155  * \param p_instance the instance
156  * \param p_exception an initialized exception
157  * \return 0 if the playlist is stopped or paused, 1 if it is running
158  */
159 int libvlc_playlist_isplaying( libvlc_instance_t *, libvlc_exception_t * );
160
161 /**
162  * Get the number of items in the playlist
163  * \param p_instance the instance
164  * \param p_exception an initialized exception
165  * \return the number of items
166  */
167 int libvlc_playlist_items_count( libvlc_instance_t *, libvlc_exception_t * );
168
169 /**
170  * Stop playing
171  * \param p_instance the instance to stop
172  * \param p_exception an initialized exception
173  */
174 void libvlc_playlist_stop( libvlc_instance_t *, libvlc_exception_t * );
175
176 /**
177  * Go to next playlist item (starts playback if it was stopped)
178  * \param p_instance the instance to use
179  * \param p_exception an initialized exception
180  */
181 void libvlc_playlist_next( libvlc_instance_t *, libvlc_exception_t * );
182
183 /**
184  * Go to previous playlist item (starts playback if it was stopped)
185  * \param p_instance the instance to use
186  * \param p_exception an initialized exception
187  */
188 void libvlc_playlist_prev( libvlc_instance_t *, libvlc_exception_t * );
189
190 /**
191  * Remove all playlist items
192  * \param p_instance the instance
193  * \param p_exception an initialized exception
194  */
195 void libvlc_playlist_clear( libvlc_instance_t *, libvlc_exception_t * );
196
197 /**
198  * Go to next playlist item
199  * \param p_instance the instance
200  * \param p_exception an initialized exception
201  */
202 void libvlc_playlist_next( libvlc_instance_t *, libvlc_exception_t * );
203
204 /**
205  * Go to Previous playlist item
206  * \param p_instance the instance
207  * \param p_exception an initialized exception
208  */
209 void libvlc_playlist_prev( libvlc_instance_t *, libvlc_exception_t * );
210
211 /**
212  * Add an item at the end of the playlist
213  * If you need more advanced options, \see libvlc_playlist_add_extended
214  * \param p_instance the instance
215  * \param psz_uri the URI to open, using VLC format
216  * \param psz_name a name that you might want to give or NULL
217  * \return the identifier of the new item
218  */
219 int libvlc_playlist_add( libvlc_instance_t *, const char *, const char *,
220                          libvlc_exception_t * );
221
222 /**
223  * Add an item at the end of the playlist, with additional input options
224  * \param p_instance the instance
225  * \param psz_uri the URI to open, using VLC format
226  * \param psz_name a name that you might want to give or NULL
227  * \param i_options the number of options to add
228  * \param ppsz_options strings representing the options to add
229  * \return the identifier of the new item
230  */
231 int libvlc_playlist_add_extended( libvlc_instance_t *, const char *,
232                                   const char *, int, const char **,
233                                   libvlc_exception_t * );
234
235
236 int libvlc_playlist_delete_item( libvlc_instance_t *, int,
237                                  libvlc_exception_t * );
238     
239 typedef struct libvlc_input_t libvlc_input_t;
240
241 /* Get the input that is currently being played by the playlist
242  * \param p_instance the instance to use
243  * \param p_exception an initialized excecption
244  * \return an input object
245  */
246 libvlc_input_t *libvlc_playlist_get_input( libvlc_instance_t *,
247                                            libvlc_exception_t * );
248
249
250
251 /** @}*/
252
253 /*****************************************************************************
254  * Input
255  *****************************************************************************/
256 /** defgroup libvlc_input Input
257  * \ingroup libvlc
258  * LibVLC Input handling
259  * @{
260  */
261
262 /** Free an input object
263  * \param p_input the input to free
264  */
265 void libvlc_input_free( libvlc_input_t * );
266
267 /// \bug This might go away ... to be replaced by a broader system
268 vlc_int64_t libvlc_input_get_length     ( libvlc_input_t *, libvlc_exception_t *);
269 vlc_int64_t libvlc_input_get_time       ( libvlc_input_t *, libvlc_exception_t *);
270 float       libvlc_input_get_position   ( libvlc_input_t *, libvlc_exception_t *);
271 vlc_bool_t  libvlc_input_will_play      ( libvlc_input_t *, libvlc_exception_t *);
272 vlc_bool_t  libvlc_input_has_vout       ( libvlc_input_t *, libvlc_exception_t *);
273
274 /** @} */
275
276 /** defgroup libvlc_video Video
277  * \ingroup libvlc
278  * LibVLC Video handling
279  * @{
280  */
281
282 /**
283  * Toggle fullscreen status on video output
284  * \param p_input the input
285  * \param p_exception an initialized exception
286  */
287 void libvlc_toggle_fullscreen( libvlc_input_t *, libvlc_exception_t * );
288
289 /**
290  * Enable or disable fullscreen on a video output
291  * \param p_input the input
292  * \param b_fullscreen boolean for fullscreen status
293  * \param p_exception an initialized exception
294  */
295 void libvlc_set_fullscreen( libvlc_input_t *, int, libvlc_exception_t * );
296
297 /**
298  * Get current fullscreen status
299  * \param p_input the input
300  * \param p_exception an initialized exception
301  * \return the fullscreen status (boolean)
302  */
303 int libvlc_get_fullscreen( libvlc_input_t *, libvlc_exception_t * );
304     
305 /**
306  * Get current video height
307  * \param p_input the input
308  * \param p_exception an initialized exception
309  * \return the video height
310  */
311 int libvlc_video_get_height( libvlc_input_t *, libvlc_exception_t * );
312
313 /**
314  * Get current video width
315  * \param p_input the input
316  * \param p_exception an initialized exception
317  * \return the video width
318  */
319 int libvlc_video_get_width( libvlc_input_t *, libvlc_exception_t * );
320
321 /**
322  * Take a snapshot of the current video window
323  * \param p_input the input
324  * \param psz_filepath the path where to save the screenshot to
325  * \param p_exception an initialized exception
326  */
327 void libvlc_video_take_snapshot( libvlc_input_t *, char *, libvlc_exception_t * );
328     
329
330 /** @} */
331
332 /**
333  * defgroup libvlc_vlm VLM
334  * \ingroup libvlc
335  * LibVLC VLM handling
336  * @{
337  */
338
339 /** defgroup libvlc_audio Audio
340  * \ingroup libvlc
341  * LibVLC Audio handling
342  * @{
343  */
344
345 /**
346  * Get current mute status
347  * \param p_instance libvlc instance
348  * \param p_exception an initialized exception
349  * \return the mute status (boolean)
350  */
351 vlc_bool_t libvlc_audio_get_mute( libvlc_instance_t *, libvlc_exception_t * );
352
353 /**
354  * Set mute status
355  * \param p_instance libvlc instance
356  * \param status If status is VLC_TRUE then mute, otherwise unmute
357  * \param p_exception an initialized exception
358  * \return void
359  */
360 void libvlc_audio_set_mute( libvlc_instance_t *, vlc_bool_t , libvlc_exception_t * );
361
362
363 /**
364  * Get current audio level
365  * \param p_instance libvlc instance
366  * \param p_exception an initialized exception
367  * \return the audio level (int)
368  */
369 int libvlc_audio_get_volume( libvlc_instance_t *, libvlc_exception_t * );
370
371
372 /**
373  * Set current audio level
374  * \param p_instance libvlc instance
375  * \param i_volume the volume (int)
376  * \param p_exception an initialized exception
377  * \return void
378  */
379 void libvlc_audio_set_volume( libvlc_instance_t *, int , libvlc_exception_t *);
380
381 /** @} */
382
383
384 /**
385  * Add a broadcast, with one input
386  * \param p_instance the instance
387  * \param psz_name the name of the new broadcast
388  * \param psz_input the input MRL
389  * \param psz_output the output MRL (the parameter to the "sout" variable)
390  * \param i_options number of additional options
391  * \param ppsz_options additional options
392  * \param b_enabled boolean for enabling the new broadcast
393  * \param b_loop Should this broadcast be played in loop ?
394  * \param p_exception an initialized exception
395  */
396 void libvlc_vlm_add_broadcast( libvlc_instance_t *, char *, char *, char* ,
397                                int, char **, int, int, libvlc_exception_t * );
398
399 /**
400  * Delete a media (vod or broadcast)
401  * \param p_instance the instance
402  * \param psz_name the media to delete
403  * \param p_exception an initialized exception
404  */
405 void libvlc_vlm_del_media( libvlc_instance_t *, char *, libvlc_exception_t * );
406
407 /**
408  * Enable or disable a media (vod or broadcast)
409  * \param p_instance the instance
410  * \param psz_name the media to work on
411  * \param b_enabled the new status
412  * \param p_exception an initialized exception
413  */
414 void libvlc_vlm_set_enabled( libvlc_instance_t *, char *, int,
415                              libvlc_exception_t *);
416
417 /**
418  * Set the output for a media
419  * \param p_instance the instance
420  * \param psz_name the media to work on
421  * \param psz_output the output MRL (the parameter to the "sout" variable)
422  * \param p_exception an initialized exception
423  */
424 void libvlc_vlm_set_output( libvlc_instance_t *, char *, char*,
425                             libvlc_exception_t *);
426
427 /**
428  * Set a media's input MRL. This will delete all existing inputs and
429  * add the specified one.
430  * \param p_instance the instance
431  * \param psz_name the media to work on
432  * \param psz_input the input MRL
433  * \param p_exception an initialized exception
434  */
435 void libvlc_vlm_set_input( libvlc_instance_t *, char *, char*,
436                            libvlc_exception_t *);
437
438
439
440 /**
441  * Set output for a media
442  * \param p_instance the instance
443  * \param psz_name the media to work on
444  * \param b_loop the new status
445  * \param p_exception an initialized exception
446  */
447 void libvlc_vlm_set_loop( libvlc_instance_t *, char *, int,
448                           libvlc_exception_t *);
449
450
451
452
453 /**
454  * Edit the parameters of a media. This will delete all existing inputs and
455  * add the specified one.
456  * \param p_instance the instance
457  * \param psz_name the name of the new broadcast
458  * \param psz_input the input MRL
459  * \param psz_output the output MRL (the parameter to the "sout" variable)
460  * \param i_options number of additional options
461  * \param ppsz_options additional options
462  * \param b_enabled boolean for enabling the new broadcast
463  * \param b_loop Should this broadcast be played in loop ?
464  * \param p_exception an initialized exception
465  */
466 void libvlc_vlm_change_media( libvlc_instance_t *, char *, char *, char* ,
467                               int, char **, int, int, libvlc_exception_t * );
468
469
470 /** @} */
471 /** @} */
472
473 # ifdef __cplusplus
474 }
475 # endif
476
477 #endif /* <vlc/libvlc.h> */