view src/CoreAudio/coreaudio.c @ 3203:f5456241bff9 default tip

changed include path from audacious to audlegacy.
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Tue, 10 Nov 2009 05:19:25 +0900
parents 372ef3b764fd
children
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */
#include <glib.h>

#include "coreaudio.h"

#include <audlegacy/plugin.h>
#include <audlegacy/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,
	.probe_priority = 1,
};

OutputPlugin *coreaudio_oplist[] = { &osx_op, NULL };

DECLARE_PLUGIN(coreaudio, NULL, NULL, NULL, coreaudio_oplist, NULL, NULL, NULL, NULL);