comparison src/sexypsf/plugin.c @ 1691:aa40f1404257

Automated merge with file:/home/ccr/audacious/plugins
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 07 Sep 2007 12:46:01 +0300
parents 75e0c0e13ed3 4eeeef9adab3
children 2ebeb7816c5e
comparison
equal deleted inserted replaced
1690:75e0c0e13ed3 1691:aa40f1404257
261 261
262 gchar *sexypsf_fmts[] = { "psf", "minipsf", NULL }; 262 gchar *sexypsf_fmts[] = { "psf", "minipsf", NULL };
263 263
264 InputPlugin sexypsf_ip = 264 InputPlugin sexypsf_ip =
265 { 265 {
266 NULL, 266 .description = "PSF Audio Plugin",
267 NULL, 267 .play_file = sexypsf_xmms_play,
268 "PSF Audio Plugin", 268 .stop = sexypsf_xmms_stop,
269 NULL, 269 .pause = sexypsf_xmms_pause,
270 NULL, 270 .seek = sexypsf_xmms_seek,
271 NULL, 271 .get_time = sexypsf_xmms_gettime,
272 NULL, 272 .get_song_info = sexypsf_xmms_getsonginfo,
273 NULL, 273 .get_song_tuple = get_tuple_psf,
274 sexypsf_xmms_play, 274 .is_our_file_from_vfs = is_our_fd,
275 sexypsf_xmms_stop, 275 .vfs_extensions = sexypsf_fmts,
276 sexypsf_xmms_pause,
277 sexypsf_xmms_seek,
278 NULL,
279 sexypsf_xmms_gettime,
280 NULL,
281 NULL,
282 NULL,
283 NULL,
284 NULL,
285 NULL,
286 NULL,
287 sexypsf_xmms_getsonginfo,
288 NULL,
289 NULL,
290 get_tuple_psf,
291 NULL,
292 NULL,
293 is_our_fd,
294 sexypsf_fmts,
295 }; 276 };
296 277
297 InputPlugin *sexypsf_iplist[] = { &sexypsf_ip, NULL }; 278 InputPlugin *sexypsf_iplist[] = { &sexypsf_ip, NULL };
298 279
299 DECLARE_PLUGIN(sexypsf, NULL, NULL, sexypsf_iplist, NULL, NULL, NULL, NULL, NULL); 280 DECLARE_PLUGIN(sexypsf, NULL, NULL, sexypsf_iplist, NULL, NULL, NULL, NULL, NULL);