mpd/src/encoder/EncoderPlugin.hxx

79 lines
2.1 KiB
C++
Raw Normal View History

/*
2015-01-01 19:48:13 +01:00
* Copyright (C) 2003-2015 The Music Player Daemon Project
* 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.
*
* 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.
*/
2013-07-30 09:04:05 +02:00
#ifndef MPD_ENCODER_PLUGIN_HXX
#define MPD_ENCODER_PLUGIN_HXX
#include <stddef.h>
struct Encoder;
2013-08-03 21:00:50 +02:00
struct AudioFormat;
struct ConfigBlock;
2013-07-30 20:11:57 +02:00
struct Tag;
class Error;
2013-07-30 09:04:05 +02:00
struct EncoderPlugin {
const char *name;
Encoder *(*init)(const ConfigBlock &block,
Error &error);
2013-07-30 09:04:05 +02:00
void (*finish)(Encoder *encoder);
2013-07-30 09:04:05 +02:00
bool (*open)(Encoder *encoder,
2013-08-03 21:00:50 +02:00
AudioFormat &audio_format,
Error &error);
2013-07-30 09:04:05 +02:00
void (*close)(Encoder *encoder);
bool (*end)(Encoder *encoder, Error &error);
bool (*flush)(Encoder *encoder, Error &error);
bool (*pre_tag)(Encoder *encoder, Error &error);
bool (*tag)(Encoder *encoder, const Tag &tag,
Error &error);
2013-07-30 09:04:05 +02:00
bool (*write)(Encoder *encoder,
const void *data, size_t length,
Error &error);
2013-07-30 09:04:05 +02:00
size_t (*read)(Encoder *encoder, void *dest, size_t length);
2013-07-30 09:04:05 +02:00
const char *(*get_mime_type)(Encoder *encoder);
};
/**
* Creates a new encoder object.
*
* @param plugin the encoder plugin
* @param param optional configuration
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
*/
2013-07-30 09:04:05 +02:00
static inline Encoder *
encoder_init(const EncoderPlugin &plugin, const ConfigBlock &block,
Error &error_r)
{
return plugin.init(block, error_r);
}
#endif