]> git.sesse.net Git - vlc/blob - modules/misc/osd/parser.c
Include vlc_plugin.h as needed
[vlc] / modules / misc / osd / parser.c
1 /*****************************************************************************
2  * parser.c :  OSD import module
3  *****************************************************************************
4  * Copyright (C) 2007 M2X
5  * $Id$
6  *
7  * Authors: Jean-Paul Saman
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/vlc.h>
32 #include <vlc_plugin.h>
33 #include <vlc_vout.h>
34 #include <vlc_config.h>
35
36 #include <vlc_keys.h>
37 #include <vlc_image.h>
38 #include <vlc_osd.h>
39 #include <vlc_charset.h>
40
41 #include "osd_menu.h"
42
43 /***************************************************************************
44  * Prototypes
45  ***************************************************************************/
46 int osd_parser_simpleOpen ( vlc_object_t *p_this );
47 int osd_parser_xmlOpen ( vlc_object_t *p_this );
48
49 static void osd_parser_Close( vlc_object_t *p_this );
50
51 /*****************************************************************************
52  * Module descriptor
53  *****************************************************************************/
54 vlc_module_begin();
55
56     set_category( CAT_OSD );
57     set_subcategory( SUBCAT_OSD_IMPORT );
58
59     add_submodule();
60         set_description( _("OSD configuration importer") );
61         add_shortcut( "import-osd" );
62         set_capability( "osd parser", 0);
63         set_callbacks( osd_parser_simpleOpen, osd_parser_Close );
64
65     add_submodule();
66         set_description( _("XML OSD configuration importer") );
67         add_shortcut( "import-osd-xml" );
68         set_capability( "osd parser", 0);
69         set_callbacks( osd_parser_xmlOpen, osd_parser_Close );
70
71 vlc_module_end();
72
73 /*****************************************************************************
74  * osd_parser_Close: Free all osd menu structure resources
75  *****************************************************************************/
76
77 void osd_parser_Close ( vlc_object_t *p_this )
78 {
79     osd_menu_t *p_menu = (osd_menu_t *) p_this;
80     if( p_menu )
81         osd_MenuFree( p_menu );
82 }