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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * qnx.c : QNX RTOS plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2001 the VideoLAN team
  5.  *
  6.  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  21.  *****************************************************************************/
  22. /*****************************************************************************
  23.  * Preamble
  24.  *****************************************************************************/
  25. #ifdef HAVE_CONFIG_H
  26. # include "config.h"
  27. #endif
  28. #include <vlc_common.h>
  29. #include <vlc_plugin.h>
  30. /*****************************************************************************
  31.  * External prototypes
  32.  ******************************************************************************/
  33. int  OpenAudio    ( vlc_object_t * );
  34. void CloseAudio   ( vlc_object_t * );
  35. int  OpenVideo    ( vlc_object_t * );
  36. void CloseVideo   ( vlc_object_t * );
  37. /*****************************************************************************
  38.  * Module descriptor
  39.  *****************************************************************************/
  40. vlc_module_begin ()
  41.     set_description( N_("QNX RTOS video and audio output") )
  42.     set_capability( "video output", 100 )
  43.     set_callbacks( OpenVideo, CloseVideo )
  44.     set_category( CAT_INTERFACE )
  45.     set_subcategory( SUBCAT_INTERFACE_MAIN )
  46.     add_submodule ()
  47.         set_capability( "audio output", 100 )
  48.         set_callbacks( OpenAudio, CloseAudio )
  49. vlc_module_end ()