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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * visual.h : Header for the visualisation system
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 the VideoLAN team
  5.  * $Id: 532abc184023dd49a344588ec11835d00889830e $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@via.ecp.fr>
  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. typedef struct visual_effect_t
  24. {
  25.     char *     psz_name;    /* Filter name*/
  26.     int         (*pf_run)( struct visual_effect_t * , aout_instance_t *,
  27.                            aout_buffer_t *, picture_t *);
  28.     void *     p_data; /* The effect stores whatever it wants here */
  29.     int        i_width;
  30.     int        i_height;
  31.     char *     psz_args;
  32.     int        i_nb_chans;
  33.     /* Channels index */
  34.     int        i_idx_left;
  35.     int        i_idx_right;
  36. } visual_effect_t ;
  37. typedef struct spectrum_data
  38. {
  39.     int *peaks;
  40.     int *prev_heights;
  41. } spectrum_data;
  42. /*****************************************************************************
  43.  * aout_filter_sys_t: visualizer audio filter method descriptor
  44.  *****************************************************************************
  45.  * This structure is part of the audio filter descriptor.
  46.  * It describes some visualizer specific variables.
  47.  *****************************************************************************/
  48. struct aout_filter_sys_t
  49. {
  50.     vout_thread_t   *p_vout;
  51.     int             i_width;
  52.     int             i_height;
  53.     int             i_effect;
  54.     visual_effect_t **effect;
  55. };
  56. /* Prototypes */
  57. int scope_Run
  58.         (visual_effect_t * , aout_instance_t *, aout_buffer_t *, picture_t *);
  59. int vuMeter_Run
  60.         (visual_effect_t * , aout_instance_t *, aout_buffer_t *, picture_t *);
  61. int dummy_Run
  62.         (visual_effect_t * , aout_instance_t *, aout_buffer_t *, picture_t *);
  63. int random_Run
  64.         (visual_effect_t * , aout_instance_t *, aout_buffer_t *, picture_t *);
  65. int spectrum_Run
  66.         (visual_effect_t * , aout_instance_t *, aout_buffer_t *, picture_t *);
  67. int spectrometer_Run
  68.         (visual_effect_t * , aout_instance_t *, aout_buffer_t *, picture_t *);
  69. /* Default vout size */
  70. #define VOUT_WIDTH 533
  71. #define VOUT_HEIGHT 400