qt: playlist: use item title if available
[vlc.git] / modules / demux / playlist / playlist.h
blob4d35a8e20c3e159427babf38b9b3b989a2049788
1 /*****************************************************************************
2 * playlist.h: Playlist import module common functions
3 *****************************************************************************
4 * Copyright (C) 2004 VLC authors and VideoLAN
6 * Authors: Sigmund Augdal Helberg <dnumgis@videolan.org>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Lesser General Public License as published by
10 * the Free Software Foundation; either version 2.1 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 *****************************************************************************/
23 #include <vlc_input.h>
25 char *ProcessMRL( const char *, const char * );
27 int PlaylistControl( stream_t *p_access, int i_query, va_list args );
29 int Import_M3U ( vlc_object_t * );
31 int Import_RAM ( vlc_object_t * );
33 int Import_PLS ( vlc_object_t * );
35 int Import_B4S ( vlc_object_t * );
37 int Import_DVB ( vlc_object_t * );
39 int Import_podcast ( vlc_object_t * );
41 int Import_xspf ( vlc_object_t * );
42 void Close_xspf ( vlc_object_t * );
44 int Import_Shoutcast ( vlc_object_t * );
46 int Import_ASX ( vlc_object_t * );
48 int Import_SGIMB ( vlc_object_t * );
49 void Close_SGIMB ( vlc_object_t * );
51 int Import_QTL ( vlc_object_t * );
53 int Import_IFO ( vlc_object_t * );
54 void Close_IFO ( vlc_object_t * );
56 int Import_BDMV ( vlc_object_t * );
57 void Close_BDMV ( vlc_object_t * );
59 int Import_iTML ( vlc_object_t * );
61 int Import_WMS(vlc_object_t *);
63 int Import_WPL ( vlc_object_t * );
64 void Close_WPL ( vlc_object_t * );
66 #define GetCurrentItem(obj) ((obj)->p_input_item)
67 #define GetSource(obj) ((obj)->s)