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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * plugin.h:
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: 980d34e03e01a135a7180fb10e4cf3e7a902b075 $
  6.  *
  7.  * Authors: Cyril Deguet <asmax@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. #ifndef _GALAKTOS_PLUGIN_H_
  24. #define _GALAKTOS_PLUGIN_H_
  25. #ifdef HAVE_CONFIG_H
  26.  #include "config.h"
  27. #endif
  28. #include <vlc_common.h>
  29. #include <vlc_aout.h>
  30. #include <vlc_vout.h>
  31. #define MAX_BLOCKS 10
  32. typedef struct
  33. {
  34.     VLC_COMMON_MEMBERS
  35.     char          *psz_title;
  36.     /* OpenGL provider */
  37.     vout_thread_t *p_opengl;
  38.     module_t      *p_module;
  39.     /* Window properties */
  40.     int           i_width;
  41.     int           i_height;
  42.     int           b_fullscreen;
  43.     /* Audio properties */
  44.     int           i_channels;
  45.     /* Audio buffer */
  46.     int16_t       p_data[2][512];
  47.     int           i_cur_sample;
  48.     /* OS specific data */
  49.     void          *p_os_data;
  50. } galaktos_thread_t;
  51. #endif