]> git.sesse.net Git - vlc/blob - include/vlc/libvlc.h
Playlist item deletion added in libvlc.h for external programs use.
[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
272
273 /** @} */
274
275 /** defgroup libvlc_video Video
276  * \ingroup libvlc
277  * LibVLC Video handling
278  * @{
279  */
280
281 /**
282  * Toggle fullscreen status on video output
283  * \param p_input the input
284  * \param p_exception an initialized exception
285  */
286 void libvlc_toggle_fullscreen( libvlc_input_t *, libvlc_exception_t * );
287
288 /**
289  * Enable or disable fullscreen on a video output
290  * \param p_input the input
291  * \param b_fullscreen boolean for fullscreen status
292  * \param p_exception an initialized exception
293  */
294 void libvlc_set_fullscreen( libvlc_input_t *, int, libvlc_exception_t * );
295
296 /**
297  * Get current fullscreen status
298  * \param p_input the input
299  * \param p_exception an initialized exception
300  * \return the fullscreen status (boolean)
301  */
302 int libvlc_get_fullscreen( libvlc_input_t *, libvlc_exception_t * );
303
304 /** @} */
305
306 /**
307  * defgroup libvlc_vlm VLM
308  * \ingroup libvlc
309  * LibVLC VLM handling
310  * @{
311  */
312
313 /** defgroup libvlc_audio Audio
314  * \ingroup libvlc
315  * LibVLC Audio handling
316  * @{
317  */
318
319 /**
320  * Get current mute status
321  * \param p_instance libvlc instance
322  * \param p_exception an initialized exception
323  * \return the mute status (boolean)
324  */
325 vlc_bool_t libvlc_audio_get_mute( libvlc_instance_t *, libvlc_exception_t * );
326
327 /**
328  * Set mute status
329  * \param p_instance libvlc instance
330  * \param status If status is VLC_TRUE then mute, otherwise unmute
331  * \param p_exception an initialized exception
332  * \return void
333  */
334 void libvlc_audio_set_mute( libvlc_instance_t *, vlc_bool_t , libvlc_exception_t * );
335
336
337 /**
338  * Get current audio level
339  * \param p_instance libvlc instance
340  * \param p_exception an initialized exception
341  * \return the audio level (int)
342  */
343 int libvlc_audio_get_volume( libvlc_instance_t *, libvlc_exception_t * );
344
345
346 /**
347  * Set current audio level
348  * \param p_instance libvlc instance
349  * \param i_volume the volume (int)
350  * \param p_exception an initialized exception
351  * \return void
352  */
353 void libvlc_audio_set_volume( libvlc_instance_t *, int , libvlc_exception_t *);
354
355 /** @} */
356
357
358 /**
359  * Add a broadcast, with one input
360  * \param p_instance the instance
361  * \param psz_name the name of the new broadcast
362  * \param psz_input the input MRL
363  * \param psz_output the output MRL (the parameter to the "sout" variable)
364  * \param i_options number of additional options
365  * \param ppsz_options additional options
366  * \param b_enabled boolean for enabling the new broadcast
367  * \param b_loop Should this broadcast be played in loop ?
368  * \param p_exception an initialized exception
369  */
370 void libvlc_vlm_add_broadcast( libvlc_instance_t *, char *, char *, char* ,
371                                int, char **, int, int, libvlc_exception_t * );
372
373 /**
374  * Delete a media (vod or broadcast)
375  * \param p_instance the instance
376  * \param psz_name the media to delete
377  * \param p_exception an initialized exception
378  */
379 void libvlc_vlm_del_media( libvlc_instance_t *, char *, libvlc_exception_t * );
380
381 /**
382  * Enable or disable a media (vod or broadcast)
383  * \param p_instance the instance
384  * \param psz_name the media to work on
385  * \param b_enabled the new status
386  * \param p_exception an initialized exception
387  */
388 void libvlc_vlm_set_enabled( libvlc_instance_t *, char *, int,
389                              libvlc_exception_t *);
390
391 /**
392  * Set the output for a media
393  * \param p_instance the instance
394  * \param psz_name the media to work on
395  * \param psz_output the output MRL (the parameter to the "sout" variable)
396  * \param p_exception an initialized exception
397  */
398 void libvlc_vlm_set_output( libvlc_instance_t *, char *, char*,
399                             libvlc_exception_t *);
400
401 /**
402  * Set a media's input MRL. This will delete all existing inputs and
403  * add the specified one.
404  * \param p_instance the instance
405  * \param psz_name the media to work on
406  * \param psz_input the input MRL
407  * \param p_exception an initialized exception
408  */
409 void libvlc_vlm_set_input( libvlc_instance_t *, char *, char*,
410                            libvlc_exception_t *);
411
412
413
414 /**
415  * Set output for a media
416  * \param p_instance the instance
417  * \param psz_name the media to work on
418  * \param b_loop the new status
419  * \param p_exception an initialized exception
420  */
421 void libvlc_vlm_set_loop( libvlc_instance_t *, char *, int,
422                           libvlc_exception_t *);
423
424
425
426
427 /**
428  * Edit the parameters of a media. This will delete all existing inputs and
429  * add the specified one.
430  * \param p_instance the instance
431  * \param psz_name the name of the new broadcast
432  * \param psz_input the input MRL
433  * \param psz_output the output MRL (the parameter to the "sout" variable)
434  * \param i_options number of additional options
435  * \param ppsz_options additional options
436  * \param b_enabled boolean for enabling the new broadcast
437  * \param b_loop Should this broadcast be played in loop ?
438  * \param p_exception an initialized exception
439  */
440 void libvlc_vlm_change_media( libvlc_instance_t *, char *, char *, char* ,
441                               int, char **, int, int, libvlc_exception_t * );
442
443
444 /** @} */
445 /** @} */
446
447 # ifdef __cplusplus
448 }
449 # endif
450
451 #endif /* <vlc/libvlc.h> */