2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
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
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
struct ConfigBlock;
|
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.
|
|
|
|
*
|
2019-07-03 22:10:26 +02:00
|
|
|
* Throws on error.
|
2016-10-28 21:11:52 +02:00
|
|
|
*
|
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;
|
|
|
|
}
|
|
|
|
|
2023-03-06 15:57:36 +01:00
|
|
|
[[gnu::malloc]] [[gnu::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
|