2009-03-14 11:33:51 +01:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 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
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
struct ConfigBlock;
|
2017-08-10 13:07:36 +02:00
|
|
|
class AudioOutput;
|
2013-04-16 21:33:25 +02:00
|
|
|
class Mixer;
|
2014-02-05 23:20:33 +01:00
|
|
|
class MixerListener;
|
2014-02-05 00:02:02 +01:00
|
|
|
class EventLoop;
|
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
|
|
|
*
|
2016-09-09 12:52:51 +02:00
|
|
|
* Throws std::runtime_error on error.
|
|
|
|
*
|
2017-08-07 18:47:39 +02:00
|
|
|
* @param ao the associated #AudioOutput
|
2013-08-04 13:43:36 +02:00
|
|
|
* @param param the configuration section
|
2016-09-09 12:52:51 +02:00
|
|
|
* @return a mixer object
|
2009-03-14 11:33:51 +01:00
|
|
|
*/
|
2017-08-10 13:07:36 +02:00
|
|
|
Mixer *(*init)(EventLoop &event_loop, AudioOutput &ao,
|
2014-02-05 23:20:33 +01:00
|
|
|
MixerListener &listener,
|
2016-09-09 12:52:51 +02:00
|
|
|
const ConfigBlock &block);
|
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
|