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