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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * visual.h : Header for the visualisation system
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: visual.h 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Cl閙ent 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., 59 Temple Place - Suite 330, Boston, MA  02111, 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. } visual_effect_t ;
  34. /*****************************************************************************
  35.  * aout_filter_sys_t: visualizer audio filter method descriptor
  36.  *****************************************************************************
  37.  * This structure is part of the audio filter descriptor.
  38.  * It describes some visualizer specific variables.
  39.  *****************************************************************************/
  40. typedef struct aout_filter_sys_t
  41. {
  42.     vout_thread_t   *p_vout;
  43.     int             i_width;
  44.     int             i_height;
  45.     int             i_effect;
  46.     visual_effect_t **effect;
  47. } aout_filter_sys_t;
  48. /* Prototypes */
  49. int scope_Run
  50.         (visual_effect_t * , aout_instance_t *, aout_buffer_t *, picture_t *);
  51. int dummy_Run
  52.         (visual_effect_t * , aout_instance_t *, aout_buffer_t *, picture_t *);
  53. int random_Run
  54.         (visual_effect_t * , aout_instance_t *, aout_buffer_t *, picture_t *);
  55. int spectrum_Run
  56.         (visual_effect_t * , aout_instance_t *, aout_buffer_t *, picture_t *);
  57. #if 0
  58. int blur_Run
  59.         (visual_effect_t * , aout_instance_t *, aout_buffer_t *, picture_t *);
  60. #endif
  61. /* Default vout size */
  62. #define VOUT_WIDTH 320
  63. #define VOUT_HEIGHT 120