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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * beos.cpp : BeOS plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2001 the VideoLAN team
  5.  * $Id: 337e85bae021f64b7563aa4e16657a7a26dce6f7 $
  6.  *
  7.  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  8.  *          Samuel Hocevar <sam@zoy.org>
  9.  *          Stephan Aßmus <stippi@yellowbites.com>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #ifdef HAVE_CONFIG_H
  29. # include "config.h"
  30. #endif
  31. #include <vlc_common.h>
  32. #include <vlc_plugin.h>
  33. /*****************************************************************************
  34.  * External prototypes
  35.  *****************************************************************************/
  36. int  OpenIntf     ( vlc_object_t * );
  37. void CloseIntf    ( vlc_object_t * );
  38. int  OpenAudio    ( vlc_object_t * );
  39. void CloseAudio   ( vlc_object_t * );
  40. int  OpenVideo    ( vlc_object_t * );
  41. void CloseVideo   ( vlc_object_t * );
  42. /*****************************************************************************
  43.  * Module descriptor
  44.  *****************************************************************************/
  45. vlc_module_begin ()
  46.     set_category( CAT_INTERFACE )
  47.     set_subcategory( SUBCAT_INTERFACE_MAIN )
  48.     add_bool( "beos-dvdmenus", 0, NULL, _("Use DVD Menus"), "", true )
  49.     set_shortname( "BeOS" )
  50.     set_description( N_("BeOS standard API interface") )
  51.     set_capability( "interface", 100 )
  52.     set_callbacks( OpenIntf, CloseIntf )
  53.     add_submodule ()
  54.         set_capability( "video output", 100 )
  55.         set_callbacks( OpenVideo, CloseVideo )
  56.     add_submodule ()
  57.         set_capability( "audio output", 100 )
  58.         set_callbacks( OpenAudio, CloseAudio )
  59. vlc_module_end ()