mpd/src/output/OutputPlugin.hxx

62 lines
1.4 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2013-04-17 01:12:05 +02:00
#ifndef MPD_OUTPUT_PLUGIN_HXX
#define MPD_OUTPUT_PLUGIN_HXX
struct ConfigBlock;
class AudioOutput;
struct MixerPlugin;
class EventLoop;
/**
* A plugin which controls an audio output device.
*/
struct AudioOutputPlugin {
/**
* 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.
*/
bool (*test_default_device)();
/**
* Configure and initialize the device, but do not open it
* yet.
*
2019-07-03 22:10:26 +02:00
* Throws on error.
*
2013-10-19 18:19:03 +02:00
* @param param the configuration section, or nullptr if there is
* no configuration
*/
AudioOutput *(*init)(EventLoop &event_loop, const ConfigBlock &block);
/**
* 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
* this audio output device.
*/
const MixerPlugin *mixer_plugin;
};
static inline bool
ao_plugin_test_default_device(const AudioOutputPlugin *plugin)
{
2013-10-19 18:19:03 +02:00
return plugin->test_default_device != nullptr
? plugin->test_default_device()
: false;
}
2023-03-06 15:57:36 +01:00
[[gnu::malloc]] [[gnu::returns_nonnull]]
AudioOutput *
ao_plugin_init(EventLoop &event_loop,
const AudioOutputPlugin &plugin,
const ConfigBlock &block);
#endif