2009-02-16 01:37:42 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2009-02-16 01:37:42 +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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-02-16 01:37:42 +01:00
|
|
|
*/
|
|
|
|
|
2013-04-17 01:12:05 +02:00
|
|
|
#ifndef MPD_OUTPUT_PLUGIN_HXX
|
|
|
|
#define MPD_OUTPUT_PLUGIN_HXX
|
2009-02-16 01:37:42 +01:00
|
|
|
|
2018-08-20 16:19:17 +02:00
|
|
|
#include "util/Compiler.h"
|
2012-08-02 18:20:46 +02:00
|
|
|
|
2016-12-28 21:44:18 +01:00
|
|
|
#include <chrono>
|
|
|
|
|
2009-02-16 01:37:42 +01:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
struct ConfigBlock;
|
2013-08-03 21:00:50 +02:00
|
|
|
struct AudioFormat;
|
2013-07-30 20:11:57 +02:00
|
|
|
struct Tag;
|
2017-08-09 16:58:59 +02:00
|
|
|
class AudioOutput;
|
2014-02-05 17:22:34 +01:00
|
|
|
struct MixerPlugin;
|
2017-01-25 09:47:43 +01:00
|
|
|
class EventLoop;
|
2009-02-16 01:37:42 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A plugin which controls an audio output device.
|
|
|
|
*/
|
2014-01-28 11:22:27 +01:00
|
|
|
struct AudioOutputPlugin {
|
2009-02-16 01:37:42 +01:00
|
|
|
/**
|
|
|
|
* the plugin's name
|
|
|
|
*/
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if this plugin can provide a default output, in case
|
|
|
|
* none has been configured. This method is optional.
|
|
|
|
*/
|
2015-03-03 20:05:08 +01:00
|
|
|
bool (*test_default_device)();
|
2009-02-16 01:37:42 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Configure and initialize the device, but do not open it
|
|
|
|
* yet.
|
|
|
|
*
|
2016-10-28 21:11:52 +02:00
|
|
|
* Throws #std::runtime_error on error.
|
|
|
|
*
|
2013-10-19 18:19:03 +02:00
|
|
|
* @param param the configuration section, or nullptr if there is
|
2009-02-16 01:37:42 +01:00
|
|
|
* no configuration
|
|
|
|
*/
|
2017-08-07 21:55:29 +02:00
|
|
|
AudioOutput *(*init)(EventLoop &event_loop, const ConfigBlock &block);
|
2009-02-16 01:37:42 +01:00
|
|
|
|
2009-03-26 18:23:23 +01:00
|
|
|
/**
|
|
|
|
* The mixer plugin associated with this output plugin. This
|
2013-10-19 18:19:03 +02:00
|
|
|
* may be nullptr if no mixer plugin is implemented. When
|
2016-10-28 11:38:37 +02:00
|
|
|
* created, this mixer plugin gets the same #ConfigParam as
|
2009-03-26 18:23:23 +01:00
|
|
|
* this audio output device.
|
|
|
|
*/
|
2014-02-05 17:22:34 +01:00
|
|
|
const MixerPlugin *mixer_plugin;
|
2009-02-16 01:37:42 +01:00
|
|
|
};
|
|
|
|
|
2009-02-16 01:38:10 +01:00
|
|
|
static inline bool
|
2014-01-28 11:22:27 +01:00
|
|
|
ao_plugin_test_default_device(const AudioOutputPlugin *plugin)
|
2009-02-16 01:38:10 +01:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
return plugin->test_default_device != nullptr
|
2009-02-16 01:38:10 +01:00
|
|
|
? plugin->test_default_device()
|
|
|
|
: false;
|
|
|
|
}
|
|
|
|
|
2017-12-18 23:00:13 +01:00
|
|
|
gcc_malloc gcc_returns_nonnull
|
2017-08-07 21:55:29 +02:00
|
|
|
AudioOutput *
|
2017-01-25 09:47:43 +01:00
|
|
|
ao_plugin_init(EventLoop &event_loop,
|
|
|
|
const AudioOutputPlugin &plugin,
|
2016-11-09 11:56:01 +01:00
|
|
|
const ConfigBlock &block);
|
2009-02-16 01:38:10 +01:00
|
|
|
|
2009-02-16 01:37:42 +01:00
|
|
|
#endif
|