1 /*****************************************************************************
2 * parser.c : OSD import module
3 *****************************************************************************
4 * Copyright (C) 2007 M2X
7 * Authors: Jean-Paul Saman
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
26 *****************************************************************************/
29 #include <vlc_config.h>
32 #include <vlc_image.h>
34 #include <vlc_charset.h>
38 /***************************************************************************
40 ***************************************************************************/
41 int osd_parser_simpleOpen ( vlc_object_t
*p_this
);
42 int osd_parser_xmlOpen ( vlc_object_t
*p_this
);
44 static void osd_parser_Close( vlc_object_t
*p_this
);
46 /*****************************************************************************
48 *****************************************************************************/
51 set_category( CAT_OSD
);
52 set_subcategory( SUBCAT_OSD_IMPORT
);
55 set_description( _("OSD configuration importer") );
56 add_shortcut( "import-osd" );
57 set_capability( "osd parser", 0);
58 set_callbacks( osd_parser_simpleOpen
, osd_parser_Close
);
61 set_description( _("XML OSD configuration importer") );
62 add_shortcut( "import-osd-xml" );
63 set_capability( "osd parser", 0);
64 set_callbacks( osd_parser_xmlOpen
, osd_parser_Close
);
68 /*****************************************************************************
69 * osd_parser_Close: Free all osd menu structure resources
70 *****************************************************************************/
72 void osd_parser_Close ( vlc_object_t
*p_this
)
74 osd_menu_t
*p_menu
= (osd_menu_t
*) p_this
;
76 osd_MenuFree( p_menu
);