2009-03-14 11:33:51 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2009-03-14 11:33:51 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
*
|
|
|
|
* This header declares the mixer_plugin class. It should not be
|
2013-02-22 20:51:23 +01:00
|
|
|
* included directly; use MixerInternal.hxx instead in mixer
|
2009-03-14 11:33:51 +01:00
|
|
|
* implementations.
|
|
|
|
*/
|
|
|
|
|
2013-02-22 20:51:23 +01:00
|
|
|
#ifndef MPD_MIXER_PLUGIN_HXX
|
|
|
|
#define MPD_MIXER_PLUGIN_HXX
|
2009-03-14 11:33:51 +01:00
|
|
|
|
|
|
|
struct config_param;
|
2013-04-16 21:33:25 +02:00
|
|
|
class Mixer;
|
2014-02-05 00:02:02 +01:00
|
|
|
class EventLoop;
|
2013-08-10 18:02:44 +02:00
|
|
|
class Error;
|
2009-03-14 11:33:51 +01:00
|
|
|
|
2014-02-05 17:22:34 +01:00
|
|
|
struct MixerPlugin {
|
2009-03-14 11:33:51 +01:00
|
|
|
/**
|
|
|
|
* Alocates and configures a mixer device.
|
2009-10-20 22:10:56 +02:00
|
|
|
*
|
2014-01-28 11:22:27 +01:00
|
|
|
* @param ao the pointer returned by AudioOutputPlugin.init
|
2013-08-04 13:43:36 +02:00
|
|
|
* @param param the configuration section
|
2011-03-31 21:43:53 +02:00
|
|
|
* @param error_r location to store the error occurring, or
|
2013-10-19 18:19:03 +02:00
|
|
|
* nullptr to ignore errors
|
|
|
|
* @return a mixer object, or nullptr on error
|
2009-03-14 11:33:51 +01:00
|
|
|
*/
|
2014-02-05 00:02:02 +01:00
|
|
|
Mixer *(*init)(EventLoop &event_loop, void *ao,
|
|
|
|
const config_param ¶m,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error);
|
2009-03-14 11:33:51 +01:00
|
|
|
|
2009-03-26 19:43:18 +01:00
|
|
|
/**
|
|
|
|
* If true, then the mixer is automatically opened, even if
|
|
|
|
* its audio output is not open. If false, then the mixer is
|
|
|
|
* disabled as long as its audio output is closed.
|
|
|
|
*/
|
|
|
|
bool global;
|
2009-03-14 11:33:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|