2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
#ifndef MPD_ENCODER_PLUGIN_HXX
|
|
|
|
#define MPD_ENCODER_PLUGIN_HXX
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2016-05-04 18:29:31 +02:00
|
|
|
class PreparedEncoder;
|
2015-01-21 22:13:44 +01:00
|
|
|
struct ConfigBlock;
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
struct EncoderPlugin {
|
2009-02-22 17:11:14 +01:00
|
|
|
const char *name;
|
|
|
|
|
2016-10-28 21:29:01 +02:00
|
|
|
/**
|
|
|
|
* Throws #std::runtime_error on error.
|
|
|
|
*/
|
|
|
|
PreparedEncoder *(*init)(const ConfigBlock &block);
|
2009-02-22 17:11:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new encoder object.
|
|
|
|
*
|
2016-10-28 21:29:01 +02:00
|
|
|
* Throws #std::runtime_error on error.
|
|
|
|
*
|
2009-02-22 17:11:14 +01:00
|
|
|
* @param plugin the encoder plugin
|
|
|
|
*/
|
2016-05-04 09:31:21 +02:00
|
|
|
static inline PreparedEncoder *
|
2016-10-28 21:29:01 +02:00
|
|
|
encoder_init(const EncoderPlugin &plugin, const ConfigBlock &block)
|
2009-02-22 17:11:14 +01:00
|
|
|
{
|
2016-10-28 21:29:01 +02:00
|
|
|
return plugin.init(block);
|
2009-02-22 17:11:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|