Mercurial > audlegacy-plugins
view src/CoreAudio/coreaudio.c @ 2138:76f9a4168708
Fix linking with libaudid3tag
Linking with libaudid3tag from /usr/lib/audacious, add rpath (affected to tta,
shnplug and madplug plugins)
author | Vitaly Lipatov <lav@etersoft.ru> |
---|---|
date | Sat, 27 Oct 2007 19:34:46 -0500 |
parents | 2ebeb7816c5e |
children | f1b6f1b2cdb3 |
line wrap: on
line source
/* XMMS - Cross-platform multimedia player * Copyright (C) 1998-2000 Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <glib.h> #include "coreaudio.h" #include <audacious/plugin.h> #include <audacious/i18n.h> OutputPlugin osx_op = { .description = "CoreAudio Output Plugin", /* Description */ .init = osx_init, .about = osx_about, .configure = osx_configure, .get_volume = osx_get_volume, .set_volume = osx_set_volume, .open_audio = osx_open, .write_audio = osx_write, .close_audio = osx_close, .flush = osx_flush, .pause = osx_pause, .buffer_free = osx_free, .buffer_playing = osx_playing, .output_time = osx_get_output_time, .written_time = osx_get_written_time, }; OutputPlugin *coreaudio_oplist[] = { &osx_op, NULL }; DECLARE_PLUGIN(coreaudio, NULL, NULL, NULL, coreaudio_oplist, NULL, NULL, NULL, NULL);