2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2008-09-08 11:43:13 +02:00
|
|
|
|
2013-01-04 09:46:41 +01:00
|
|
|
#ifndef MPD_OUTPUT_LIST_HXX
|
|
|
|
#define MPD_OUTPUT_LIST_HXX
|
2008-09-08 11:43:13 +02:00
|
|
|
|
2014-01-28 11:22:27 +01:00
|
|
|
struct AudioOutputPlugin;
|
2008-09-08 11:43:13 +02:00
|
|
|
|
2014-01-28 11:22:27 +01:00
|
|
|
extern const AudioOutputPlugin *const audio_output_plugins[];
|
|
|
|
|
2023-03-07 11:57:39 +01:00
|
|
|
[[gnu::pure]]
|
2014-01-28 11:22:27 +01:00
|
|
|
const AudioOutputPlugin *
|
2023-03-07 11:57:39 +01:00
|
|
|
GetAudioOutputPluginByName(const char *name) noexcept;
|
2008-09-08 11:43:13 +02:00
|
|
|
|
2012-06-12 20:29:47 +02:00
|
|
|
#define audio_output_plugins_for_each(plugin) \
|
2014-01-28 11:22:27 +01:00
|
|
|
for (const AudioOutputPlugin *plugin, \
|
2012-06-12 20:29:47 +02:00
|
|
|
*const*output_plugin_iterator = &audio_output_plugins[0]; \
|
2013-10-28 23:58:17 +01:00
|
|
|
(plugin = *output_plugin_iterator) != nullptr; ++output_plugin_iterator)
|
2008-09-08 11:43:13 +02:00
|
|
|
|
|
|
|
#endif
|