Mercurial > audlegacy
annotate src/audacious/plugin.h @ 2883:4117f05f7054 trunk
branch merge
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Sun, 24 Jun 2007 05:31:48 -0500 |
parents | b2fb6a4e02b8 |
children | 9976e065e2f5 |
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" | |
41 | |
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
|
42 #define PLUGIN(x) ((Plugin *)(x)) |
2313 | 43 #define INPUT_PLUGIN(x) ((InputPlugin *)(x)) |
44 #define OUTPUT_PLUGIN(x) ((OutputPlugin *)(x)) | |
45 #define EFFECT_PLUGIN(x) ((EffectPlugin *)(x)) | |
46 #define GENERAL_PLUGIN(x) ((GeneralPlugin *)(x)) | |
47 #define VIS_PLUGIN(x) ((VisPlugin *)(x)) | |
48 | |
49 #define LOWLEVEL_PLUGIN(x) ((LowlevelPlugin *)(x)) | |
50 | |
51 #define __AUDACIOUS_NEWVFS__ | |
2794
2685fc11cd9a
[svn] - begin work on the host side of plugin API v2.
nenolod
parents:
2763
diff
changeset
|
52 #define __AUDACIOUS_PLUGIN_API__ 2 |
2685fc11cd9a
[svn] - begin work on the host side of plugin API v2.
nenolod
parents:
2763
diff
changeset
|
53 #define __AUDACIOUS_INPUT_PLUGIN_API__ 3 |
2313 | 54 |
55 typedef enum { | |
56 FMT_U8, | |
57 FMT_S8, | |
58 FMT_U16_LE, | |
59 FMT_U16_BE, | |
60 FMT_U16_NE, | |
61 FMT_S16_LE, | |
62 FMT_S16_BE, | |
63 FMT_S16_NE | |
64 } AFormat; | |
65 | |
66 typedef enum { | |
67 INPUT_VIS_ANALYZER, | |
68 INPUT_VIS_SCOPE, | |
69 INPUT_VIS_VU, | |
70 INPUT_VIS_OFF | |
71 } InputVisType; | |
72 | |
73 | |
74 typedef struct _Plugin Plugin; | |
75 typedef struct _InputPlugin InputPlugin; | |
76 typedef struct _OutputPlugin OutputPlugin; | |
77 typedef struct _EffectPlugin EffectPlugin; | |
78 typedef struct _GeneralPlugin GeneralPlugin; | |
79 typedef struct _VisPlugin VisPlugin; | |
80 | |
81 typedef struct _LowlevelPlugin LowlevelPlugin; | |
82 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
83 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
|
84 |
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
85 /* |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
86 * The v2 Module header. |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
87 * |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
88 * _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
|
89 * A single library can provide multiple plugins. |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
90 * --nenolod |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
91 */ |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
92 typedef struct { |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
93 gint magic; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
94 gint api_version; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
95 gchar *name; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
96 GCallback init; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
97 GCallback fini; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
98 Plugin *priv_assoc; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
99 InputPlugin **ip_list; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
100 OutputPlugin **op_list; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
101 EffectPlugin **ep_list; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
102 GeneralPlugin **gp_list; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
103 VisPlugin **vp_list; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
104 } PluginHeader; |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
105 |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
106 #define PLUGIN_MAGIC 0x8EAC8DE2 |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
107 |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
108 #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
|
109 G_BEGIN_DECLS \ |
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
110 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
|
111 (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
|
112 vp_list }; \ |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
113 PluginHeader *get_plugin_info(void) { \ |
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
114 return &_pluginInfo; \ |
2802
c799098c396f
[svn] - guard v2 module header with G_BEGIN_DECLS and G_END_DECLS
nenolod
parents:
2797
diff
changeset
|
115 } \ |
c799098c396f
[svn] - guard v2 module header with G_BEGIN_DECLS and G_END_DECLS
nenolod
parents:
2797
diff
changeset
|
116 G_END_DECLS |
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
117 |
2313 | 118 /* Sadly, this is the most we can generalize out of the disparate |
119 plugin structs usable with typecasts - descender */ | |
120 struct _Plugin { | |
121 gpointer handle; | |
122 gchar *filename; | |
2794
2685fc11cd9a
[svn] - begin work on the host side of plugin API v2.
nenolod
parents:
2763
diff
changeset
|
123 gchar *description; |
2313 | 124 }; |
125 | |
126 /* | |
127 * LowlevelPlugin is used for lowlevel system services, such as PlaylistContainers, | |
128 * VFSContainers and the like. | |
129 * | |
130 * They are not GUI visible at this time. | |
131 */ | |
132 struct _LowlevelPlugin { | |
133 gpointer handle; | |
134 gchar *filename; | |
135 | |
136 gchar *description; | |
137 | |
138 void (*init) (void); | |
139 void (*cleanup) (void); | |
140 }; | |
141 | |
142 struct _OutputPlugin { | |
143 gpointer handle; | |
144 gchar *filename; | |
145 | |
146 gchar *description; | |
147 | |
148 void (*init) (void); | |
149 void (*cleanup) (void); | |
150 void (*about) (void); | |
151 void (*configure) (void); | |
152 void (*get_volume) (gint * l, gint * r); | |
153 void (*set_volume) (gint l, gint r); | |
154 | |
155 gint (*open_audio) (AFormat fmt, gint rate, gint nch); | |
156 void (*write_audio) (gpointer ptr, gint length); | |
157 void (*close_audio) (void); | |
158 | |
159 void (*flush) (gint time); | |
160 void (*pause) (gshort paused); | |
161 gint (*buffer_free) (void); | |
162 gint (*buffer_playing) (void); | |
163 gint (*output_time) (void); | |
164 gint (*written_time) (void); | |
165 | |
166 void (*tell_audio) (AFormat * fmt, gint * rate, gint * nch); | |
167 }; | |
168 | |
169 struct _EffectPlugin { | |
170 gpointer handle; | |
171 gchar *filename; | |
172 | |
173 gchar *description; | |
174 | |
175 void (*init) (void); | |
176 void (*cleanup) (void); | |
177 void (*about) (void); | |
178 void (*configure) (void); | |
179 | |
180 gint (*mod_samples) (gpointer * data, gint length, AFormat fmt, gint srate, gint nch); | |
181 void (*query_format) (AFormat * fmt, gint * rate, gint * nch); | |
182 }; | |
183 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
184 struct _InputPlayback { |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
185 gchar *filename; |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
186 InputPlugin *plugin; |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
187 void *data; |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
188 OutputPlugin *output; |
2438
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
189 |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
190 int playing; |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
191 gboolean error; |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
192 gboolean eof; |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
193 }; |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
194 |
2313 | 195 struct _InputPlugin { |
196 gpointer handle; | |
197 gchar *filename; | |
198 | |
199 gchar *description; | |
200 | |
201 void (*init) (void); | |
202 void (*about) (void); | |
203 void (*configure) (void); | |
204 | |
205 gint (*is_our_file) (gchar * filename); | |
206 GList *(*scan_dir) (gchar * dirname); | |
207 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
208 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
|
209 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
|
210 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
|
211 void (*seek) (InputPlayback * playback, gint time); |
2313 | 212 |
213 void (*set_eq) (gint on, gfloat preamp, gfloat * bands); | |
214 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
215 gint (*get_time) (InputPlayback * playback); |
2313 | 216 |
2437 | 217 gint (*get_volume) (gint * l, gint * r); |
218 gint (*set_volume) (gint l, gint r); | |
2313 | 219 |
220 void (*cleanup) (void); | |
221 | |
222 InputVisType (*get_vis_type) (void); | |
223 void (*add_vis_pcm) (gint time, AFormat fmt, gint nch, gint length, gpointer ptr); | |
224 | |
225 void (*set_info) (gchar * title, gint length, gint rate, gint freq, gint nch); | |
226 void (*set_info_text) (gchar * text); | |
227 void (*get_song_info) (gchar * filename, gchar ** title, gint * length); | |
228 void (*file_info_box) (gchar * filename); | |
229 | |
2437 | 230 OutputPlugin *output; /* deprecated */ |
2313 | 231 |
232 /* Added in Audacious 1.1.0 */ | |
233 TitleInput *(*get_song_tuple) (gchar * filename); | |
234 void (*set_song_tuple) (TitleInput * tuple); | |
235 void (*set_status_buffering) (gboolean status); | |
236 | |
237 /* Added in Audacious 1.3.0 */ | |
238 gint (*is_our_file_from_vfs) (gchar *filename, VFSFile *fd); | |
239 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
|
240 |
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
|
241 /* 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
|
242 void (*mseek) (InputPlayback * playback, gulong millisecond); |
2313 | 243 }; |
244 | |
245 struct _GeneralPlugin { | |
246 gpointer handle; | |
247 gchar *filename; | |
248 | |
249 gchar *description; | |
250 | |
251 void (*init) (void); | |
252 void (*about) (void); | |
253 void (*configure) (void); | |
254 void (*cleanup) (void); | |
255 }; | |
256 | |
257 struct _VisPlugin { | |
258 gpointer handle; | |
259 gchar *filename; | |
260 | |
261 gchar *description; | |
262 | |
263 gint num_pcm_chs_wanted; | |
264 gint num_freq_chs_wanted; | |
265 | |
266 void (*init) (void); | |
267 void (*cleanup) (void); | |
268 void (*about) (void); | |
269 void (*configure) (void); | |
270 void (*disable_plugin) (struct _VisPlugin *); | |
271 void (*playback_start) (void); | |
272 void (*playback_stop) (void); | |
273 void (*render_pcm) (gint16 pcm_data[2][512]); | |
274 void (*render_freq) (gint16 freq_data[2][256]); | |
275 }; | |
276 | |
277 | |
278 G_BEGIN_DECLS | |
279 | |
280 /* So that input plugins can get the title formatting information */ | |
281 G_CONST_RETURN gchar * xmms_get_gentitle_format(void); | |
282 | |
283 /* So that output plugins can communicate with effect plugins */ | |
284 EffectPlugin *get_current_effect_plugin(void); | |
285 gboolean effects_enabled(void); | |
286 gboolean plugin_set_errortext(const gchar * text); | |
287 | |
288 G_END_DECLS | |
289 | |
290 #endif |