2009-02-22 17:11:14 +01:00
|
|
|
/*
|
2013-07-30 09:04:05 +02:00
|
|
|
* Copyright (C) 2003-2013 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
|
|
|
|
2012-08-02 18:20:46 +02:00
|
|
|
#include "gerror.h"
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2012-04-05 00:05:21 +02:00
|
|
|
#include <assert.h>
|
2009-02-22 17:11:14 +01:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
struct EncoderPlugin;
|
2013-08-03 21:00:50 +02:00
|
|
|
struct AudioFormat;
|
2009-02-22 17:11:14 +01:00
|
|
|
struct config_param;
|
2013-07-30 20:11:57 +02:00
|
|
|
struct Tag;
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
struct Encoder {
|
|
|
|
const EncoderPlugin &plugin;
|
2012-04-05 00:05:21 +02:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
2012-04-05 00:03:38 +02:00
|
|
|
bool open, pre_tag, tag, end;
|
2012-04-05 00:05:21 +02:00
|
|
|
#endif
|
2013-07-30 09:04:05 +02:00
|
|
|
|
|
|
|
explicit Encoder(const EncoderPlugin &_plugin)
|
|
|
|
:plugin(_plugin)
|
|
|
|
#ifndef NDEBUG
|
|
|
|
, open(false)
|
|
|
|
#endif
|
|
|
|
{}
|
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;
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
Encoder *(*init)(const struct config_param *param,
|
|
|
|
GError **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,
|
2009-02-22 17:11:14 +01:00
|
|
|
GError **error);
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
void (*close)(Encoder *encoder);
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
bool (*end)(Encoder *encoder, GError **error);
|
2012-04-05 00:03:38 +02:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
bool (*flush)(Encoder *encoder, GError **error);
|
2009-02-22 17:11:14 +01:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
bool (*pre_tag)(Encoder *encoder, GError **error);
|
2011-07-20 20:54:34 +02:00
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
bool (*tag)(Encoder *encoder, const Tag *tag,
|
2009-02-22 17:11:14 +01:00
|
|
|
GError **error);
|
|
|
|
|
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,
|
|
|
|
GError **error);
|
|
|
|
|
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
|
|
|
|
* @param param optional configuration
|
2011-03-31 21:43:53 +02:00
|
|
|
* @param error location to store the error occurring, or NULL to ignore errors.
|
2009-02-22 17:11:14 +01:00
|
|
|
* @return an encoder object on success, NULL on failure
|
|
|
|
*/
|
2013-07-30 09:04:05 +02:00
|
|
|
static inline Encoder *
|
|
|
|
encoder_init(const EncoderPlugin &plugin, const config_param *param,
|
|
|
|
GError **error_r)
|
2009-02-22 17:11:14 +01:00
|
|
|
{
|
2013-07-30 09:04:05 +02:00
|
|
|
return plugin.init(param, error_r);
|
2009-02-22 17:11:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Frees an encoder object.
|
|
|
|
*
|
|
|
|
* @param encoder the encoder
|
|
|
|
*/
|
|
|
|
static inline void
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_finish(Encoder *encoder)
|
2009-02-22 17:11:14 +01:00
|
|
|
{
|
2012-04-05 00:05:21 +02:00
|
|
|
assert(!encoder->open);
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder->plugin.finish(encoder);
|
2009-02-22 17:11:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens an encoder object. You must call this prior to using it.
|
|
|
|
* Before you free it, you must call encoder_close(). You may open
|
|
|
|
* and close (reuse) one encoder any number of times.
|
|
|
|
*
|
2012-10-01 23:17:13 +02:00
|
|
|
* After this function returns successfully and before the first
|
|
|
|
* encoder_write() call, you should invoke encoder_read() to obtain
|
|
|
|
* the file header.
|
|
|
|
*
|
2009-02-22 17:11:14 +01:00
|
|
|
* @param encoder the encoder
|
|
|
|
* @param audio_format the encoder's input audio format; the plugin
|
|
|
|
* may modify the struct to adapt it to its abilities
|
2011-03-31 21:43:53 +02:00
|
|
|
* @param error location to store the error occurring, or NULL to ignore errors.
|
2009-02-22 17:11:14 +01:00
|
|
|
* @return true on success
|
|
|
|
*/
|
|
|
|
static inline bool
|
2013-08-03 21:00:50 +02:00
|
|
|
encoder_open(Encoder *encoder, AudioFormat &audio_format,
|
2009-02-22 17:11:14 +01:00
|
|
|
GError **error)
|
|
|
|
{
|
2012-04-05 00:05:21 +02:00
|
|
|
assert(!encoder->open);
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
bool success = encoder->plugin.open(encoder, audio_format, error);
|
2012-04-05 00:05:21 +02:00
|
|
|
#ifndef NDEBUG
|
|
|
|
encoder->open = success;
|
2012-04-05 00:03:38 +02:00
|
|
|
encoder->pre_tag = encoder->tag = encoder->end = false;
|
2012-04-05 00:05:21 +02:00
|
|
|
#endif
|
|
|
|
return success;
|
2009-02-22 17:11:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closes an encoder object. This disables the encoder, and readies
|
|
|
|
* it for reusal by calling encoder_open() again.
|
|
|
|
*
|
|
|
|
* @param encoder the encoder
|
|
|
|
*/
|
|
|
|
static inline void
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_close(Encoder *encoder)
|
2009-02-22 17:11:14 +01:00
|
|
|
{
|
2012-04-05 00:05:21 +02:00
|
|
|
assert(encoder->open);
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
if (encoder->plugin.close != NULL)
|
|
|
|
encoder->plugin.close(encoder);
|
2012-04-05 00:05:21 +02:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
encoder->open = false;
|
|
|
|
#endif
|
2009-02-22 17:11:14 +01:00
|
|
|
}
|
|
|
|
|
2012-04-05 00:03:38 +02:00
|
|
|
/**
|
|
|
|
* Ends the stream: flushes the encoder object, generate an
|
|
|
|
* end-of-stream marker (if applicable), make everything which might
|
|
|
|
* currently be buffered available by encoder_read().
|
|
|
|
*
|
|
|
|
* After this function has been called, the encoder may not be usable
|
|
|
|
* for more data, and only encoder_read() and encoder_close() can be
|
|
|
|
* called.
|
|
|
|
*
|
|
|
|
* @param encoder the encoder
|
|
|
|
* @param error location to store the error occuring, or NULL to ignore errors.
|
|
|
|
* @return true on success
|
|
|
|
*/
|
|
|
|
static inline bool
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_end(Encoder *encoder, GError **error)
|
2012-04-05 00:03:38 +02:00
|
|
|
{
|
|
|
|
assert(encoder->open);
|
|
|
|
assert(!encoder->end);
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
encoder->end = true;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* this method is optional */
|
2013-07-30 09:04:05 +02:00
|
|
|
return encoder->plugin.end != NULL
|
|
|
|
? encoder->plugin.end(encoder, error)
|
2012-04-05 00:03:38 +02:00
|
|
|
: true;
|
2009-02-22 17:11:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Flushes an encoder object, make everything which might currently be
|
|
|
|
* buffered available by encoder_read().
|
|
|
|
*
|
|
|
|
* @param encoder the encoder
|
2011-03-31 21:43:53 +02:00
|
|
|
* @param error location to store the error occurring, or NULL to ignore errors.
|
2009-02-22 17:11:14 +01:00
|
|
|
* @return true on success
|
|
|
|
*/
|
|
|
|
static inline bool
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_flush(Encoder *encoder, GError **error)
|
2009-02-22 17:11:14 +01:00
|
|
|
{
|
2012-04-05 00:05:21 +02:00
|
|
|
assert(encoder->open);
|
|
|
|
assert(!encoder->pre_tag);
|
|
|
|
assert(!encoder->tag);
|
2012-04-05 00:03:38 +02:00
|
|
|
assert(!encoder->end);
|
2012-04-05 00:05:21 +02:00
|
|
|
|
2009-02-22 17:11:14 +01:00
|
|
|
/* this method is optional */
|
2013-07-30 09:04:05 +02:00
|
|
|
return encoder->plugin.flush != NULL
|
|
|
|
? encoder->plugin.flush(encoder, error)
|
2009-02-22 17:11:14 +01:00
|
|
|
: true;
|
|
|
|
}
|
|
|
|
|
2011-07-20 20:54:34 +02:00
|
|
|
/**
|
|
|
|
* Prepare for sending a tag to the encoder. This is used by some
|
|
|
|
* encoders to flush the previous sub-stream, in preparation to begin
|
|
|
|
* a new one.
|
|
|
|
*
|
|
|
|
* @param encoder the encoder
|
|
|
|
* @param tag the tag object
|
|
|
|
* @param error location to store the error occuring, or NULL to ignore errors.
|
|
|
|
* @return true on success
|
|
|
|
*/
|
|
|
|
static inline bool
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_pre_tag(Encoder *encoder, GError **error)
|
2011-07-20 20:54:34 +02:00
|
|
|
{
|
2012-04-05 00:05:21 +02:00
|
|
|
assert(encoder->open);
|
|
|
|
assert(!encoder->pre_tag);
|
|
|
|
assert(!encoder->tag);
|
2012-04-05 00:03:38 +02:00
|
|
|
assert(!encoder->end);
|
2012-04-05 00:05:21 +02:00
|
|
|
|
2011-07-20 20:54:34 +02:00
|
|
|
/* this method is optional */
|
2013-07-30 09:04:05 +02:00
|
|
|
bool success = encoder->plugin.pre_tag != NULL
|
|
|
|
? encoder->plugin.pre_tag(encoder, error)
|
2011-07-20 20:54:34 +02:00
|
|
|
: true;
|
2012-04-05 00:05:21 +02:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
encoder->pre_tag = success;
|
|
|
|
#endif
|
|
|
|
return success;
|
2011-07-20 20:54:34 +02:00
|
|
|
}
|
|
|
|
|
2009-02-22 17:11:14 +01:00
|
|
|
/**
|
|
|
|
* Sends a tag to the encoder.
|
|
|
|
*
|
2011-07-20 20:54:34 +02:00
|
|
|
* Instructions: call encoder_pre_tag(); then obtain flushed data with
|
|
|
|
* encoder_read(); finally call encoder_tag().
|
|
|
|
*
|
2009-02-22 17:11:14 +01:00
|
|
|
* @param encoder the encoder
|
|
|
|
* @param tag the tag object
|
2011-03-31 21:43:53 +02:00
|
|
|
* @param error location to store the error occurring, or NULL to ignore errors.
|
2009-02-22 17:11:14 +01:00
|
|
|
* @return true on success
|
|
|
|
*/
|
|
|
|
static inline bool
|
2013-07-30 20:11:57 +02:00
|
|
|
encoder_tag(Encoder *encoder, const Tag *tag, GError **error)
|
2009-02-22 17:11:14 +01:00
|
|
|
{
|
2012-04-05 00:05:21 +02:00
|
|
|
assert(encoder->open);
|
|
|
|
assert(!encoder->pre_tag);
|
|
|
|
assert(encoder->tag);
|
2012-04-05 00:03:38 +02:00
|
|
|
assert(!encoder->end);
|
2012-04-05 00:05:21 +02:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
encoder->tag = false;
|
|
|
|
#endif
|
|
|
|
|
2009-02-22 17:11:14 +01:00
|
|
|
/* this method is optional */
|
2013-07-30 09:04:05 +02:00
|
|
|
return encoder->plugin.tag != NULL
|
|
|
|
? encoder->plugin.tag(encoder, tag, error)
|
2009-02-22 17:11:14 +01:00
|
|
|
: true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Writes raw PCM data to the encoder.
|
|
|
|
*
|
|
|
|
* @param encoder the encoder
|
|
|
|
* @param data the buffer containing PCM samples
|
|
|
|
* @param length the length of the buffer in bytes
|
2011-03-31 21:43:53 +02:00
|
|
|
* @param error location to store the error occurring, or NULL to ignore errors.
|
2009-02-22 17:11:14 +01:00
|
|
|
* @return true on success
|
|
|
|
*/
|
|
|
|
static inline bool
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_write(Encoder *encoder, const void *data, size_t length,
|
2009-02-22 17:11:14 +01:00
|
|
|
GError **error)
|
|
|
|
{
|
2012-04-05 00:05:21 +02:00
|
|
|
assert(encoder->open);
|
|
|
|
assert(!encoder->pre_tag);
|
|
|
|
assert(!encoder->tag);
|
2012-04-05 00:03:38 +02:00
|
|
|
assert(!encoder->end);
|
2012-04-05 00:05:21 +02:00
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
return encoder->plugin.write(encoder, data, length, error);
|
2009-02-22 17:11:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads encoded data from the encoder.
|
|
|
|
*
|
2012-10-01 23:50:50 +02:00
|
|
|
* Call this repeatedly until no more data is returned.
|
|
|
|
*
|
2009-02-22 17:11:14 +01:00
|
|
|
* @param encoder the encoder
|
|
|
|
* @param dest the destination buffer to copy to
|
|
|
|
* @param length the maximum length of the destination buffer
|
|
|
|
* @return the number of bytes written to #dest
|
|
|
|
*/
|
|
|
|
static inline size_t
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_read(Encoder *encoder, void *dest, size_t length)
|
2009-02-22 17:11:14 +01:00
|
|
|
{
|
2012-04-05 00:05:21 +02:00
|
|
|
assert(encoder->open);
|
|
|
|
assert(!encoder->pre_tag || !encoder->tag);
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
if (encoder->pre_tag) {
|
|
|
|
encoder->pre_tag = false;
|
|
|
|
encoder->tag = true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
return encoder->plugin.read(encoder, dest, length);
|
2009-02-22 17:11:14 +01:00
|
|
|
}
|
|
|
|
|
2009-12-03 19:39:34 +01:00
|
|
|
/**
|
|
|
|
* Get mime type of encoded content.
|
|
|
|
*
|
|
|
|
* @param plugin the encoder plugin
|
|
|
|
* @return an constant string, NULL on failure
|
|
|
|
*/
|
|
|
|
static inline const char *
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_get_mime_type(Encoder *encoder)
|
2009-12-03 19:39:34 +01:00
|
|
|
{
|
|
|
|
/* this method is optional */
|
2013-07-30 09:04:05 +02:00
|
|
|
return encoder->plugin.get_mime_type != NULL
|
|
|
|
? encoder->plugin.get_mime_type(encoder)
|
2009-12-03 19:39:34 +01:00
|
|
|
: NULL;
|
|
|
|
}
|
|
|
|
|
2009-02-22 17:11:14 +01:00
|
|
|
#endif
|