]> git.sesse.net Git - vlc/blob - modules/visualization/visual/visual.h
d1b20c42bfcb32365d4fa00438306f98cbb6ce88
[vlc] / modules / visualization / visual / visual.h
1 /*****************************************************************************
2  * visual.h : Header for the visualisation system
3  *****************************************************************************
4  * Copyright (C) 2002-2009 the VideoLAN team
5  * $Id$
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
24 typedef struct visual_effect_t
25 {
26     const char *psz_name;    /* Filter name*/
27
28     int        (*pf_run)( struct visual_effect_t * , vlc_object_t *,
29                           const block_t *, picture_t *);
30     void *     p_data; /* The effect stores whatever it wants here */
31     int        i_width;
32     int        i_height;
33     char *     psz_args;
34     int        i_nb_chans;
35
36     /* Channels index */
37     int        i_idx_left;
38     int        i_idx_right;
39 } visual_effect_t ;
40
41 typedef struct spectrum_data
42 {
43     int *peaks;
44     int *prev_heights;
45
46     unsigned i_prev_nb_samples;
47     int16_t *p_prev_s16_buff;
48 } spectrum_data;
49
50 typedef struct
51 {
52     int *peaks;
53
54     unsigned i_prev_nb_samples;
55     int16_t *p_prev_s16_buff;
56 } spectrometer_data;
57
58 /*****************************************************************************
59  * aout_filter_sys_t: visualizer audio filter method descriptor
60  *****************************************************************************
61  * This structure is part of the audio filter descriptor.
62  * It describes some visualizer specific variables.
63  *****************************************************************************/
64 struct filter_sys_t
65 {
66     vout_thread_t   *p_vout;
67
68     int             i_width;
69     int             i_height;
70
71     int             i_effect;
72     visual_effect_t **effect;
73 };
74
75 /* Prototypes */
76 int scope_Run
77         (visual_effect_t * , vlc_object_t *, const block_t *, picture_t *);
78 int vuMeter_Run
79         (visual_effect_t * , vlc_object_t *, const block_t *, picture_t *);
80 int dummy_Run
81         (visual_effect_t * , vlc_object_t *, const block_t *, picture_t *);
82 int random_Run
83         (visual_effect_t * , vlc_object_t *, const block_t *, picture_t *);
84 int spectrum_Run
85         (visual_effect_t * , vlc_object_t *, const block_t *, picture_t *);
86 int spectrometer_Run
87         (visual_effect_t * , vlc_object_t *, const block_t *, picture_t *);
88
89 /* Default vout size */
90 #define VOUT_WIDTH 800
91 #define VOUT_HEIGHT 640