Mercurial > audlegacy
annotate src/audacious/plugin.h @ 3190:dcc92b58f06e trunk
Un-shortcircuit some code that I didn't mean to.
author | William Pitcock <nenolod@atheme-project.org> |
---|---|
date | Fri, 27 Jul 2007 19:44:14 -0500 |
parents | 1596dcb77acd |
children | 2619f4c62abe 06baa146fc1d |
rev | line source |
---|---|
2313 | 1 /* Audacious |
2 * Copyright (C) 2005-2007 Audacious team. | |
3 * | |
4 * BMP - Cross-platform multimedia player | |
5 * Copyright (C) 2003-2004 BMP development team. | |
6 * | |
7 * Based on XMMS: | |
8 * Copyright (C) 1998-2000 Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies | |
9 * | |
10 * Redistribution and use in source and binary forms, with or without | |
11 * modification, are permitted provided that the following conditions are | |
12 * met: | |
13 * | |
14 * 1. Redistributions of source code must retain the above copyright | |
15 * notice, this list of conditions and the following disclaimer. | |
16 * | |
17 * 2. Redistributions in binary form must reproduce the above copyright | |
18 * notice, this list of conditions and the following disclaimer in | |
19 * the documentation and/or other materials provided with the | |
20 * distribution. | |
21 * | |
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY | |
23 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | |
24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
25 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR | |
26 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
28 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
32 * SUCH DAMAGE. | |
33 */ | |
34 | |
35 #ifndef BMP_PLUGIN_H | |
36 #define BMP_PLUGIN_H | |
37 | |
38 #include <glib.h> | |
39 #include "audacious/vfs.h" | |
40 #include "audacious/titlestring.h" | |
3149
84c44d369969
Add eventqueue interface.
William Pitcock <nenolod@atheme-project.org>
parents:
3126
diff
changeset
|
41 #include "audacious/eventqueue.h" |
2313 | 42 |
2797
f0c1c8b22c88
[svn] - first attempt at an plugin API2 loader. this is entirely implemented inside the plugin2 namespace, so please respect that if you go editing this ;p
nenolod
parents:
2796
diff
changeset
|
43 #define PLUGIN(x) ((Plugin *)(x)) |
2313 | 44 #define INPUT_PLUGIN(x) ((InputPlugin *)(x)) |
45 #define OUTPUT_PLUGIN(x) ((OutputPlugin *)(x)) | |
46 #define EFFECT_PLUGIN(x) ((EffectPlugin *)(x)) | |
47 #define GENERAL_PLUGIN(x) ((GeneralPlugin *)(x)) | |
48 #define VIS_PLUGIN(x) ((VisPlugin *)(x)) | |
49 | |
50 #define LOWLEVEL_PLUGIN(x) ((LowlevelPlugin *)(x)) | |
51 | |
52 #define __AUDACIOUS_NEWVFS__ | |
3160
03ff51c6412f
__AUDACIOUS_PLUGIN_API__ is now 3.
William Pitcock <nenolod@atheme-project.org>
parents:
3149
diff
changeset
|
53 #define __AUDACIOUS_PLUGIN_API__ 3 |
03ff51c6412f
__AUDACIOUS_PLUGIN_API__ is now 3.
William Pitcock <nenolod@atheme-project.org>
parents:
3149
diff
changeset
|
54 #define __AUDACIOUS_INPUT_PLUGIN_API__ 4 |
2313 | 55 |
56 typedef enum { | |
57 FMT_U8, | |
58 FMT_S8, | |
59 FMT_U16_LE, | |
60 FMT_U16_BE, | |
61 FMT_U16_NE, | |
62 FMT_S16_LE, | |
63 FMT_S16_BE, | |
64 FMT_S16_NE | |
65 } AFormat; | |
66 | |
67 typedef enum { | |
68 INPUT_VIS_ANALYZER, | |
69 INPUT_VIS_SCOPE, | |
70 INPUT_VIS_VU, | |
71 INPUT_VIS_OFF | |
72 } InputVisType; | |
73 | |
74 | |
75 typedef struct _Plugin Plugin; | |
76 typedef struct _InputPlugin InputPlugin; | |
77 typedef struct _OutputPlugin OutputPlugin; | |
78 typedef struct _EffectPlugin EffectPlugin; | |
79 typedef struct _GeneralPlugin GeneralPlugin; | |
80 typedef struct _VisPlugin VisPlugin; | |
81 | |
82 typedef struct _LowlevelPlugin LowlevelPlugin; | |
83 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
84 typedef struct _InputPlayback InputPlayback; |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
85 |
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
86 /* |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
87 * The v2 Module header. |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
88 * |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
89 * _list fields contain a null-terminated list of "plugins" to register. |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
90 * A single library can provide multiple plugins. |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
91 * --nenolod |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
92 */ |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
93 typedef struct { |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
94 gint magic; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
95 gint api_version; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
96 gchar *name; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
97 GCallback init; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
98 GCallback fini; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
99 Plugin *priv_assoc; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
100 InputPlugin **ip_list; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
101 OutputPlugin **op_list; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
102 EffectPlugin **ep_list; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
103 GeneralPlugin **gp_list; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
104 VisPlugin **vp_list; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
105 } PluginHeader; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
106 |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
107 #define PLUGIN_MAGIC 0x8EAC8DE2 |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
108 |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
109 #define DECLARE_PLUGIN(name, init, fini, ip_list, op_list, ep_list, gp_list, vp_list) \ |
2802
c799098c396f
[svn] - guard v2 module header with G_BEGIN_DECLS and G_END_DECLS
nenolod
parents:
2797
diff
changeset
|
110 G_BEGIN_DECLS \ |
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
111 static PluginHeader _pluginInfo = { PLUGIN_MAGIC, __AUDACIOUS_PLUGIN_API__, \ |
2841
b2fb6a4e02b8
add a cast to DECLARE_PLUGIN() to suppress warnings.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2802
diff
changeset
|
112 (gchar *)#name, init, fini, NULL, ip_list, op_list, ep_list, gp_list, \ |
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
113 vp_list }; \ |
3061
7d858d2b4031
Use G_MODULE_EXPORT to ensure the plugin header is exported.
William Pitcock <nenolod@atheme-project.org>
parents:
3009
diff
changeset
|
114 G_MODULE_EXPORT PluginHeader *get_plugin_info(void) { \ |
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
115 return &_pluginInfo; \ |
2802
c799098c396f
[svn] - guard v2 module header with G_BEGIN_DECLS and G_END_DECLS
nenolod
parents:
2797
diff
changeset
|
116 } \ |
c799098c396f
[svn] - guard v2 module header with G_BEGIN_DECLS and G_END_DECLS
nenolod
parents:
2797
diff
changeset
|
117 G_END_DECLS |
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
118 |
2313 | 119 /* Sadly, this is the most we can generalize out of the disparate |
120 plugin structs usable with typecasts - descender */ | |
121 struct _Plugin { | |
122 gpointer handle; | |
123 gchar *filename; | |
2794
2685fc11cd9a
[svn] - begin work on the host side of plugin API v2.
nenolod
parents:
2763
diff
changeset
|
124 gchar *description; |
2313 | 125 }; |
126 | |
127 /* | |
128 * LowlevelPlugin is used for lowlevel system services, such as PlaylistContainers, | |
129 * VFSContainers and the like. | |
130 * | |
131 * They are not GUI visible at this time. | |
132 */ | |
133 struct _LowlevelPlugin { | |
134 gpointer handle; | |
135 gchar *filename; | |
136 | |
137 gchar *description; | |
138 | |
139 void (*init) (void); | |
140 void (*cleanup) (void); | |
141 }; | |
142 | |
143 struct _OutputPlugin { | |
144 gpointer handle; | |
145 gchar *filename; | |
146 | |
147 gchar *description; | |
148 | |
149 void (*init) (void); | |
150 void (*cleanup) (void); | |
151 void (*about) (void); | |
152 void (*configure) (void); | |
153 void (*get_volume) (gint * l, gint * r); | |
154 void (*set_volume) (gint l, gint r); | |
155 | |
156 gint (*open_audio) (AFormat fmt, gint rate, gint nch); | |
157 void (*write_audio) (gpointer ptr, gint length); | |
158 void (*close_audio) (void); | |
159 | |
160 void (*flush) (gint time); | |
161 void (*pause) (gshort paused); | |
162 gint (*buffer_free) (void); | |
163 gint (*buffer_playing) (void); | |
164 gint (*output_time) (void); | |
165 gint (*written_time) (void); | |
166 | |
167 void (*tell_audio) (AFormat * fmt, gint * rate, gint * nch); | |
168 }; | |
169 | |
170 struct _EffectPlugin { | |
171 gpointer handle; | |
172 gchar *filename; | |
173 | |
174 gchar *description; | |
175 | |
176 void (*init) (void); | |
177 void (*cleanup) (void); | |
178 void (*about) (void); | |
179 void (*configure) (void); | |
180 | |
181 gint (*mod_samples) (gpointer * data, gint length, AFormat fmt, gint srate, gint nch); | |
182 void (*query_format) (AFormat * fmt, gint * rate, gint * nch); | |
183 }; | |
184 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
185 struct _InputPlayback { |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
186 gchar *filename; |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
187 InputPlugin *plugin; |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
188 void *data; |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
189 OutputPlugin *output; |
2438
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
190 |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
191 int playing; |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
192 gboolean error; |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
193 gboolean eof; |
3181
1596dcb77acd
Track playback monitor thread in InputPlayback.thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3160
diff
changeset
|
194 |
1596dcb77acd
Track playback monitor thread in InputPlayback.thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3160
diff
changeset
|
195 GThread *thread; |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
196 }; |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
197 |
2313 | 198 struct _InputPlugin { |
199 gpointer handle; | |
200 gchar *filename; | |
201 | |
202 gchar *description; | |
203 | |
204 void (*init) (void); | |
205 void (*about) (void); | |
206 void (*configure) (void); | |
207 | |
208 gint (*is_our_file) (gchar * filename); | |
209 GList *(*scan_dir) (gchar * dirname); | |
210 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
211 void (*play_file) (InputPlayback * playback); |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
212 void (*stop) (InputPlayback * playback); |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
213 void (*pause) (InputPlayback * playback, gshort paused); |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
214 void (*seek) (InputPlayback * playback, gint time); |
2313 | 215 |
216 void (*set_eq) (gint on, gfloat preamp, gfloat * bands); | |
217 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
218 gint (*get_time) (InputPlayback * playback); |
2313 | 219 |
2437 | 220 gint (*get_volume) (gint * l, gint * r); |
221 gint (*set_volume) (gint l, gint r); | |
2313 | 222 |
223 void (*cleanup) (void); | |
224 | |
225 InputVisType (*get_vis_type) (void); | |
226 void (*add_vis_pcm) (gint time, AFormat fmt, gint nch, gint length, gpointer ptr); | |
227 | |
228 void (*set_info) (gchar * title, gint length, gint rate, gint freq, gint nch); | |
229 void (*set_info_text) (gchar * text); | |
230 void (*get_song_info) (gchar * filename, gchar ** title, gint * length); | |
231 void (*file_info_box) (gchar * filename); | |
232 | |
2437 | 233 OutputPlugin *output; /* deprecated */ |
2313 | 234 |
235 /* Added in Audacious 1.1.0 */ | |
236 TitleInput *(*get_song_tuple) (gchar * filename); | |
237 void (*set_song_tuple) (TitleInput * tuple); | |
238 void (*set_status_buffering) (gboolean status); | |
239 | |
240 /* Added in Audacious 1.3.0 */ | |
241 gint (*is_our_file_from_vfs) (gchar *filename, VFSFile *fd); | |
242 gchar **vfs_extensions; | |
2620
6393862824e5
[svn] - add millisecond seek function to InputPlugin API. with this function, cuesheet and encoder plugins can achieve higher accuracy.
yaz
parents:
2473
diff
changeset
|
243 |
6393862824e5
[svn] - add millisecond seek function to InputPlugin API. with this function, cuesheet and encoder plugins can achieve higher accuracy.
yaz
parents:
2473
diff
changeset
|
244 /* Added in Audacious 1.4.0 */ |
6393862824e5
[svn] - add millisecond seek function to InputPlugin API. with this function, cuesheet and encoder plugins can achieve higher accuracy.
yaz
parents:
2473
diff
changeset
|
245 void (*mseek) (InputPlayback * playback, gulong millisecond); |
3126
ce5c6a5d64e2
Add new probe_for_tuple() function. Replaces all old probing interfaces.
William Pitcock <nenolod@atheme-project.org>
parents:
3092
diff
changeset
|
246 TitleInput *(*probe_for_tuple)(gchar *uri, VFSFile *fd); |
2313 | 247 }; |
248 | |
249 struct _GeneralPlugin { | |
250 gpointer handle; | |
251 gchar *filename; | |
252 | |
253 gchar *description; | |
254 | |
255 void (*init) (void); | |
256 void (*about) (void); | |
257 void (*configure) (void); | |
258 void (*cleanup) (void); | |
259 }; | |
260 | |
261 struct _VisPlugin { | |
262 gpointer handle; | |
263 gchar *filename; | |
264 | |
265 gchar *description; | |
266 | |
267 gint num_pcm_chs_wanted; | |
268 gint num_freq_chs_wanted; | |
269 | |
270 void (*init) (void); | |
271 void (*cleanup) (void); | |
272 void (*about) (void); | |
273 void (*configure) (void); | |
274 void (*disable_plugin) (struct _VisPlugin *); | |
275 void (*playback_start) (void); | |
276 void (*playback_stop) (void); | |
277 void (*render_pcm) (gint16 pcm_data[2][512]); | |
278 void (*render_freq) (gint16 freq_data[2][256]); | |
279 }; | |
280 | |
281 | |
282 G_BEGIN_DECLS | |
283 | |
284 /* So that input plugins can get the title formatting information */ | |
285 G_CONST_RETURN gchar * xmms_get_gentitle_format(void); | |
286 | |
287 /* So that output plugins can communicate with effect plugins */ | |
288 EffectPlugin *get_current_effect_plugin(void); | |
289 gboolean effects_enabled(void); | |
290 gboolean plugin_set_errortext(const gchar * text); | |
291 | |
292 G_END_DECLS | |
293 | |
3009
9976e065e2f5
Mimetype system.
William Pitcock <nenolod@atheme-project.org>
parents:
2841
diff
changeset
|
294 #include "audacious/mime.h" |
9976e065e2f5
Mimetype system.
William Pitcock <nenolod@atheme-project.org>
parents:
2841
diff
changeset
|
295 |
2313 | 296 #endif |