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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * macosx.m: minimal Mac OS X module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2007 the VideoLAN team
  5.  * $Id: d7c95ea408d72ae24407191818717e7b86fcffd4 $
  6.  *
  7.  * Authors: Colin Delacroix <colin@zoy.org>
  8.  *          Eugenio Jarosiewicz <ej0@cise.ufl.edu>
  9.  *          Florian G. Pflug <fgp@phlo.org>
  10.  *          Jon Lech Johansen <jon-vl@nanocrew.net>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  25.  *****************************************************************************/
  26. /*****************************************************************************
  27.  * Preamble
  28.  *****************************************************************************/
  29. #include <stdlib.h>                                      /* malloc(), free() */
  30. #include <string.h>
  31. #ifdef HAVE_CONFIG_H
  32. # include "config.h"
  33. #endif
  34. #include <vlc_common.h>
  35. #include <vlc_plugin.h>
  36. /*****************************************************************************
  37.  * External prototypes
  38.  *****************************************************************************/
  39. int  OpenIntf     ( vlc_object_t * );
  40. void CloseIntf    ( vlc_object_t * );
  41. int  OpenVideoGL  ( vlc_object_t * );
  42. void CloseVideoGL ( vlc_object_t * );
  43. /*****************************************************************************
  44.  * Module descriptor
  45.  *****************************************************************************/
  46. vlc_module_begin ()
  47.     /* Minimal interface. see intf.m */
  48.     set_shortname( "Minimal Macosx" )
  49.     add_shortcut( "minimal_macosx" )
  50.     add_shortcut( "miosx" )
  51.     set_description( N_("Minimal Mac OS X interface") )
  52.     set_capability( "interface", 50 )
  53.     set_callbacks( OpenIntf, CloseIntf )
  54.     set_category( CAT_INTERFACE )
  55.     set_subcategory( SUBCAT_INTERFACE_MAIN )
  56.     add_submodule ()
  57.         /* Will be loaded even without interface module. see voutgl.m */
  58.         add_shortcut( "minimal_macosx" )
  59.         add_shortcut( "miosx" )
  60.         set_description( N_("Minimal Mac OS X OpenGL video output (opens a borderless window)") )
  61.         set_capability( "opengl provider", 50 )
  62.         set_category( CAT_VIDEO)
  63.         set_subcategory( SUBCAT_VIDEO_VOUT )
  64.         set_callbacks( OpenVideoGL, CloseVideoGL )
  65. vlc_module_end ()