2009-02-22 17:17:26 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
2009-02-22 17:17:26 +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:17:26 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2009-02-22 17:17:26 +01:00
|
|
|
#include "encoder_api.h"
|
|
|
|
#include "encoder_plugin.h"
|
|
|
|
#include "tag.h"
|
|
|
|
#include "audio_format.h"
|
2010-09-25 15:00:43 +02:00
|
|
|
#include "mpd_error.h"
|
2009-02-22 17:17:26 +01:00
|
|
|
|
|
|
|
#include <vorbis/vorbisenc.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "vorbis_encoder"
|
|
|
|
|
|
|
|
struct vorbis_encoder {
|
|
|
|
/** the base class */
|
|
|
|
struct encoder encoder;
|
|
|
|
|
|
|
|
/* configuration */
|
|
|
|
|
|
|
|
float quality;
|
|
|
|
int bitrate;
|
|
|
|
|
|
|
|
/* runtime information */
|
|
|
|
|
|
|
|
struct audio_format audio_format;
|
|
|
|
|
|
|
|
ogg_stream_state os;
|
|
|
|
|
|
|
|
vorbis_dsp_state vd;
|
|
|
|
vorbis_block vb;
|
|
|
|
vorbis_info vi;
|
2009-03-15 02:23:36 +01:00
|
|
|
|
|
|
|
bool flush;
|
2009-02-22 17:17:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct encoder_plugin vorbis_encoder_plugin;
|
|
|
|
|
|
|
|
static inline GQuark
|
|
|
|
vorbis_encoder_quark(void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string("vorbis_encoder");
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
vorbis_encoder_configure(struct vorbis_encoder *encoder,
|
|
|
|
const struct config_param *param, GError **error)
|
|
|
|
{
|
|
|
|
const char *value;
|
|
|
|
char *endptr;
|
|
|
|
|
|
|
|
value = config_get_block_string(param, "quality", NULL);
|
|
|
|
if (value != NULL) {
|
|
|
|
/* a quality was configured (VBR) */
|
|
|
|
|
|
|
|
encoder->quality = g_ascii_strtod(value, &endptr);
|
|
|
|
|
|
|
|
if (*endptr != '\0' || encoder->quality < -1.0 ||
|
|
|
|
encoder->quality > 10.0) {
|
|
|
|
g_set_error(error, vorbis_encoder_quark(), 0,
|
|
|
|
"quality \"%s\" is not a number in the "
|
|
|
|
"range -1 to 10, line %i",
|
|
|
|
value, param->line);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config_get_block_string(param, "bitrate", NULL) != NULL) {
|
|
|
|
g_set_error(error, vorbis_encoder_quark(), 0,
|
|
|
|
"quality and bitrate are "
|
|
|
|
"both defined (line %i)",
|
|
|
|
param->line);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* a bit rate was configured */
|
|
|
|
|
|
|
|
value = config_get_block_string(param, "bitrate", NULL);
|
|
|
|
if (value == NULL) {
|
|
|
|
g_set_error(error, vorbis_encoder_quark(), 0,
|
|
|
|
"neither bitrate nor quality defined "
|
|
|
|
"at line %i",
|
|
|
|
param->line);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
encoder->quality = -2.0;
|
|
|
|
encoder->bitrate = g_ascii_strtoll(value, &endptr, 10);
|
|
|
|
|
|
|
|
if (*endptr != '\0' || encoder->bitrate <= 0) {
|
|
|
|
g_set_error(error, vorbis_encoder_quark(), 0,
|
|
|
|
"bitrate at line %i should be a positive integer",
|
|
|
|
param->line);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct encoder *
|
|
|
|
vorbis_encoder_init(const struct config_param *param, GError **error)
|
|
|
|
{
|
|
|
|
struct vorbis_encoder *encoder;
|
|
|
|
|
|
|
|
encoder = g_new(struct vorbis_encoder, 1);
|
|
|
|
encoder_struct_init(&encoder->encoder, &vorbis_encoder_plugin);
|
|
|
|
|
|
|
|
/* load configuration from "param" */
|
|
|
|
if (!vorbis_encoder_configure(encoder, param, error)) {
|
|
|
|
/* configuration has failed, roll back and return error */
|
|
|
|
g_free(encoder);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &encoder->encoder;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
vorbis_encoder_finish(struct encoder *_encoder)
|
|
|
|
{
|
|
|
|
struct vorbis_encoder *encoder = (struct vorbis_encoder *)_encoder;
|
|
|
|
|
|
|
|
/* the real libvorbis/libogg cleanup was already performed by
|
|
|
|
vorbis_encoder_close(), so no real work here */
|
|
|
|
g_free(encoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
vorbis_encoder_reinit(struct vorbis_encoder *encoder, GError **error)
|
|
|
|
{
|
|
|
|
vorbis_info_init(&encoder->vi);
|
|
|
|
|
|
|
|
if (encoder->quality >= -1.0) {
|
|
|
|
/* a quality was configured (VBR) */
|
|
|
|
|
|
|
|
if (0 != vorbis_encode_init_vbr(&encoder->vi,
|
|
|
|
encoder->audio_format.channels,
|
|
|
|
encoder->audio_format.sample_rate,
|
|
|
|
encoder->quality * 0.1)) {
|
|
|
|
g_set_error(error, vorbis_encoder_quark(), 0,
|
|
|
|
"error initializing vorbis vbr");
|
|
|
|
vorbis_info_clear(&encoder->vi);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* a bit rate was configured */
|
|
|
|
|
|
|
|
if (0 != vorbis_encode_init(&encoder->vi,
|
|
|
|
encoder->audio_format.channels,
|
|
|
|
encoder->audio_format.sample_rate, -1.0,
|
|
|
|
encoder->bitrate * 1000, -1.0)) {
|
|
|
|
g_set_error(error, vorbis_encoder_quark(), 0,
|
|
|
|
"error initializing vorbis encoder");
|
|
|
|
vorbis_info_clear(&encoder->vi);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
vorbis_analysis_init(&encoder->vd, &encoder->vi);
|
|
|
|
vorbis_block_init(&encoder->vd, &encoder->vb);
|
|
|
|
ogg_stream_init(&encoder->os, g_random_int());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-05-05 22:37:13 +02:00
|
|
|
vorbis_encoder_headerout(struct vorbis_encoder *encoder, vorbis_comment *vc)
|
2009-02-22 17:17:26 +01:00
|
|
|
{
|
|
|
|
ogg_packet packet, comments, codebooks;
|
|
|
|
|
2009-05-05 22:37:13 +02:00
|
|
|
vorbis_analysis_headerout(&encoder->vd, vc,
|
2009-02-22 17:17:26 +01:00
|
|
|
&packet, &comments, &codebooks);
|
|
|
|
|
|
|
|
ogg_stream_packetin(&encoder->os, &packet);
|
|
|
|
ogg_stream_packetin(&encoder->os, &comments);
|
|
|
|
ogg_stream_packetin(&encoder->os, &codebooks);
|
2009-05-05 22:37:13 +02:00
|
|
|
}
|
2009-03-15 18:36:26 +01:00
|
|
|
|
2009-05-05 22:37:13 +02:00
|
|
|
static void
|
|
|
|
vorbis_encoder_send_header(struct vorbis_encoder *encoder)
|
|
|
|
{
|
|
|
|
vorbis_comment vc;
|
|
|
|
|
|
|
|
vorbis_comment_init(&vc);
|
|
|
|
vorbis_encoder_headerout(encoder, &vc);
|
2009-03-15 18:36:26 +01:00
|
|
|
vorbis_comment_clear(&vc);
|
2009-02-22 17:17:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
vorbis_encoder_open(struct encoder *_encoder,
|
|
|
|
struct audio_format *audio_format,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
struct vorbis_encoder *encoder = (struct vorbis_encoder *)_encoder;
|
|
|
|
bool ret;
|
|
|
|
|
2009-11-10 17:11:34 +01:00
|
|
|
audio_format->format = SAMPLE_FORMAT_S16;
|
2009-02-22 17:17:26 +01:00
|
|
|
|
|
|
|
encoder->audio_format = *audio_format;
|
|
|
|
|
|
|
|
ret = vorbis_encoder_reinit(encoder, error);
|
|
|
|
if (!ret)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
vorbis_encoder_send_header(encoder);
|
2009-03-15 02:23:36 +01:00
|
|
|
|
|
|
|
/* set "flush" to true, so the caller gets the full headers on
|
|
|
|
the first read() */
|
|
|
|
encoder->flush = true;
|
|
|
|
|
2009-02-22 17:17:26 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-24 19:06:37 +01:00
|
|
|
static void
|
2009-02-22 17:17:26 +01:00
|
|
|
vorbis_encoder_clear(struct vorbis_encoder *encoder)
|
|
|
|
{
|
|
|
|
ogg_stream_clear(&encoder->os);
|
|
|
|
vorbis_block_clear(&encoder->vb);
|
|
|
|
vorbis_dsp_clear(&encoder->vd);
|
|
|
|
vorbis_info_clear(&encoder->vi);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
vorbis_encoder_close(struct encoder *_encoder)
|
|
|
|
{
|
|
|
|
struct vorbis_encoder *encoder = (struct vorbis_encoder *)_encoder;
|
|
|
|
|
|
|
|
vorbis_encoder_clear(encoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
vorbis_encoder_blockout(struct vorbis_encoder *encoder)
|
|
|
|
{
|
|
|
|
while (vorbis_analysis_blockout(&encoder->vd, &encoder->vb) == 1) {
|
|
|
|
ogg_packet packet;
|
|
|
|
|
|
|
|
vorbis_analysis(&encoder->vb, NULL);
|
|
|
|
vorbis_bitrate_addblock(&encoder->vb);
|
|
|
|
|
|
|
|
while (vorbis_bitrate_flushpacket(&encoder->vd, &packet))
|
|
|
|
ogg_stream_packetin(&encoder->os, &packet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
vorbis_encoder_flush(struct encoder *_encoder, G_GNUC_UNUSED GError **error)
|
|
|
|
{
|
|
|
|
struct vorbis_encoder *encoder = (struct vorbis_encoder *)_encoder;
|
|
|
|
|
2011-07-20 20:54:34 +02:00
|
|
|
encoder->flush = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
vorbis_encoder_pre_tag(struct encoder *_encoder, G_GNUC_UNUSED GError **error)
|
|
|
|
{
|
|
|
|
struct vorbis_encoder *encoder = (struct vorbis_encoder *)_encoder;
|
|
|
|
|
2009-02-22 17:17:26 +01:00
|
|
|
vorbis_analysis_wrote(&encoder->vd, 0);
|
|
|
|
vorbis_encoder_blockout(encoder);
|
|
|
|
|
2009-04-25 18:27:39 +02:00
|
|
|
/* reinitialize vorbis_dsp_state and vorbis_block to reset the
|
|
|
|
end-of-stream marker */
|
|
|
|
vorbis_block_clear(&encoder->vb);
|
|
|
|
vorbis_dsp_clear(&encoder->vd);
|
|
|
|
vorbis_analysis_init(&encoder->vd, &encoder->vi);
|
|
|
|
vorbis_block_init(&encoder->vd, &encoder->vb);
|
|
|
|
|
2011-03-16 19:13:46 +01:00
|
|
|
ogg_stream_reset(&encoder->os);
|
|
|
|
|
2009-03-15 02:23:36 +01:00
|
|
|
encoder->flush = true;
|
2009-02-22 17:17:26 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-03-15 18:23:04 +01:00
|
|
|
copy_tag_to_vorbis_comment(vorbis_comment *vc, const struct tag *tag)
|
2009-02-22 17:17:26 +01:00
|
|
|
{
|
2009-02-27 09:01:55 +01:00
|
|
|
for (unsigned i = 0; i < tag->num_items; i++) {
|
2009-03-15 18:36:29 +01:00
|
|
|
struct tag_item *item = tag->items[i];
|
|
|
|
char *name = g_ascii_strup(tag_item_names[item->type], -1);
|
|
|
|
vorbis_comment_add_tag(vc, name, item->value);
|
|
|
|
g_free(name);
|
2009-02-22 17:17:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
vorbis_encoder_tag(struct encoder *_encoder, const struct tag *tag,
|
2009-03-15 18:36:25 +01:00
|
|
|
G_GNUC_UNUSED GError **error)
|
2009-02-22 17:17:26 +01:00
|
|
|
{
|
|
|
|
struct vorbis_encoder *encoder = (struct vorbis_encoder *)_encoder;
|
2009-03-15 18:36:25 +01:00
|
|
|
vorbis_comment comment;
|
2009-02-22 17:17:26 +01:00
|
|
|
|
2009-03-15 18:36:25 +01:00
|
|
|
/* write the vorbis_comment object */
|
2009-02-22 17:17:26 +01:00
|
|
|
|
2009-03-15 18:36:25 +01:00
|
|
|
vorbis_comment_init(&comment);
|
|
|
|
copy_tag_to_vorbis_comment(&comment, tag);
|
2009-02-22 17:17:26 +01:00
|
|
|
|
2009-05-05 22:40:51 +02:00
|
|
|
/* reset ogg_stream_state and begin a new stream */
|
2009-03-15 18:36:25 +01:00
|
|
|
|
2009-05-05 22:40:51 +02:00
|
|
|
ogg_stream_reset_serialno(&encoder->os, g_random_int());
|
|
|
|
|
|
|
|
/* send that vorbis_comment to the ogg_stream_state */
|
|
|
|
|
|
|
|
vorbis_encoder_headerout(encoder, &comment);
|
2009-03-15 18:36:25 +01:00
|
|
|
vorbis_comment_clear(&comment);
|
|
|
|
|
2009-05-05 22:40:51 +02:00
|
|
|
/* the next vorbis_encoder_read() call should flush the
|
|
|
|
ogg_stream_state */
|
2009-03-15 18:36:25 +01:00
|
|
|
|
2009-05-05 22:40:51 +02:00
|
|
|
encoder->flush = true;
|
2009-02-22 17:17:26 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pcm16_to_vorbis_buffer(float **dest, const int16_t *src,
|
|
|
|
unsigned num_frames, unsigned num_channels)
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; i < num_frames; i++)
|
|
|
|
for (unsigned j = 0; j < num_channels; j++)
|
|
|
|
dest[j][i] = *src++ / 32768.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
vorbis_encoder_write(struct encoder *_encoder,
|
|
|
|
const void *data, size_t length,
|
|
|
|
G_GNUC_UNUSED GError **error)
|
|
|
|
{
|
|
|
|
struct vorbis_encoder *encoder = (struct vorbis_encoder *)_encoder;
|
|
|
|
unsigned num_frames;
|
|
|
|
|
|
|
|
num_frames = length / audio_format_frame_size(&encoder->audio_format);
|
|
|
|
|
|
|
|
/* this is for only 16-bit audio */
|
|
|
|
|
|
|
|
pcm16_to_vorbis_buffer(vorbis_analysis_buffer(&encoder->vd,
|
|
|
|
num_frames),
|
|
|
|
(const int16_t *)data,
|
|
|
|
num_frames, encoder->audio_format.channels);
|
|
|
|
|
|
|
|
vorbis_analysis_wrote(&encoder->vd, num_frames);
|
|
|
|
vorbis_encoder_blockout(encoder);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
vorbis_encoder_read(struct encoder *_encoder, void *_dest, size_t length)
|
|
|
|
{
|
|
|
|
struct vorbis_encoder *encoder = (struct vorbis_encoder *)_encoder;
|
2009-03-15 02:26:16 +01:00
|
|
|
ogg_page page;
|
|
|
|
int ret;
|
2009-02-22 17:17:26 +01:00
|
|
|
unsigned char *dest = _dest;
|
|
|
|
size_t nbytes;
|
|
|
|
|
2009-03-15 02:26:16 +01:00
|
|
|
ret = ogg_stream_pageout(&encoder->os, &page);
|
|
|
|
if (ret == 0 && encoder->flush) {
|
|
|
|
encoder->flush = false;
|
|
|
|
ret = ogg_stream_flush(&encoder->os, &page);
|
2011-07-20 20:54:34 +02:00
|
|
|
|
2009-03-15 02:26:16 +01:00
|
|
|
}
|
2009-03-15 02:23:36 +01:00
|
|
|
|
2009-03-15 02:26:16 +01:00
|
|
|
if (ret == 0)
|
|
|
|
return 0;
|
2009-03-15 02:23:36 +01:00
|
|
|
|
2009-03-15 02:26:16 +01:00
|
|
|
assert(page.header_len > 0 || page.body_len > 0);
|
2009-02-22 17:17:26 +01:00
|
|
|
|
2009-03-15 02:26:16 +01:00
|
|
|
nbytes = (size_t)page.header_len + (size_t)page.body_len;
|
2009-02-22 17:17:26 +01:00
|
|
|
|
|
|
|
if (nbytes > length)
|
|
|
|
/* XXX better error handling */
|
2010-09-25 15:00:43 +02:00
|
|
|
MPD_ERROR("buffer too small");
|
2009-02-22 17:17:26 +01:00
|
|
|
|
2009-03-15 02:26:16 +01:00
|
|
|
memcpy(dest, page.header, page.header_len);
|
|
|
|
memcpy(dest + page.header_len, page.body, page.body_len);
|
2009-02-22 17:17:26 +01:00
|
|
|
|
|
|
|
return nbytes;
|
|
|
|
}
|
|
|
|
|
2009-12-03 20:11:32 +01:00
|
|
|
static const char *
|
|
|
|
vorbis_encoder_get_mime_type(G_GNUC_UNUSED struct encoder *_encoder)
|
|
|
|
{
|
2010-10-11 20:33:17 +02:00
|
|
|
return "audio/ogg";
|
2009-12-03 20:11:32 +01:00
|
|
|
}
|
|
|
|
|
2009-02-22 17:17:26 +01:00
|
|
|
const struct encoder_plugin vorbis_encoder_plugin = {
|
|
|
|
.name = "vorbis",
|
|
|
|
.init = vorbis_encoder_init,
|
|
|
|
.finish = vorbis_encoder_finish,
|
|
|
|
.open = vorbis_encoder_open,
|
|
|
|
.close = vorbis_encoder_close,
|
|
|
|
.flush = vorbis_encoder_flush,
|
2011-07-20 20:54:34 +02:00
|
|
|
.pre_tag = vorbis_encoder_pre_tag,
|
2009-02-22 17:17:26 +01:00
|
|
|
.tag = vorbis_encoder_tag,
|
|
|
|
.write = vorbis_encoder_write,
|
|
|
|
.read = vorbis_encoder_read,
|
2009-12-03 20:11:32 +01:00
|
|
|
.get_mime_type = vorbis_encoder_get_mime_type,
|
2009-02-22 17:17:26 +01:00
|
|
|
};
|