parser.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * parser.c :  OSD import module
  3.  *****************************************************************************
  4.  * Copyright (C) 2007 M2X
  5.  * $Id: 70f01be6f3eef7edaa32a54ab273889635056e12 $
  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.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_osd.h>
  32. #include "osd_menu.h"
  33. /***************************************************************************
  34.  * Prototypes
  35.  ***************************************************************************/
  36. int osd_parser_simpleOpen ( vlc_object_t *p_this );
  37. int osd_parser_xmlOpen ( vlc_object_t *p_this );
  38. static void osd_parser_Close( vlc_object_t *p_this );
  39. /*****************************************************************************
  40.  * Module descriptor
  41.  *****************************************************************************/
  42. vlc_module_begin ()
  43.     add_submodule ()
  44.         set_description( N_("OSD configuration importer") )
  45.         add_shortcut( "import-osd" )
  46.         set_capability( "osd parser", 0)
  47.         set_callbacks( osd_parser_simpleOpen, osd_parser_Close )
  48.     add_submodule ()
  49.         set_description( N_("XML OSD configuration importer") )
  50.         add_shortcut( "import-osd-xml" )
  51.         set_capability( "osd parser", 0)
  52.         set_callbacks( osd_parser_xmlOpen, osd_parser_Close )
  53. vlc_module_end ()
  54. /*****************************************************************************
  55.  * osd_parser_Close: Free all osd menu structure resources
  56.  *****************************************************************************/
  57. void osd_parser_Close ( vlc_object_t *p_this )
  58. {
  59.     osd_menu_t *p_menu = (osd_menu_t *) p_this;
  60.     if( p_menu )
  61.         osd_MenuFree( p_menu );
  62. }