Mercurial > audlegacy
annotate src/audacious/effect.h @ 4557:2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
| author | Matti Hamalainen <ccr@tnsp.org> |
|---|---|
| date | Mon, 19 May 2008 01:29:46 +0300 |
| parents | a73951b8cd9f |
| children |
| rev | line source |
|---|---|
| 2313 | 1 /* Audacious - Cross-platform multimedia player |
| 2 * Copyright (C) 2005-2007 Audacious development team | |
| 3 * | |
| 4 * Based on BMP: | |
| 5 * Copyright (C) 2003-2004 BMP development team. | |
| 6 * | |
| 7 * Based on XMMS: | |
| 8 * Copyright (C) 1998-2003 XMMS development team. | |
| 9 * | |
| 10 * This program is free software; you can redistribute it and/or modify | |
| 11 * it under the terms of the GNU General Public License as published by | |
|
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2365
diff
changeset
|
12 * the Free Software Foundation; under version 3 of the License. |
| 2313 | 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 | |
|
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2365
diff
changeset
|
20 * along with this program. If not, see <http://www.gnu.org/licenses>. |
|
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
21 * |
|
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
22 * The Audacious team does not consider modular code linking to |
|
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
23 * Audacious or using our public API to be a derived work. |
| 2313 | 24 */ |
| 25 | |
|
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
3555
diff
changeset
|
26 #ifndef AUDACIOUS_EFFECT_H |
|
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
3555
diff
changeset
|
27 #define AUDACIOUS_EFFECT_H |
| 2313 | 28 |
| 29 #include <glib.h> | |
|
3555
a73951b8cd9f
effect processing -> flow manager API / attached to postproc_flow.
William Pitcock <nenolod@atheme.org>
parents:
3487
diff
changeset
|
30 |
|
a73951b8cd9f
effect processing -> flow manager API / attached to postproc_flow.
William Pitcock <nenolod@atheme.org>
parents:
3487
diff
changeset
|
31 #include "audacious/flow.h" |
|
3487
ef08e1a4f5b7
Better execution of that concept.
William Pitcock <nenolod@atheme.org>
parents:
3486
diff
changeset
|
32 #include "audacious/output.h" |
| 2313 | 33 |
| 34 typedef struct _EffectPluginData EffectPluginData; | |
| 35 | |
| 36 struct _EffectPluginData { | |
| 37 GList *effect_list; | |
| 38 GList *enabled_list; | |
| 39 }; | |
| 40 | |
| 41 GList *get_effect_list(void); | |
| 42 GList *get_effect_enabled_list(void); | |
| 43 void enable_effect_plugin(gint i, gboolean enable); | |
| 44 gchar *effect_stringify_enabled_list(void); | |
| 45 void effect_enable_from_stringified_list(const gchar * list); | |
|
3486
96baf555b449
Get rid of "XMMS Multiple Effect Plugin support" hack. Effects processing is handled in produce_audio() now days.
William Pitcock <nenolod@atheme.org>
parents:
3455
diff
changeset
|
46 gint effect_do_mod_samples(gpointer * data, gint length, AFormat fmt, |
|
96baf555b449
Get rid of "XMMS Multiple Effect Plugin support" hack. Effects processing is handled in produce_audio() now days.
William Pitcock <nenolod@atheme.org>
parents:
3455
diff
changeset
|
47 gint srate, gint nch); |
|
96baf555b449
Get rid of "XMMS Multiple Effect Plugin support" hack. Effects processing is handled in produce_audio() now days.
William Pitcock <nenolod@atheme.org>
parents:
3455
diff
changeset
|
48 void effect_do_query_format(AFormat * fmt, gint * rate, gint * nch); |
|
3555
a73951b8cd9f
effect processing -> flow manager API / attached to postproc_flow.
William Pitcock <nenolod@atheme.org>
parents:
3487
diff
changeset
|
49 void effect_flow(FlowContext *context); |
| 2313 | 50 |
| 51 extern EffectPluginData ep_data; | |
| 52 | |
|
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
3555
diff
changeset
|
53 #endif /* AUDACIOUS_EFFECT_H */ |
