]> git.sesse.net Git - vlc/blob - include/vlc/deprecated.h
Remove a bunch of unused deprecated APIs
[vlc] / include / vlc / deprecated.h
1 /*****************************************************************************
2  * deprecated.h:  libvlc deprecated 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 _at_ m2x _dot_ nl>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef _LIBVLC_DEPRECATED_H
26 #define _LIBVLC_DEPRECATED_H 1
27
28 # ifdef __cplusplus
29 extern "C" {
30 # endif
31
32
33 /*****************************************************************************
34  * Playlist (Deprecated)
35  *****************************************************************************/
36 /** \defgroup libvlc_playlist libvlc_playlist (Deprecated)
37  * \ingroup libvlc
38  * LibVLC Playlist handling (Deprecated)
39  * @deprecated Use media_list
40  * @{
41  */
42
43 /**
44  * Set the playlist's loop attribute. If set, the playlist runs continuously
45  * and wraps around when it reaches the end.
46  *
47  * \param p_instance the playlist instance
48  * \param loop the loop attribute. 1 sets looping, 0 disables it
49  * \param p_e an initialized exception pointer
50  */
51 VLC_DEPRECATED_API void libvlc_playlist_loop( libvlc_instance_t* , int,
52                                           libvlc_exception_t * );
53
54 /**
55  * Start playing.
56  *
57  * Additionnal playlist item options can be specified for addition to the
58  * item before it is played.
59  *
60  * \param p_instance the playlist instance
61  * \param i_id the item to play. If this is a negative number, the next
62  *        item will be selected. Otherwise, the item with the given ID will be
63  *        played
64  * \param i_options the number of options to add to the item
65  * \param ppsz_options the options to add to the item
66  * \param p_e an initialized exception pointer
67  */
68 VLC_DEPRECATED_API void libvlc_playlist_play( libvlc_instance_t*, int, int,
69                                           char **, libvlc_exception_t * );
70
71 /**
72  * Toggle the playlist's pause status.
73  *
74  * If the playlist was running, it is paused. If it was paused, it is resumed.
75  *
76  * \param p_instance the playlist instance to pause
77  * \param p_e an initialized exception pointer
78  */
79 VLC_DEPRECATED_API void libvlc_playlist_pause( libvlc_instance_t *,
80                                            libvlc_exception_t * );
81
82 /**
83  * Checks whether the playlist is running
84  *
85  * \param p_instance the playlist instance
86  * \param p_e an initialized exception pointer
87  * \return 0 if the playlist is stopped or paused, 1 if it is running
88  */
89 VLC_DEPRECATED_API int libvlc_playlist_isplaying( libvlc_instance_t *,
90                                               libvlc_exception_t * );
91
92 /**
93  * Get the number of items in the playlist
94  *
95  * \param p_instance the playlist instance
96  * \param p_e an initialized exception pointer
97  * \return the number of items
98  */
99 VLC_DEPRECATED_API int libvlc_playlist_items_count( libvlc_instance_t *,
100                                                 libvlc_exception_t * );
101
102 /**
103  * Lock the playlist.
104  *
105  * \param p_instance the playlist instance
106  */
107 VLC_DEPRECATED_API void libvlc_playlist_lock( libvlc_instance_t * );
108
109 /**
110  * Unlock the playlist.
111  *
112  * \param p_instance the playlist instance
113  */
114 VLC_DEPRECATED_API void libvlc_playlist_unlock( libvlc_instance_t * );
115
116 /**
117  * Stop playing.
118  *
119  * \param p_instance the playlist instance to stop
120  * \param p_e an initialized exception pointer
121  */
122 VLC_DEPRECATED_API void libvlc_playlist_stop( libvlc_instance_t *,
123                                           libvlc_exception_t * );
124
125 /**
126  * Go to the next playlist item. If the playlist was stopped, playback
127  * is started.
128  *
129  * \param p_instance the playlist instance
130  * \param p_e an initialized exception pointer
131  */
132 VLC_DEPRECATED_API void libvlc_playlist_next( libvlc_instance_t *,
133                                           libvlc_exception_t * );
134
135 /**
136  * Go to the previous playlist item. If the playlist was stopped, playback
137  * is started.
138  *
139  * \param p_instance the playlist instance
140  * \param p_e an initialized exception pointer
141  */
142 VLC_DEPRECATED_API void libvlc_playlist_prev( libvlc_instance_t *,
143                                           libvlc_exception_t * );
144
145 /**
146  * Empty a playlist. All items in the playlist are removed.
147  *
148  * \param p_instance the playlist instance
149  * \param p_e an initialized exception pointer
150  */
151 VLC_DEPRECATED_API void libvlc_playlist_clear( libvlc_instance_t *,
152                                            libvlc_exception_t * );
153
154 /**
155  * Append an item to the playlist. The item is added at the end. If more
156  * advanced options are required, \see libvlc_playlist_add_extended instead.
157  *
158  * \param p_instance the playlist instance
159  * \param psz_uri the URI to open, using VLC format
160  * \param psz_name a name that you might want to give or NULL
161  * \param p_e an initialized exception pointer
162  * \return the identifier of the new item
163  */
164 VLC_DEPRECATED_API int libvlc_playlist_add( libvlc_instance_t *, const char *,
165                                         const char *, libvlc_exception_t * );
166
167 /**
168  * Append an item to the playlist. The item is added at the end, with
169  * additional input options.
170  *
171  * \param p_instance the playlist instance
172  * \param psz_uri the URI to open, using VLC format
173  * \param psz_name a name that you might want to give or NULL
174  * \param i_options the number of options to add
175  * \param ppsz_options strings representing the options to add
176  * \param p_e an initialized exception pointer
177  * \return the identifier of the new item
178  */
179 VLC_DEPRECATED_API int libvlc_playlist_add_extended( libvlc_instance_t *, const char *,
180                                                  const char *, int, const char **,
181                                                  libvlc_exception_t * );
182
183 /**
184  * Delete the playlist item with the given ID.
185  *
186  * \param p_instance the playlist instance
187  * \param i_id the id to remove
188  * \param p_e an initialized exception pointer
189  * \return 0 in case of success, a non-zero value otherwise
190  */
191 VLC_DEPRECATED_API int libvlc_playlist_delete_item( libvlc_instance_t *, int,
192                                                 libvlc_exception_t * );
193
194 /** Get the input that is currently being played by the playlist.
195  *
196  * \param p_instance the playlist instance to use
197  * \param p_e an initialized exception pointern
198  * \return a media instance object
199  */
200 VLC_DEPRECATED_API libvlc_media_player_t * libvlc_playlist_get_media_player(
201                                 libvlc_instance_t *, libvlc_exception_t * );
202
203 /** @}*/
204
205 /**
206  * \defgroup libvlc_old Libvlc Old (Deprecated)
207  * This is libvlc, the base library of the VLC program. (Deprecated)
208  * This is the legacy API. Please consider using the new libvlc API
209  *
210  * @deprecated
211  * @{
212  */
213
214
215 /*****************************************************************************
216  * Exported vlc API (Deprecated)
217  *****************************************************************************/
218
219 /*****************************************************************************
220  * Playlist
221  *****************************************************************************/
222
223 /* Used by VLC_AddTarget() */
224 #define PLAYLIST_INSERT          0x0001
225 #define PLAYLIST_APPEND          0x0002
226 #define PLAYLIST_GO              0x0004
227 #define PLAYLIST_PREPARSE        0x0008
228 #define PLAYLIST_SPREPARSE       0x0010
229 #define PLAYLIST_NO_REBUILD      0x0020
230
231 #define PLAYLIST_END           -666
232
233 /*****************************************************************************
234  * Error values
235  *****************************************************************************/
236 #define VLC_SUCCESS         -0                                   /* No error */
237 #define VLC_ENOMEM          -1                          /* Not enough memory */
238 #define VLC_ETHREAD         -2                               /* Thread error */
239 #define VLC_ETIMEOUT        -3                                    /* Timeout */
240
241 #define VLC_ENOMOD         -10                           /* Module not found */
242
243 #define VLC_ENOOBJ         -20                           /* Object not found */
244 #define VLC_EBADOBJ        -21                            /* Bad object type */
245
246 #define VLC_ENOVAR         -30                         /* Variable not found */
247 #define VLC_EBADVAR        -31                         /* Bad variable value */
248
249 #define VLC_ENOITEM        -40                           /**< Item not found */
250
251 #define VLC_EEXIT         -255                             /* Program exited */
252 #define VLC_EEXITSUCCESS  -999                /* Program exited successfully */
253 #define VLC_EGENERIC      -666                              /* Generic error */
254
255
256
257 #if !defined( __LIBVLC__ )
258 /* Otherwise they are declared and exported in vlc_common.h */
259 /**
260  * Retrieve libvlc version
261  *
262  * \return a string containing the libvlc version
263  */
264 VLC_DEPRECATED_API char const * VLC_Version ( void );
265
266 /**
267  * Retrieve the username of the libvlc builder
268  *
269  * \return a string containing the username of the libvlc builder
270  */
271 VLC_DEPRECATED_API char const * VLC_CompileBy ( void );
272
273 /**
274  * Retrieve the host of the libvlc builder
275  *
276  * \return a string containing the host of the libvlc builder
277  */
278 VLC_DEPRECATED_API char const * VLC_CompileHost ( void );
279
280 /**
281  * Retrieve the domain name of the host of the libvlc builder
282  *
283  * \return a string containing the domain name of the host of the libvlc builder
284  */
285 VLC_DEPRECATED_API char const * VLC_CompileDomain ( void );
286
287 /**
288  * Retrieve libvlc compiler version
289  *
290  * \return a string containing the libvlc compiler version
291  */
292 VLC_DEPRECATED_API char const * VLC_Compiler ( void );
293
294 /**
295  * Retrieve libvlc changeset
296  *
297  * \return a string containing the libvlc subversion changeset
298  */
299 VLC_DEPRECATED_API char const * VLC_Changeset ( void );
300
301 #endif /* __LIBVLC__ */
302
303 /**
304  * Set a VLC variable
305  *
306  * This function sets a variable of VLC
307  *
308  * \note Was previously called VLC_Set
309  *
310  * \param i_object a vlc object id
311  * \param psz_var a vlc variable name
312  * \param value a vlc_value_t structure
313  * \return VLC_SUCCESS on success
314  */
315 VLC_DEPRECATED_API int     VLC_VariableSet( int, char const *, vlc_value_t );
316
317 /**
318  * Get a VLC variable
319  *
320  * This function gets the value of a variable of VLC
321  * It stores it in the p_value argument
322  *
323  * \note Was previously called VLC_Get
324  *
325  * \param i_object a vlc object id
326  * \param psz_var a vlc variable name
327  * \param p_value a pointer to a vlc_value_t structure
328  * \return VLC_SUCCESS on success
329  */
330 VLC_DEPRECATED_API int     VLC_VariableGet( int, char const *, vlc_value_t * );
331
332 /**
333  * Get a VLC variable type
334  *
335  * This function gets the type of a variable of VLC
336  * It stores it in the p_type argument
337  *
338  * \param i_object a vlc object id
339  * \param psz_var a vlc variable name
340  * \param pi_type a pointer to an integer
341  * \return VLC_SUCCESS on success
342  */
343 VLC_DEPRECATED_API int     VLC_VariableType( int, char const *, int * );
344
345 /**
346  * Add a target to the current playlist
347  *
348  * This funtion will add a target to the current playlist. If a playlist does
349  * not exist, it will be created.
350  *
351  * \param i_object a vlc object id
352  * \param psz_target the URI of the target to play
353  * \param ppsz_options an array of strings with input options (ie. :input-repeat)
354  * \param i_options the amount of options in the ppsz_options array
355  * \param i_mode the insert mode to insert the target into the playlist (PLAYLIST_* defines)
356  * \param i_pos the position at which to add the new target (PLAYLIST_END for end)
357  * \return the item id on success and -1 on error
358  */
359 VLC_DEPRECATED_API int     VLC_AddTarget( int, char const *, const char **, int, int, int );
360
361 /**
362  * Start the playlist and play the currently selected playlist item
363  *
364  * If there is something in the playlist, and the playlist is not running,
365  * then start the playlist and play the currently selected playlist item.
366  * If an item is currently paused, then resume it.
367  *
368  * \param i_object a vlc object id
369  * \return VLC_SUCCESS on success
370  */
371 VLC_DEPRECATED_API int     VLC_Play( int );
372
373 /**
374  * Pause the currently playing item. Resume it if already paused
375  *
376  * If an item is currently playing then pause it.
377  * If the item is already paused, then resume playback.
378  *
379  * \param i_object a vlc object id
380  * \return VLC_SUCCESS on success
381  */
382 VLC_DEPRECATED_API int     VLC_Pause( int );
383
384 /**
385  * Stop the playlist
386  *
387  * If an item is currently playing then stop it.
388  * Set the playlist to a stopped state.
389  *
390  * \note This function is new. The old VLC_Stop is now called VLC_CleanUp
391  *
392  * \param i_object a vlc object id
393  * \return VLC_SUCCESS on success
394  */
395 VLC_DEPRECATED_API int             VLC_Stop( int );
396
397 /**
398  * Tell if VLC is playing
399  *
400  * If an item is currently playing, it returns
401  * true, else false
402  *
403  * \param i_object a vlc object id
404  * \return true or false
405  */
406 VLC_DEPRECATED_API bool      VLC_IsPlaying( int );
407
408 /**
409  * Get the current position in a input
410  *
411  * Return the current position as a float
412  * This method should be used for time sliders etc
413  * \note For some inputs, this will be unknown.
414  *
415  * \param i_object a vlc object id
416  * \return a float in the range of 0.0 - 1.0
417  */
418 VLC_DEPRECATED_API float           VLC_PositionGet( int );
419
420 /**
421  * Set the current position in a input
422  *
423  * Set the current position as a float
424  * This method should be used for time sliders etc
425  * \note For some inputs, this will be unknown.
426  *
427  * \param i_object a vlc object id
428  * \param i_position a float in the range of 0.0 - 1.0
429  * \return a float in the range of 0.0 - 1.0
430  */
431 VLC_DEPRECATED_API float           VLC_PositionSet( int, float );
432
433 /**
434  * Get the current position in a input
435  *
436  * Return the current position in seconds from the start.
437  * \note For some inputs, this will be unknown.
438  *
439  * \param i_object a vlc object id
440  * \return the offset from 0:00 in seconds
441  */
442 VLC_DEPRECATED_API int             VLC_TimeGet( int );
443
444 /**
445  * Seek to a position in the current input
446  *
447  * Seek i_seconds in the current input. If b_relative is set,
448  * then the seek will be relative to the current position, otherwise
449  * it will seek to i_seconds from the beginning of the input.
450  * \note For some inputs, this will be unknown.
451  *
452  * \param i_object a vlc object id
453  * \param i_seconds seconds from current position or from beginning of input
454  * \param b_relative seek relative from current position
455  * \return VLC_SUCCESS on success
456  */
457 VLC_DEPRECATED_API int             VLC_TimeSet( int, int, bool );
458
459 /**
460  * Get the total length of a input
461  *
462  * Return the total length in seconds from the current input.
463  * \note For some inputs, this will be unknown.
464  *
465  * \param i_object a vlc object id
466  * \return the length in seconds
467  */
468 VLC_DEPRECATED_API int             VLC_LengthGet( int );
469
470 /**
471  * Play the input faster than realtime
472  *
473  * 2x, 4x, 8x faster than realtime
474  * \note For some inputs, this will be impossible.
475  *
476  * \param i_object a vlc object id
477  * \return the current speedrate
478  */
479 VLC_DEPRECATED_API float           VLC_SpeedFaster( int );
480
481 /**
482  * Play the input slower than realtime
483  *
484  * 1/2x, 1/4x, 1/8x slower than realtime
485  * \note For some inputs, this will be impossible.
486  *
487  * \param i_object a vlc object id
488  * \return the current speedrate
489  */
490 VLC_DEPRECATED_API float           VLC_SpeedSlower( int );
491
492 /**
493  * Return the current playlist item
494  *
495  * \param i_object a vlc object id
496  * \return the index of the playlistitem that is currently selected for play
497  */
498 VLC_DEPRECATED_API int             VLC_PlaylistIndex( int );
499
500 /**
501  * Total amount of items in the playlist
502  *
503  * \param i_object a vlc object id
504  * \return amount of playlist items
505  */
506 VLC_DEPRECATED_API int             VLC_PlaylistNumberOfItems( int );
507
508 /**
509  * Next playlist item
510  *
511  * Skip to the next playlistitem and play it.
512  *
513  * \param i_object a vlc object id
514  * \return VLC_SUCCESS on success
515  */
516 VLC_DEPRECATED_API int             VLC_PlaylistNext( int );
517
518 /**
519  * Previous playlist item
520  *
521  * Skip to the previous playlistitem and play it.
522  *
523  * \param i_object a vlc object id
524  * \return VLC_SUCCESS on success
525  */
526 VLC_DEPRECATED_API int             VLC_PlaylistPrev( int );
527
528 /**
529  * Clear the contents of the playlist
530  *
531  * Completly empty the entire playlist.
532  *
533  * \note Was previously called VLC_ClearPlaylist
534  *
535  * \param i_object a vlc object id
536  * \return VLC_SUCCESS on success
537  */
538 VLC_DEPRECATED_API int             VLC_PlaylistClear( int );
539
540 /**
541  * Change the volume
542  *
543  * \param i_object a vlc object id
544  * \param i_volume something in a range from 0-200
545  * \return the new volume (range 0-200 %)
546  */
547 VLC_DEPRECATED_API int             VLC_VolumeSet( int, int );
548
549 /**
550  * Get the current volume
551  *
552  * Retrieve the current volume.
553  *
554  * \param i_object a vlc object id
555  * \return the current volume (range 0-200 %)
556  */
557 VLC_DEPRECATED_API int             VLC_VolumeGet( int );
558
559 /**
560  * Mute/Unmute the volume
561  *
562  * \param i_object a vlc object id
563  * \return VLC_SUCCESS on success
564  */
565 VLC_DEPRECATED_API int            VLC_VolumeMute( int );
566
567 /**
568  * Toggle Fullscreen mode
569  *
570  * Switch between normal and fullscreen video
571  *
572  * \param i_object a vlc object id
573  * \return VLC_SUCCESS on success
574  */
575 VLC_DEPRECATED_API int             VLC_FullScreen( int );
576
577 /**@} */
578
579 # ifdef __cplusplus
580 }
581 # endif
582
583 #endif /* _LIBVLC_DEPRECATED_H */