Mercurial > audlegacy
annotate src/audacious/plugin.h @ 3298:f985357757e0 trunk
audacious-core: convert to tuple-ng, remove titlestring API.
| author | William Pitcock <nenolod@atheme-project.org> |
|---|---|
| date | Fri, 10 Aug 2007 05:22:35 -0500 |
| parents | 6600abe94a3f |
| children | d4f6507cded3 3e9bc5fd5c36 |
| 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> | |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3295
diff
changeset
|
39 #include <gtk/gtk.h> |
| 2313 | 40 #include "audacious/vfs.h" |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3295
diff
changeset
|
41 #include "audacious/tuple.h" |
|
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3295
diff
changeset
|
42 #include "audacious/tuple_formatter.h" |
|
3149
84c44d369969
Add eventqueue interface.
William Pitcock <nenolod@atheme-project.org>
parents:
3126
diff
changeset
|
43 #include "audacious/eventqueue.h" |
| 2313 | 44 |
|
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
|
45 #define PLUGIN(x) ((Plugin *)(x)) |
| 2313 | 46 #define INPUT_PLUGIN(x) ((InputPlugin *)(x)) |
| 47 #define OUTPUT_PLUGIN(x) ((OutputPlugin *)(x)) | |
| 48 #define EFFECT_PLUGIN(x) ((EffectPlugin *)(x)) | |
| 49 #define GENERAL_PLUGIN(x) ((GeneralPlugin *)(x)) | |
| 50 #define VIS_PLUGIN(x) ((VisPlugin *)(x)) | |
|
3227
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
51 #define DISCOVERY_PLUGIN(x) ((DiscoveryPlugin *)(x)) |
| 2313 | 52 |
| 53 #define LOWLEVEL_PLUGIN(x) ((LowlevelPlugin *)(x)) | |
| 54 | |
| 55 #define __AUDACIOUS_NEWVFS__ | |
|
3295
6600abe94a3f
Bump binary API/ABI revisions for Tuplez.
William Pitcock <nenolod@atheme-project.org>
parents:
3237
diff
changeset
|
56 #define __AUDACIOUS_PLUGIN_API__ 5 |
|
6600abe94a3f
Bump binary API/ABI revisions for Tuplez.
William Pitcock <nenolod@atheme-project.org>
parents:
3237
diff
changeset
|
57 #define __AUDACIOUS_INPUT_PLUGIN_API__ 5 |
| 2313 | 58 |
| 59 typedef enum { | |
| 60 FMT_U8, | |
| 61 FMT_S8, | |
| 62 FMT_U16_LE, | |
| 63 FMT_U16_BE, | |
| 64 FMT_U16_NE, | |
| 65 FMT_S16_LE, | |
| 66 FMT_S16_BE, | |
| 67 FMT_S16_NE | |
| 68 } AFormat; | |
| 69 | |
| 70 typedef enum { | |
| 71 INPUT_VIS_ANALYZER, | |
| 72 INPUT_VIS_SCOPE, | |
| 73 INPUT_VIS_VU, | |
| 74 INPUT_VIS_OFF | |
| 75 } InputVisType; | |
| 76 | |
| 77 | |
| 78 typedef struct _Plugin Plugin; | |
| 79 typedef struct _InputPlugin InputPlugin; | |
| 80 typedef struct _OutputPlugin OutputPlugin; | |
| 81 typedef struct _EffectPlugin EffectPlugin; | |
| 82 typedef struct _GeneralPlugin GeneralPlugin; | |
| 83 typedef struct _VisPlugin VisPlugin; | |
|
3227
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
84 typedef struct _DiscoveryPlugin DiscoveryPlugin; |
| 2313 | 85 typedef struct _LowlevelPlugin LowlevelPlugin; |
| 86 | |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
87 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
|
88 |
|
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
89 /* |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
90 * The v2 Module header. |
|
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 * _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
|
93 * A single library can provide multiple plugins. |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
94 * --nenolod |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
95 */ |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
96 typedef struct { |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
97 gint magic; |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
98 gint api_version; |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
99 gchar *name; |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
100 GCallback init; |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
101 GCallback fini; |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
102 Plugin *priv_assoc; |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
103 InputPlugin **ip_list; |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
104 OutputPlugin **op_list; |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
105 EffectPlugin **ep_list; |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
106 GeneralPlugin **gp_list; |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
107 VisPlugin **vp_list; |
|
3227
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
108 DiscoveryPlugin **dp_list; |
|
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
109 } PluginHeader; |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
110 |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
111 #define PLUGIN_MAGIC 0x8EAC8DE2 |
|
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
112 |
|
3233
88f602569477
Make DECLARE_PLUGIN() macro use a __VA_ARGS__ list instead of a static amount of tokens.
William Pitcock <nenolod@atheme-project.org>
parents:
3232
diff
changeset
|
113 #define DECLARE_PLUGIN(name, init, fini, ...) \ |
|
2802
c799098c396f
[svn] - guard v2 module header with G_BEGIN_DECLS and G_END_DECLS
nenolod
parents:
2797
diff
changeset
|
114 G_BEGIN_DECLS \ |
|
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
115 static PluginHeader _pluginInfo = { PLUGIN_MAGIC, __AUDACIOUS_PLUGIN_API__, \ |
|
3234
fb2f3675cbeb
Fix DECLARE_PLUGIN() macro.
William Pitcock <nenolod@atheme-project.org>
parents:
3233
diff
changeset
|
116 (gchar *)#name, init, fini, NULL, __VA_ARGS__ }; \ |
|
3061
7d858d2b4031
Use G_MODULE_EXPORT to ensure the plugin header is exported.
William Pitcock <nenolod@atheme-project.org>
parents:
3009
diff
changeset
|
117 G_MODULE_EXPORT PluginHeader *get_plugin_info(void) { \ |
|
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
118 return &_pluginInfo; \ |
|
2802
c799098c396f
[svn] - guard v2 module header with G_BEGIN_DECLS and G_END_DECLS
nenolod
parents:
2797
diff
changeset
|
119 } \ |
|
c799098c396f
[svn] - guard v2 module header with G_BEGIN_DECLS and G_END_DECLS
nenolod
parents:
2797
diff
changeset
|
120 G_END_DECLS |
|
2796
e9af66a1be74
[svn] - add functions for defining the v2 plugin header
nenolod
parents:
2794
diff
changeset
|
121 |
|
3237
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
122 #define SIMPLE_INPUT_PLUGIN(name, ip_list) \ |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
123 DECLARE_PLUGIN(name, NULL, NULL, ip_list) |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
124 |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
125 #define SIMPLE_OUTPUT_PLUGIN(name, op_list) \ |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
126 DECLARE_PLUGIN(name, NULL, NULL, NULL, op_list) |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
127 |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
128 #define SIMPLE_EFFECT_PLUGIN(name, ep_list) \ |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
129 DECLARE_PLUGIN(name, NULL, NULL, NULL, NULL, ep_list) |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
130 |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
131 #define SIMPLE_GENERAL_PLUGIN(name, gp_list) \ |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
132 DECLARE_PLUGIN(name, NULL, NULL, NULL, NULL, NULL, gp_list) |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
133 |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
134 #define SIMPLE_VISUAL_PLUGIN(name, vp_list) \ |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
135 DECLARE_PLUGIN(name, NULL, NULL, NULL, NULL, NULL, NULL, vp_list) |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
136 |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
137 #define SIMPLE_DISCOVER_PLUGIN(name, dp_list) \ |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
138 DECLARE_PLUGIN(name, NULL, NULL, NULL, NULL, NULL, NULL, NULL, dp_list) |
|
12bc288a7511
add simplified macros to declare plugin. no more excessive NULLs.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3234
diff
changeset
|
139 |
| 2313 | 140 /* Sadly, this is the most we can generalize out of the disparate |
| 141 plugin structs usable with typecasts - descender */ | |
| 142 struct _Plugin { | |
| 143 gpointer handle; | |
| 144 gchar *filename; | |
|
2794
2685fc11cd9a
[svn] - begin work on the host side of plugin API v2.
nenolod
parents:
2763
diff
changeset
|
145 gchar *description; |
| 2313 | 146 }; |
| 147 | |
| 148 /* | |
| 149 * LowlevelPlugin is used for lowlevel system services, such as PlaylistContainers, | |
| 150 * VFSContainers and the like. | |
| 151 * | |
| 152 * They are not GUI visible at this time. | |
| 153 */ | |
| 154 struct _LowlevelPlugin { | |
| 155 gpointer handle; | |
| 156 gchar *filename; | |
| 157 | |
| 158 gchar *description; | |
| 159 | |
| 160 void (*init) (void); | |
| 161 void (*cleanup) (void); | |
| 162 }; | |
| 163 | |
| 164 struct _OutputPlugin { | |
| 165 gpointer handle; | |
| 166 gchar *filename; | |
| 167 | |
| 168 gchar *description; | |
| 169 | |
| 170 void (*init) (void); | |
| 171 void (*cleanup) (void); | |
| 172 void (*about) (void); | |
| 173 void (*configure) (void); | |
| 174 void (*get_volume) (gint * l, gint * r); | |
| 175 void (*set_volume) (gint l, gint r); | |
| 176 | |
| 177 gint (*open_audio) (AFormat fmt, gint rate, gint nch); | |
| 178 void (*write_audio) (gpointer ptr, gint length); | |
| 179 void (*close_audio) (void); | |
| 180 | |
| 181 void (*flush) (gint time); | |
| 182 void (*pause) (gshort paused); | |
| 183 gint (*buffer_free) (void); | |
| 184 gint (*buffer_playing) (void); | |
| 185 gint (*output_time) (void); | |
| 186 gint (*written_time) (void); | |
| 187 | |
| 188 void (*tell_audio) (AFormat * fmt, gint * rate, gint * nch); | |
| 189 }; | |
| 190 | |
| 191 struct _EffectPlugin { | |
| 192 gpointer handle; | |
| 193 gchar *filename; | |
| 194 | |
| 195 gchar *description; | |
| 196 | |
| 197 void (*init) (void); | |
| 198 void (*cleanup) (void); | |
| 199 void (*about) (void); | |
| 200 void (*configure) (void); | |
| 201 | |
| 202 gint (*mod_samples) (gpointer * data, gint length, AFormat fmt, gint srate, gint nch); | |
| 203 void (*query_format) (AFormat * fmt, gint * rate, gint * nch); | |
| 204 }; | |
| 205 | |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
206 struct _InputPlayback { |
|
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
207 gchar *filename; |
|
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
208 InputPlugin *plugin; |
|
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
209 void *data; |
|
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
210 OutputPlugin *output; |
|
2438
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
211 |
|
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
212 int playing; |
|
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
213 gboolean error; |
|
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2437
diff
changeset
|
214 gboolean eof; |
|
3181
1596dcb77acd
Track playback monitor thread in InputPlayback.thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3160
diff
changeset
|
215 |
|
1596dcb77acd
Track playback monitor thread in InputPlayback.thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3160
diff
changeset
|
216 GThread *thread; |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
217 }; |
|
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
218 |
| 2313 | 219 struct _InputPlugin { |
| 220 gpointer handle; | |
| 221 gchar *filename; | |
| 222 | |
| 223 gchar *description; | |
| 224 | |
| 225 void (*init) (void); | |
| 226 void (*about) (void); | |
| 227 void (*configure) (void); | |
| 228 | |
| 229 gint (*is_our_file) (gchar * filename); | |
| 230 GList *(*scan_dir) (gchar * dirname); | |
| 231 | |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
232 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
|
233 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
|
234 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
|
235 void (*seek) (InputPlayback * playback, gint time); |
| 2313 | 236 |
| 237 void (*set_eq) (gint on, gfloat preamp, gfloat * bands); | |
| 238 | |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
239 gint (*get_time) (InputPlayback * playback); |
| 2313 | 240 |
| 2437 | 241 gint (*get_volume) (gint * l, gint * r); |
| 242 gint (*set_volume) (gint l, gint r); | |
| 2313 | 243 |
| 244 void (*cleanup) (void); | |
| 245 | |
| 246 InputVisType (*get_vis_type) (void); | |
| 247 void (*add_vis_pcm) (gint time, AFormat fmt, gint nch, gint length, gpointer ptr); | |
| 248 | |
| 249 void (*set_info) (gchar * title, gint length, gint rate, gint freq, gint nch); | |
| 250 void (*set_info_text) (gchar * text); | |
| 251 void (*get_song_info) (gchar * filename, gchar ** title, gint * length); | |
| 252 void (*file_info_box) (gchar * filename); | |
| 253 | |
| 2437 | 254 OutputPlugin *output; /* deprecated */ |
| 2313 | 255 |
| 256 /* Added in Audacious 1.1.0 */ | |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3295
diff
changeset
|
257 Tuple *(*get_song_tuple) (gchar * filename); |
|
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3295
diff
changeset
|
258 void (*set_song_tuple) (Tuple * tuple); |
| 2313 | 259 void (*set_status_buffering) (gboolean status); |
| 260 | |
| 261 /* Added in Audacious 1.3.0 */ | |
| 262 gint (*is_our_file_from_vfs) (gchar *filename, VFSFile *fd); | |
| 263 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
|
264 |
|
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
|
265 /* 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
|
266 void (*mseek) (InputPlayback * playback, gulong millisecond); |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3295
diff
changeset
|
267 Tuple *(*probe_for_tuple)(gchar *uri, VFSFile *fd); |
| 2313 | 268 }; |
| 269 | |
| 270 struct _GeneralPlugin { | |
| 271 gpointer handle; | |
| 272 gchar *filename; | |
| 273 | |
| 274 gchar *description; | |
| 275 | |
| 276 void (*init) (void); | |
| 277 void (*about) (void); | |
| 278 void (*configure) (void); | |
| 279 void (*cleanup) (void); | |
| 280 }; | |
| 281 | |
| 282 struct _VisPlugin { | |
| 283 gpointer handle; | |
| 284 gchar *filename; | |
| 285 | |
| 286 gchar *description; | |
| 287 | |
| 288 gint num_pcm_chs_wanted; | |
| 289 gint num_freq_chs_wanted; | |
| 290 | |
| 291 void (*init) (void); | |
| 292 void (*cleanup) (void); | |
| 293 void (*about) (void); | |
| 294 void (*configure) (void); | |
| 295 void (*disable_plugin) (struct _VisPlugin *); | |
| 296 void (*playback_start) (void); | |
| 297 void (*playback_stop) (void); | |
| 298 void (*render_pcm) (gint16 pcm_data[2][512]); | |
| 299 void (*render_freq) (gint16 freq_data[2][256]); | |
| 300 }; | |
| 301 | |
|
3227
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
302 struct _DiscoveryPlugin { |
|
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
303 gpointer handle; |
|
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
304 gchar *filename; |
|
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
305 gchar *description; |
|
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
306 |
|
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
307 void (*init) (void); |
|
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
308 void (*cleanup) (void); |
|
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
309 void (*about) (void); |
|
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
310 void (*configure) (void); |
|
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
311 gchar *(*get_devices); |
|
2619f4c62abe
added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
3181
diff
changeset
|
312 }; |
| 2313 | 313 |
| 314 G_BEGIN_DECLS | |
| 315 | |
| 316 /* So that input plugins can get the title formatting information */ | |
| 317 G_CONST_RETURN gchar * xmms_get_gentitle_format(void); | |
| 318 | |
| 319 /* So that output plugins can communicate with effect plugins */ | |
| 320 EffectPlugin *get_current_effect_plugin(void); | |
| 321 gboolean effects_enabled(void); | |
| 322 gboolean plugin_set_errortext(const gchar * text); | |
| 323 | |
| 324 G_END_DECLS | |
| 325 | |
|
3009
9976e065e2f5
Mimetype system.
William Pitcock <nenolod@atheme-project.org>
parents:
2841
diff
changeset
|
326 #include "audacious/mime.h" |
|
9976e065e2f5
Mimetype system.
William Pitcock <nenolod@atheme-project.org>
parents:
2841
diff
changeset
|
327 |
| 2313 | 328 #endif |
