Mercurial > audlegacy
annotate src/audacious/iir_cfs.h @ 4054:d3b549e75380
removed some old icons and replaced them with shiny, new ones
author | mf0102 <0102@gmx.at> |
---|---|
date | Sun, 02 Dec 2007 21:21:21 +0100 |
parents | 3b6d316f8b09 |
children |
rev | line source |
---|---|
2313 | 1 /* |
2 * PCM time-domain equalizer | |
3 * | |
4 * Copyright (C) 2002-2005 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 | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2520
diff
changeset
|
8 * the Free Software Foundation; either version 3 of the License, or |
2313 | 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 | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2520
diff
changeset
|
17 * along with this program. If not, see <http://www.gnu.org/licenses>. |
2313 | 18 * |
19 * $Id: iir_cfs.h,v 1.1 2005/10/17 01:57:59 liebremx Exp $ | |
20 */ | |
21 #ifndef IIR_CFS_H | |
22 #define IIR_CFS_H | |
23 | |
24 #include <glib.h> | |
25 | |
26 /* Coefficients entry */ | |
27 typedef struct | |
28 { | |
29 float beta; | |
30 float alpha; | |
31 float gamma; | |
2520
b210d1ea2084
[svn] ui_main.h:92: warning: comma at end of enumerator list
nenolod
parents:
2313
diff
changeset
|
32 float dummy; /* Word alignment */ |
2313 | 33 }sIIRCoefficients; |
34 | |
35 sIIRCoefficients* get_coeffs(gint *bands, gint sfreq, | |
36 gboolean use_xmms_original_freqs); | |
37 void calc_coeffs(); | |
38 | |
39 #endif |