2009-02-22 17:11:14 +01:00
|
|
|
/*
|
2018-10-31 17:54:59 +01:00
|
|
|
* Copyright 2003-2018 The Music Player Daemon Project
|
2009-02-22 17:11:14 +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-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
|