1 /*****************************************************************************
2 * vlc_playlist.h : Playlist functions
3 *****************************************************************************
4 * Copyright (C) 1999, 2000, 2001, 2002 VideoLAN
5 * $Id: vlc_playlist.h,v 1.12 2003/08/14 13:02:55 sigmunau Exp $
7 * Authors: Samuel Hocevar <sam@zoy.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
22 *****************************************************************************/
26 * This file contain structures and function prototypes related
27 * to the playlist in vlc
31 * \defgroup vlc_playlist Playlist
32 * Brief description. Longer description
40 struct playlist_item_t
42 char * psz_name; /**< text describing this item */
43 char * psz_uri; /**< mrl of this item */
44 mtime_t i_duration; /**< A hint about the duration of this
45 * item, in miliseconds*/
46 char ** ppsz_options; /**< options passed with the :foo=bar syntax */
47 int i_options; /**< number of items in the
48 * ppsz_options array */
49 int i_type; /**< unused yet */
50 int i_status; /**< unused yet */
51 vlc_bool_t b_autodeletion; /**< Indicates wether this item is to
52 * be deleted after playback. True mean
53 * that this item is to be deleted
54 * after playback, false otherwise */
60 typedef enum { PLAYLIST_STOPPED,PLAYLIST_RUNNING,PLAYLIST_PAUSED } playlist_status_t;
63 * Structure containing information about the playlist
70 These members are uniq to playlist_t
73 int i_index; /**< current index into the playlist */
74 playlist_status_t i_status; /**< current status of playlist */
75 int i_size; /**< total size of the list */
77 playlist_item_t ** pp_items; /**< array of pointers to the
80 input_thread_t * p_input; /**< the input thread ascosiated
81 * with the current item */
85 /*****************************************************************************
87 *****************************************************************************/
88 #define playlist_Create(a) __playlist_Create(VLC_OBJECT(a))
89 playlist_t * __playlist_Create ( vlc_object_t * );
90 void playlist_Destroy ( playlist_t * );
92 #define playlist_Play(p) playlist_Command(p,PLAYLIST_PLAY,0)
93 #define playlist_Pause(p) playlist_Command(p,PLAYLIST_PAUSE,0)
94 #define playlist_Stop(p) playlist_Command(p,PLAYLIST_STOP,0)
95 #define playlist_Next(p) playlist_Command(p,PLAYLIST_SKIP,1)
96 #define playlist_Prev(p) playlist_Command(p,PLAYLIST_SKIP,-1)
97 #define playlist_Skip(p,i) playlist_Command(p,PLAYLIST_SKIP,i)
98 #define playlist_Goto(p,i) playlist_Command(p,PLAYLIST_GOTO,i)
99 VLC_EXPORT( void, playlist_Command, ( playlist_t *, playlist_command_t, int ) );
101 VLC_EXPORT( int, playlist_Add, ( playlist_t *, const char *, const char **, int, int, int ) );
102 VLC_EXPORT( int, playlist_AddExt, ( playlist_t *, const char *, const char *, mtime_t, const char **, int, int, int ) );
103 VLC_EXPORT( int, playlist_AddItem, ( playlist_t *, playlist_item_t *, int, int ) );
104 VLC_EXPORT( int, playlist_Delete, ( playlist_t *, int ) );
105 VLC_EXPORT( int, playlist_Move, ( playlist_t *, int, int ) );
106 VLC_EXPORT( int, playlist_LoadFile, ( playlist_t *, const char * ) );
107 VLC_EXPORT( int, playlist_SaveFile, ( playlist_t *, const char * ) );
110 * tell if a playlist is currently playing.
111 * \param p_playlist the playlist to check
112 * \return true if playlist is playing, false otherwise
114 static inline vlc_bool_t playlist_IsPlaying( playlist_t * p_playlist )
116 vlc_bool_t b_playing;
118 vlc_mutex_lock( &p_playlist->object_lock );
119 b_playing = p_playlist->i_status == PLAYLIST_RUNNING;
120 vlc_mutex_unlock( &p_playlist->object_lock );
126 * tell if a playlist is currently empty
127 * \param p_playlist the playlist to check
128 * \return true if the playlist is empty, false otherwise
130 static inline vlc_bool_t playlist_IsEmpty( playlist_t * p_playlist )
134 vlc_mutex_lock( &p_playlist->object_lock );
135 b_empty = p_playlist->i_size == 0;
136 vlc_mutex_unlock( &p_playlist->object_lock );