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

midi

开发平台:

Unix_Linux

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