]> git.sesse.net Git - vlc/blob - modules/misc/playlist/export.c
a42ef39358e40703576edbb3b54575a063c2279c
[vlc] / modules / misc / playlist / export.c
1 /*****************************************************************************
2  * export.c :  Playlist export module
3  *****************************************************************************
4  * Copyright (C) 2004-2009 the VideoLAN team
5  * $Id$
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  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_plugin.h>
33
34 /***************************************************************************
35  * Prototypes
36  ***************************************************************************/
37 int Export_M3U    ( vlc_object_t *p_intf );
38 int Export_M3U8   ( vlc_object_t *p_intf );
39 int Export_HTML   ( vlc_object_t *p_intf );
40 int xspf_export_playlist( vlc_object_t *p_intf );
41
42 /*****************************************************************************
43  * Module descriptor
44  *****************************************************************************/
45 vlc_module_begin ()
46
47     set_category( CAT_PLAYLIST )
48     set_subcategory( SUBCAT_PLAYLIST_EXPORT )
49     add_submodule ()
50         set_description( N_("M3U playlist export") )
51         add_shortcut( "export-m3u" )
52         set_capability( "playlist export" , 0 )
53         set_callbacks( Export_M3U , NULL )
54
55     add_submodule ()
56         set_description( N_("M3U8 playlist export") )
57         add_shortcut( "export-m3u8" )
58         set_capability( "playlist export" , 0 )
59         set_callbacks( Export_M3U8, NULL )
60
61     add_submodule ()
62         set_description( N_("XSPF playlist export") )
63         add_shortcut( "export-xspf" )
64         set_capability( "playlist export" , 0 )
65         set_callbacks( xspf_export_playlist , NULL )
66
67     add_submodule ()
68         set_description( N_("HTML playlist export") )
69         add_shortcut( "export-html" )
70         set_capability( "playlist export", 0 )
71         set_callbacks( Export_HTML, NULL )
72
73 vlc_module_end ()