shout_mp3.c 4.49 KB
Newer Older
Eric Wollesen's avatar
Eric Wollesen committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* the Music Player Daemon (MPD)
 * Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
 * This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

19
#include "shout_plugin.h"
Eric Wollesen's avatar
Eric Wollesen committed
20
#include "../utils.h"
21

Eric Wollesen's avatar
Eric Wollesen committed
22 23
#include <lame/lame.h>

24
struct lame_data {
Eric Wollesen's avatar
Eric Wollesen committed
25
	lame_global_flags *gfp;
26
};
Eric Wollesen's avatar
Eric Wollesen committed
27 28


29
static int shout_mp3_encoder_init(struct shout_data *sd)
Eric Wollesen's avatar
Eric Wollesen committed
30
{
31
	struct lame_data *ld;
Eric Wollesen's avatar
Eric Wollesen committed
32

33
	if (NULL == (ld = xmalloc(sizeof(*ld))))
Eric Wollesen's avatar
Eric Wollesen committed
34 35 36 37 38 39
		FATAL("error initializing lame encoder data\n");
	sd->encoder_data = ld;

	return 0;
}

40
static int shout_mp3_encoder_clear_encoder(struct shout_data *sd)
Eric Wollesen's avatar
Eric Wollesen committed
41
{
42 43
	struct lame_data *ld = (struct lame_data *)sd->encoder_data;
	struct shout_buffer *buf = &sd->buf;
Eric Wollesen's avatar
Eric Wollesen committed
44 45 46 47 48 49 50 51 52
	int ret;

	if ((ret = lame_encode_flush(ld->gfp, buf->data + buf->len,
				     buf->len)) < 0)
		ERROR("error flushing lame buffers\n");

	return (ret > 0);
}

53
static void shout_mp3_encoder_finish(struct shout_data *sd)
Eric Wollesen's avatar
Eric Wollesen committed
54
{
55
	struct lame_data *ld = (struct lame_data *)sd->encoder_data;
Eric Wollesen's avatar
Eric Wollesen committed
56 57 58 59 60

	lame_close(ld->gfp);
	ld->gfp = NULL;
}

61
static int shout_mp3_encoder_init_encoder(struct shout_data *sd)
Eric Wollesen's avatar
Eric Wollesen committed
62
{
63
	struct lame_data *ld = (struct lame_data *)sd->encoder_data;
Eric Wollesen's avatar
Eric Wollesen committed
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92

	if (NULL == (ld->gfp = lame_init())) {
		ERROR("error initializing lame encoder for shout\n");
		return -1;
	}

	if (sd->quality >= -1.0) {
		if (0 != lame_set_VBR(ld->gfp, vbr_rh)) {
			ERROR("error setting lame VBR mode\n");
			return -1;
		}
		if (0 != lame_set_VBR_q(ld->gfp, sd->quality)) {
			ERROR("error setting lame VBR quality\n");
			return -1;
		}
	} else {
		if (0 != lame_set_brate(ld->gfp, sd->bitrate)) {
			ERROR("error setting lame bitrate\n");
			return -1;
		}
	}

	if (0 != lame_set_num_channels(ld->gfp,
				       sd->audio_format.channels)) {
		ERROR("error setting lame num channels\n");
		return -1;
	}

	if (0 != lame_set_in_samplerate(ld->gfp,
93
					sd->audio_format.sample_rate)) {
Eric Wollesen's avatar
Eric Wollesen committed
94 95 96 97 98 99 100 101 102 103
		ERROR("error setting lame sample rate\n");
		return -1;
	}

	if (0 > lame_init_params(ld->gfp))
		FATAL("error initializing lame params\n");

	return 0;
}

104
static int shout_mp3_encoder_send_metadata(struct shout_data *sd,
Eric Wollesen's avatar
Eric Wollesen committed
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
					   char * song, size_t size)
{
	char artist[size];
	char title[size];
	int i;
	struct tag *tag = sd->tag;

	strncpy(artist, "", size);
	strncpy(title, "", size);

	for (i = 0; i < tag->numOfItems; i++) {
		switch (tag->items[i]->type) {
		case TAG_ITEM_ARTIST:
			strncpy(artist, tag->items[i]->value, size);
			break;
		case TAG_ITEM_TITLE:
			strncpy(title, tag->items[i]->value, size);
			break;

		default:
			break;
		}
	}
	snprintf(song, size, "%s - %s", title, artist);

	return 1;
}

133
static int shout_mp3_encoder_encode(struct shout_data *sd,
Eric Wollesen's avatar
Eric Wollesen committed
134 135 136 137 138
				    const char * chunk, size_t len)
{
	unsigned int i;
	int j;
	float (*lamebuf)[2];
139
	struct shout_buffer *buf = &(sd->buf);
Eric Wollesen's avatar
Eric Wollesen committed
140
	unsigned int samples;
141
	int bytes = audio_format_sample_size(&sd->audio_format);
142
	struct lame_data *ld = (struct lame_data *)sd->encoder_data;
Eric Wollesen's avatar
Eric Wollesen committed
143 144 145 146 147 148 149 150 151 152
	int bytes_out;

	samples = len / (bytes * sd->audio_format.channels);
	/* rough estimate, from lame.h */
	lamebuf = xmalloc(sizeof(float) * (1.25 * samples + 7200));

	/* this is for only 16-bit audio */

	for (i = 0; i < samples; i++) {
		for (j = 0; j < sd->audio_format.channels; j++) {
153
			lamebuf[j][i] = *((const int16_t *) chunk);
Eric Wollesen's avatar
Eric Wollesen committed
154 155 156 157 158 159
			chunk += bytes;
		}
	}

	bytes_out = lame_encode_buffer_float(ld->gfp, lamebuf[0], lamebuf[1],
					     samples, buf->data,
160
					     sizeof(buf->data) - buf->len);
Eric Wollesen's avatar
Eric Wollesen committed
161 162 163 164 165 166 167 168 169 170 171 172 173
	free(lamebuf);

	if (0 > bytes_out) {
		ERROR("error encoding lame buffer for shout\n");
		lame_close(ld->gfp);
		ld->gfp = NULL;
		return -1;
	} else
		buf->len = bytes_out; /* signed to unsigned conversion */

	return 0;
}

174
const struct shout_encoder_plugin shout_mp3_encoder = {
Eric Wollesen's avatar
Eric Wollesen committed
175 176 177 178 179 180 181 182 183 184
	"mp3",
	SHOUT_FORMAT_MP3,

	shout_mp3_encoder_clear_encoder,
	shout_mp3_encoder_encode,
	shout_mp3_encoder_finish,
	shout_mp3_encoder_init,
	shout_mp3_encoder_init_encoder,
	shout_mp3_encoder_send_metadata,
};