BeOS.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * beos.cpp : BeOS plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2001 VideoLAN
  5.  * $Id: BeOS.cpp 6961 2004-03-05 17:34:23Z sam $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #include <stdlib.h>                                      /* malloc(), free() */
  29. #include <string.h>
  30. #include <vlc/vlc.h>
  31. /*****************************************************************************
  32.  * External prototypes
  33.  *****************************************************************************/
  34. int  E_(OpenIntf)     ( vlc_object_t * );
  35. void E_(CloseIntf)    ( vlc_object_t * );
  36. int  E_(OpenAudio)    ( vlc_object_t * );
  37. void E_(CloseAudio)   ( vlc_object_t * );
  38. int  E_(OpenVideo)    ( vlc_object_t * );
  39. void E_(CloseVideo)   ( vlc_object_t * );
  40. /*****************************************************************************
  41.  * Module descriptor
  42.  *****************************************************************************/
  43. static char * ppsz_screenshotformat[] = { "TGA", "PPM", "PNG", "JPEG", "BMP" };
  44. vlc_module_begin();
  45.     add_bool( "beos-dvdmenus", 0, NULL, _("Use DVD Menus"), "", VLC_TRUE );
  46.     add_string( "beos-screenshotpath", "/boot/home/", NULL,
  47.                 _("Screenshot Path"), "", VLC_TRUE );
  48.     add_string( "beos-screenshotformat", "PNG",  NULL,
  49.                 _("Screenshot Format"),"", VLC_TRUE );
  50.     change_string_list( ppsz_screenshotformat, 0, 0 );
  51.     set_description( _("BeOS standard API interface") );
  52.     set_capability( "interface", 100 );
  53.     set_callbacks( E_(OpenIntf), E_(CloseIntf) );
  54.     add_submodule();
  55.         set_capability( "video output", 100 );
  56.         set_callbacks( E_(OpenVideo), E_(CloseVideo) );
  57.     add_submodule();
  58.         set_capability( "audio output", 100 );
  59.         set_callbacks( E_(OpenAudio), E_(CloseAudio) );
  60. vlc_module_end();