2009-02-22 17:11:14 +01:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 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
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2015-01-08 19:31:57 +01:00
|
|
|
struct Encoder;
|
2013-08-03 21:00:50 +02:00
|
|
|
struct AudioFormat;
|
2015-01-21 22:13:44 +01:00
|
|
|
struct ConfigBlock;
|
2013-07-30 20:11:57 +02:00
|
|
|
struct Tag;
|
2013-08-10 18:02:44 +02:00
|
|
|
class Error;
|
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;
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
Encoder *(*init)(const ConfigBlock &block,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error);
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
void (*finish)(Encoder *encoder);
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
bool (*open)(Encoder *encoder,
|
2013-08-03 21:00:50 +02:00
|
|
|
AudioFormat &audio_format,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error);
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
void (*close)(Encoder *encoder);
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
bool (*end)(Encoder *encoder, Error &error);
|
2012-04-05 00:03:38 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
bool (*flush)(Encoder *encoder, Error &error);
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
bool (*pre_tag)(Encoder *encoder, Error &error);
|
2011-07-20 20:54:34 +02:00
|
|
|
|
2014-12-26 22:30:54 +01:00
|
|
|
bool (*tag)(Encoder *encoder, const Tag &tag,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error);
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
bool (*write)(Encoder *encoder,
|
2009-02-22 17:11:14 +01:00
|
|
|
const void *data, size_t length,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error);
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
size_t (*read)(Encoder *encoder, void *dest, size_t length);
|
2009-12-03 19:39:34 +01:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
const char *(*get_mime_type)(Encoder *encoder);
|
2009-02-22 17:11:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new encoder object.
|
|
|
|
*
|
|
|
|
* @param plugin the encoder plugin
|
2013-10-19 18:19:03 +02:00
|
|
|
* @param error location to store the error occurring, or nullptr to ignore errors.
|
|
|
|
* @return an encoder object on success, nullptr on failure
|
2009-02-22 17:11:14 +01:00
|
|
|
*/
|
2013-07-30 09:04:05 +02:00
|
|
|
static inline Encoder *
|
2015-01-21 22:13:44 +01:00
|
|
|
encoder_init(const EncoderPlugin &plugin, const ConfigBlock &block,
|
2015-03-17 11:21:29 +01:00
|
|
|
Error &error)
|
2009-02-22 17:11:14 +01:00
|
|
|
{
|
2015-03-17 11:21:29 +01:00
|
|
|
return plugin.init(block, error);
|
2009-02-22 17:11:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|