Mercurial > audlegacy
annotate src/audacious/visualization.h @ 4732:65d67970fab7
Move the slider bar to the toolbar, but this is kinda ugly at the moment.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Thu, 17 Jul 2008 04:20:10 -0500 |
parents | a77d02342ee1 |
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:
2313
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:
2313
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 */ |
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
3559
diff
changeset
|
25 #ifndef AUDACIOUS_VISUALIZATION_H |
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
3559
diff
changeset
|
26 #define AUDACIOUS_VISUALIZATION_H |
2313 | 27 |
28 #include <glib.h> | |
3559 | 29 #include "flow.h" |
2313 | 30 #include "plugin.h" |
31 | |
32 typedef struct _VisPluginData VisPluginData; | |
33 | |
34 struct _VisPluginData { | |
35 GList *vis_list; | |
36 GList *enabled_list; | |
37 gboolean playback_started; | |
38 }; | |
39 | |
40 GList *get_vis_list(void); | |
41 GList *get_vis_enabled_list(void); | |
42 void enable_vis_plugin(gint i, gboolean enable); | |
43 void vis_disable_plugin(VisPlugin * vp); | |
44 void vis_playback_start(void); | |
45 void vis_playback_stop(void); | |
46 gchar *vis_stringify_enabled_list(void); | |
47 void vis_enable_from_stringified_list(gchar * list); | |
4596
a77d02342ee1
change visualization timeout; export calc_stereo_pcm, calc_mono_pcm and calc_mono_freq to PAPI
Tomasz Mon <desowin@gmail.com>
parents:
4557
diff
changeset
|
48 void calc_stereo_pcm(gint16 dest[2][512], gint16 src[2][512], gint nch); |
a77d02342ee1
change visualization timeout; export calc_stereo_pcm, calc_mono_pcm and calc_mono_freq to PAPI
Tomasz Mon <desowin@gmail.com>
parents:
4557
diff
changeset
|
49 void calc_mono_pcm(gint16 dest[2][512], gint16 src[2][512], gint nch); |
a77d02342ee1
change visualization timeout; export calc_stereo_pcm, calc_mono_pcm and calc_mono_freq to PAPI
Tomasz Mon <desowin@gmail.com>
parents:
4557
diff
changeset
|
50 void calc_mono_freq(gint16 dest[2][256], gint16 src[2][512], gint nch); |
2313 | 51 void vis_send_data(gint16 pcm_data[2][512], gint nch, gint length); |
3559 | 52 void vis_flow(FlowContext *context); |
2313 | 53 |
54 extern VisPluginData vp_data; | |
55 | |
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
3559
diff
changeset
|
56 #endif /* AUDACIOUS_VISUALIZATION_H */ |