0
|
1 /*
|
|
2 * PCM time-domain equalizer
|
|
3 *
|
|
4 * Copyright (C) 2002 Felipe Rivera <liebremx at users.sourceforge.net>
|
|
5 *
|
|
6 * This program is free software; you can redistribute it and/or modify
|
|
7 * it under the terms of the GNU General Public License as published by
|
|
8 * the Free Software Foundation; either version 2 of the License, or
|
|
9 * (at your option) any later version.
|
|
10 *
|
|
11 * This program is distributed in the hope that it will be useful,
|
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 * GNU General Public License for more details.
|
|
15 *
|
|
16 * You should have received a copy of the GNU General Public License
|
|
17 * along with this program; if not, write to the Free Software
|
|
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
19 *
|
|
20 * $Id: iir.h,v 1.5 2004/06/20 18:48:54 mderezynski Exp $
|
|
21 */
|
|
22 #ifndef IIR_H
|
|
23 #define IIR_H
|
|
24
|
|
25 #define EQ_MAX_BANDS 10
|
|
26 #define EQ_CHANNELS 2
|
|
27
|
|
28 extern float gain[10];
|
|
29 extern float preamp;
|
|
30
|
|
31 int iir(gpointer * d, gint length);
|
|
32 void init_iir();
|
|
33
|
|
34
|
|
35 #endif /* #define IIR_H */
|