2004-10-20 19:49:21 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-10-20 19:49:21 +02:00
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2004-11-02 13:46:52 +01:00
|
|
|
#include "../audioOutput.h"
|
2004-10-21 01:08:40 +02:00
|
|
|
|
2004-11-02 13:46:52 +01:00
|
|
|
#include <stdlib.h>
|
2004-10-26 19:49:27 +02:00
|
|
|
|
2004-10-21 01:08:40 +02:00
|
|
|
#ifdef HAVE_SHOUT
|
|
|
|
|
2004-11-02 13:46:52 +01:00
|
|
|
#include "../conf.h"
|
|
|
|
#include "../log.h"
|
|
|
|
#include "../pcm_utils.h"
|
2004-10-20 19:49:21 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
2004-11-02 14:26:50 +01:00
|
|
|
#include <time.h>
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2004-10-20 22:41:21 +02:00
|
|
|
#include <shout/shout.h>
|
|
|
|
#include <vorbis/vorbisenc.h>
|
|
|
|
|
2007-06-12 19:58:17 +02:00
|
|
|
#define CONN_ATTEMPT_INTERVAL 60
|
2007-06-12 20:28:57 +02:00
|
|
|
#define DEFAULT_CONN_TIMEOUT 2
|
2004-11-02 14:26:50 +01:00
|
|
|
|
2007-01-14 04:07:53 +01:00
|
|
|
static int shoutInitCount;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-10-22 21:40:09 +02:00
|
|
|
/* lots of this code blatantly stolent from bossogg/bossao2 */
|
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
typedef struct _ShoutData {
|
2006-07-20 18:02:40 +02:00
|
|
|
shout_t *shoutConn;
|
2004-11-09 04:58:12 +01:00
|
|
|
int shoutError;
|
2004-10-22 21:40:09 +02:00
|
|
|
|
|
|
|
ogg_stream_state os;
|
2004-10-20 23:09:04 +02:00
|
|
|
ogg_page og;
|
|
|
|
ogg_packet op;
|
2004-10-22 21:40:09 +02:00
|
|
|
ogg_packet header_main;
|
|
|
|
ogg_packet header_comments;
|
|
|
|
ogg_packet header_codebooks;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2004-10-20 23:09:04 +02:00
|
|
|
vorbis_dsp_state vd;
|
|
|
|
vorbis_block vb;
|
|
|
|
vorbis_info vi;
|
|
|
|
vorbis_comment vc;
|
2004-10-22 21:40:09 +02:00
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
float quality;
|
2004-10-29 15:33:51 +02:00
|
|
|
int bitrate;
|
2004-10-23 17:25:42 +02:00
|
|
|
|
|
|
|
int opened;
|
2004-10-26 04:32:37 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
MpdTag *tag;
|
2004-11-01 17:58:06 +01:00
|
|
|
int tagToSend;
|
2004-11-02 14:26:50 +01:00
|
|
|
|
2007-06-12 20:28:57 +02:00
|
|
|
int timeout;
|
2004-11-02 14:26:50 +01:00
|
|
|
int connAttempts;
|
|
|
|
time_t lastAttempt;
|
2007-06-09 17:51:20 +02:00
|
|
|
|
2004-11-02 18:05:27 +01:00
|
|
|
/* just a pointer to audioOutput->outAudioFormat */
|
2006-07-20 18:02:40 +02:00
|
|
|
AudioFormat *audioFormat;
|
2004-10-20 19:49:21 +02:00
|
|
|
} ShoutData;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static ShoutData *newShoutData(void)
|
|
|
|
{
|
2006-08-26 08:25:57 +02:00
|
|
|
ShoutData *ret = xmalloc(sizeof(ShoutData));
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2004-10-20 22:41:21 +02:00
|
|
|
ret->shoutConn = shout_new();
|
2004-10-23 17:25:42 +02:00
|
|
|
ret->opened = 0;
|
2004-10-26 04:32:37 +02:00
|
|
|
ret->tag = NULL;
|
2004-11-01 17:58:06 +01:00
|
|
|
ret->tagToSend = 0;
|
2004-10-29 15:33:51 +02:00
|
|
|
ret->bitrate = -1;
|
2006-10-10 22:00:33 +02:00
|
|
|
ret->quality = -2.0;
|
2007-06-12 20:28:57 +02:00
|
|
|
ret->timeout = DEFAULT_CONN_TIMEOUT;
|
2004-11-02 14:26:50 +01:00
|
|
|
ret->connAttempts = 0;
|
|
|
|
ret->lastAttempt = 0;
|
2004-11-02 18:05:27 +01:00
|
|
|
ret->audioFormat = NULL;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void freeShoutData(ShoutData * sd)
|
|
|
|
{
|
|
|
|
if (sd->shoutConn)
|
|
|
|
shout_free(sd->shoutConn);
|
|
|
|
if (sd->tag)
|
|
|
|
freeMpdTag(sd->tag);
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
free(sd);
|
|
|
|
}
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
#define checkBlockParam(name) { \
|
|
|
|
blockParam = getBlockParam(param, name); \
|
2007-05-26 20:15:54 +02:00
|
|
|
if (!blockParam) { \
|
|
|
|
FATAL("no \"%s\" defined for shout device defined at line " \
|
2004-10-28 07:14:55 +02:00
|
|
|
"%i\n", name, param->line); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int myShout_initDriver(AudioOutput * audioOutput, ConfigParam * param)
|
|
|
|
{
|
|
|
|
ShoutData *sd;
|
|
|
|
char *test;
|
2004-10-20 22:41:21 +02:00
|
|
|
int port;
|
2006-07-20 18:02:40 +02:00
|
|
|
char *host;
|
|
|
|
char *mount;
|
|
|
|
char *passwd;
|
|
|
|
char *user;
|
|
|
|
char *name;
|
|
|
|
BlockParam *blockParam;
|
2007-05-26 20:20:53 +02:00
|
|
|
unsigned int public = 0;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
|
|
|
sd = newShoutData();
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (shoutInitCount == 0)
|
|
|
|
shout_init();
|
2004-11-01 15:56:32 +01:00
|
|
|
|
|
|
|
shoutInitCount++;
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
checkBlockParam("host");
|
|
|
|
host = blockParam->value;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
checkBlockParam("mount");
|
|
|
|
mount = blockParam->value;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
checkBlockParam("port");
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
port = strtol(blockParam->value, &test, 10);
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (*test != '\0' || port <= 0) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("shout port \"%s\" is not a positive integer, line %i\n",
|
2006-07-20 18:02:40 +02:00
|
|
|
blockParam->value, blockParam->line);
|
2004-10-23 03:04:58 +02:00
|
|
|
}
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
checkBlockParam("password");
|
|
|
|
passwd = blockParam->value;
|
2004-10-23 03:04:58 +02:00
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
checkBlockParam("name");
|
|
|
|
name = blockParam->value;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-11-04 05:01:04 +01:00
|
|
|
blockParam = getBlockParam(param, "public");
|
2006-07-20 18:02:40 +02:00
|
|
|
if (blockParam) {
|
2007-05-26 20:15:54 +02:00
|
|
|
if (0 == strcmp(blockParam->value, "yes")) {
|
2006-07-20 18:02:40 +02:00
|
|
|
public = 1;
|
2007-05-26 20:15:54 +02:00
|
|
|
} else if (0 == strcmp(blockParam->value, "no")) {
|
2006-07-20 18:02:40 +02:00
|
|
|
public = 0;
|
2007-05-26 20:15:54 +02:00
|
|
|
} else {
|
|
|
|
FATAL("public \"%s\" is not \"yes\" or \"no\" at line "
|
2006-07-20 18:02:40 +02:00
|
|
|
"%i\n", param->value, param->line);
|
2004-11-04 05:01:04 +01:00
|
|
|
}
|
2007-05-26 20:20:53 +02:00
|
|
|
}
|
2004-11-04 05:01:04 +01:00
|
|
|
|
|
|
|
blockParam = getBlockParam(param, "user");
|
2006-07-20 18:02:40 +02:00
|
|
|
if (blockParam)
|
|
|
|
user = blockParam->value;
|
|
|
|
else
|
|
|
|
user = "source";
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-10-29 15:33:51 +02:00
|
|
|
blockParam = getBlockParam(param, "quality");
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (blockParam) {
|
2004-10-29 15:33:51 +02:00
|
|
|
int line = blockParam->line;
|
2004-10-23 03:04:58 +02:00
|
|
|
|
2004-10-29 15:33:51 +02:00
|
|
|
sd->quality = strtod(blockParam->value, &test);
|
|
|
|
|
2006-10-10 22:00:33 +02:00
|
|
|
if (*test != '\0' || sd->quality < -1.0 || sd->quality > 10.0) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("shout quality \"%s\" is not a number in the "
|
2006-10-10 22:00:33 +02:00
|
|
|
"range -1 to 10, line %i\n", blockParam->value,
|
2006-07-20 18:02:40 +02:00
|
|
|
blockParam->line);
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
blockParam = getBlockParam(param, "bitrate");
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (blockParam) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("quality (line %i) and bitrate (line %i) are "
|
2006-07-20 18:02:40 +02:00
|
|
|
"both defined for shout output\n", line,
|
|
|
|
blockParam->line);
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
} else {
|
2004-10-29 15:33:51 +02:00
|
|
|
blockParam = getBlockParam(param, "bitrate");
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!blockParam) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("neither bitrate nor quality defined for shout "
|
2006-07-20 18:02:40 +02:00
|
|
|
"output at line %i\n", param->line);
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sd->bitrate = strtol(blockParam->value, &test, 10);
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (*test != '\0' || sd->bitrate <= 0) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("bitrate at line %i should be a positive integer "
|
2006-07-20 18:02:40 +02:00
|
|
|
"\n", blockParam->line);
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
2004-10-23 03:04:58 +02:00
|
|
|
}
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
checkBlockParam("format");
|
2004-11-02 18:05:27 +01:00
|
|
|
sd->audioFormat = &audioOutput->outAudioFormat;
|
2004-10-23 03:04:58 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (shout_set_host(sd->shoutConn, host) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_port(sd->shoutConn, port) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_password(sd->shoutConn, passwd) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_mount(sd->shoutConn, mount) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_name(sd->shoutConn, name) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_user(sd->shoutConn, user) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_public(sd->shoutConn, public) != SHOUTERR_SUCCESS ||
|
2006-10-11 02:18:43 +02:00
|
|
|
shout_set_nonblocking(sd->shoutConn, 1) != SHOUTERR_SUCCESS ||
|
2006-07-20 18:02:40 +02:00
|
|
|
shout_set_format(sd->shoutConn, SHOUT_FORMAT_VORBIS)
|
|
|
|
!= SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_protocol(sd->shoutConn, SHOUT_PROTOCOL_HTTP)
|
|
|
|
!= SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_agent(sd->shoutConn, "MPD") != SHOUTERR_SUCCESS) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("error configuring shout defined at line %i: %s\n",
|
2006-07-20 18:02:40 +02:00
|
|
|
param->line, shout_get_error(sd->shoutConn));
|
2004-10-20 22:41:21 +02:00
|
|
|
}
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2004-11-09 14:04:20 +01:00
|
|
|
/* optional paramters */
|
2007-06-12 20:28:57 +02:00
|
|
|
blockParam = getBlockParam(param, "timeout");
|
|
|
|
if (blockParam) {
|
|
|
|
sd->timeout = strtod(blockParam->value, &test);
|
|
|
|
if (*test != '\0' || sd->timeout <= 0) {
|
|
|
|
FATAL("shout timeout is not a positive integer, "
|
|
|
|
"line %i\n", blockParam->line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-09 14:04:20 +01:00
|
|
|
blockParam = getBlockParam(param, "genre");
|
2006-07-20 18:02:40 +02:00
|
|
|
if (blockParam && shout_set_genre(sd->shoutConn, blockParam->value)) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("error configuring shout defined at line %i: %s\n",
|
2006-07-20 18:02:40 +02:00
|
|
|
param->line, shout_get_error(sd->shoutConn));
|
2004-11-09 14:04:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
blockParam = getBlockParam(param, "description");
|
2006-07-20 18:02:40 +02:00
|
|
|
if (blockParam && shout_set_description(sd->shoutConn,
|
|
|
|
blockParam->value)) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("error configuring shout defined at line %i: %s\n",
|
2006-07-20 18:02:40 +02:00
|
|
|
param->line, shout_get_error(sd->shoutConn));
|
2004-11-09 14:04:20 +01:00
|
|
|
}
|
|
|
|
|
2004-10-29 15:33:51 +02:00
|
|
|
{
|
|
|
|
char temp[11];
|
|
|
|
memset(temp, 0, sizeof(temp));
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2004-11-02 18:05:27 +01:00
|
|
|
snprintf(temp, sizeof(temp), "%d", sd->audioFormat->channels);
|
2004-10-29 15:33:51 +02:00
|
|
|
shout_set_audio_info(sd->shoutConn, SHOUT_AI_CHANNELS, temp);
|
|
|
|
|
2004-11-02 18:05:27 +01:00
|
|
|
snprintf(temp, sizeof(temp), "%d", sd->audioFormat->sampleRate);
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2004-10-29 15:33:51 +02:00
|
|
|
shout_set_audio_info(sd->shoutConn, SHOUT_AI_SAMPLERATE, temp);
|
|
|
|
|
2006-10-10 22:00:33 +02:00
|
|
|
if (sd->quality >= -1.0) {
|
2004-10-29 15:33:51 +02:00
|
|
|
snprintf(temp, sizeof(temp), "%2.2f", sd->quality);
|
|
|
|
shout_set_audio_info(sd->shoutConn, SHOUT_AI_QUALITY,
|
2006-07-20 18:02:40 +02:00
|
|
|
temp);
|
|
|
|
} else {
|
2004-10-29 15:33:51 +02:00
|
|
|
snprintf(temp, sizeof(temp), "%d", sd->bitrate);
|
|
|
|
shout_set_audio_info(sd->shoutConn, SHOUT_AI_BITRATE,
|
2006-07-20 18:02:40 +02:00
|
|
|
temp);
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
audioOutput->data = sd;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
|
|
|
return 0;
|
2004-10-20 19:49:21 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int myShout_handleError(ShoutData * sd, int err)
|
|
|
|
{
|
|
|
|
switch (err) {
|
2004-11-09 04:58:12 +01:00
|
|
|
case SHOUTERR_SUCCESS:
|
|
|
|
break;
|
|
|
|
case SHOUTERR_UNCONNECTED:
|
|
|
|
case SHOUTERR_SOCKET:
|
2007-06-12 19:58:17 +02:00
|
|
|
ERROR("Lost shout connection to %s:%i: %s\n",
|
2006-07-20 18:02:40 +02:00
|
|
|
shout_get_host(sd->shoutConn),
|
|
|
|
shout_get_port(sd->shoutConn),
|
|
|
|
shout_get_error(sd->shoutConn));
|
2004-11-09 04:58:12 +01:00
|
|
|
sd->shoutError = 1;
|
|
|
|
return -1;
|
|
|
|
default:
|
2007-06-12 19:58:17 +02:00
|
|
|
ERROR("shout: connection to %s:%i error: %s\n",
|
2006-07-20 18:02:40 +02:00
|
|
|
shout_get_host(sd->shoutConn),
|
|
|
|
shout_get_port(sd->shoutConn),
|
|
|
|
shout_get_error(sd->shoutConn));
|
2004-11-09 04:58:12 +01:00
|
|
|
sd->shoutError = 1;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int write_page(ShoutData * sd)
|
|
|
|
{
|
2004-11-09 04:58:12 +01:00
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
shout_sync(sd->shoutConn);
|
|
|
|
err = shout_send(sd->shoutConn, sd->og.header, sd->og.header_len);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (myShout_handleError(sd, err) < 0)
|
|
|
|
return -1;
|
2004-11-09 04:58:12 +01:00
|
|
|
err = shout_send(sd->shoutConn, sd->og.body, sd->og.body_len);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (myShout_handleError(sd, err) < 0)
|
|
|
|
return -1;
|
2004-11-09 04:58:12 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void finishEncoder(ShoutData * sd)
|
|
|
|
{
|
2004-11-01 17:58:06 +01:00
|
|
|
vorbis_analysis_wrote(&sd->vd, 0);
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
while (vorbis_analysis_blockout(&sd->vd, &sd->vb) == 1) {
|
2004-11-01 17:58:06 +01:00
|
|
|
vorbis_analysis(&sd->vb, NULL);
|
|
|
|
vorbis_bitrate_addblock(&sd->vb);
|
2006-07-20 18:02:40 +02:00
|
|
|
while (vorbis_bitrate_flushpacket(&sd->vd, &sd->op)) {
|
2004-11-01 17:58:06 +01:00
|
|
|
ogg_stream_packetin(&sd->os, &sd->op);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int flushEncoder(ShoutData * sd)
|
|
|
|
{
|
2005-03-05 22:09:32 +01:00
|
|
|
return (ogg_stream_pageout(&sd->os, &sd->og) > 0);
|
2004-11-09 04:58:12 +01:00
|
|
|
}
|
2004-11-01 17:58:06 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void clearEncoder(ShoutData * sd)
|
|
|
|
{
|
2004-11-09 04:58:12 +01:00
|
|
|
finishEncoder(sd);
|
2006-07-20 18:02:40 +02:00
|
|
|
while (1 == flushEncoder(sd)) {
|
|
|
|
if (!sd->shoutError)
|
|
|
|
write_page(sd);
|
2004-11-09 04:58:12 +01:00
|
|
|
}
|
2004-11-01 21:02:08 +01:00
|
|
|
|
|
|
|
vorbis_comment_clear(&sd->vc);
|
|
|
|
ogg_stream_clear(&sd->os);
|
|
|
|
vorbis_block_clear(&sd->vb);
|
|
|
|
vorbis_dsp_clear(&sd->vd);
|
|
|
|
vorbis_info_clear(&sd->vi);
|
2004-10-25 22:09:03 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void myShout_closeShoutConn(ShoutData * sd)
|
|
|
|
{
|
|
|
|
if (sd->opened) {
|
2004-10-26 14:56:10 +02:00
|
|
|
clearEncoder(sd);
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (shout_close(sd->shoutConn) != SHOUTERR_SUCCESS) {
|
2004-10-23 17:25:42 +02:00
|
|
|
ERROR("problem closing connection to shout server: "
|
2006-07-20 18:02:40 +02:00
|
|
|
"%s\n", shout_get_error(sd->shoutConn));
|
2004-10-23 17:25:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sd->opened = 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void myShout_finishDriver(AudioOutput * audioOutput)
|
|
|
|
{
|
|
|
|
ShoutData *sd = (ShoutData *) audioOutput->data;
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
myShout_closeShoutConn(sd);
|
2004-10-23 17:25:42 +02:00
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
freeShoutData(sd);
|
2004-10-20 22:41:21 +02:00
|
|
|
|
|
|
|
shoutInitCount--;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (shoutInitCount == 0)
|
|
|
|
shout_shutdown();
|
2004-10-20 19:49:21 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void myShout_dropBufferedAudio(AudioOutput * audioOutput)
|
|
|
|
{
|
2005-11-19 11:52:47 +01:00
|
|
|
/* needs to be implemented */
|
2005-03-05 15:01:13 +01:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void myShout_closeDevice(AudioOutput * audioOutput)
|
|
|
|
{
|
|
|
|
ShoutData *sd = (ShoutData *) audioOutput->data;
|
2004-11-02 23:13:58 +01:00
|
|
|
|
|
|
|
myShout_closeShoutConn(sd);
|
|
|
|
|
2004-10-23 17:25:42 +02:00
|
|
|
audioOutput->open = 0;
|
|
|
|
}
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-10-26 14:56:10 +02:00
|
|
|
#define addTag(name, value) { \
|
|
|
|
if(value) vorbis_comment_add_tag(&(sd->vc), name, value); \
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void copyTagToVorbisComment(ShoutData * sd)
|
|
|
|
{
|
|
|
|
if (sd->tag) {
|
2004-11-10 22:58:27 +01:00
|
|
|
int i;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
for (i = 0; i < sd->tag->numOfItems; i++) {
|
|
|
|
switch (sd->tag->items[i].type) {
|
2004-11-10 22:58:27 +01:00
|
|
|
case TAG_ITEM_ARTIST:
|
|
|
|
addTag("ARTIST", sd->tag->items[i].value);
|
|
|
|
break;
|
|
|
|
case TAG_ITEM_ALBUM:
|
|
|
|
addTag("ALBUM", sd->tag->items[i].value);
|
|
|
|
break;
|
|
|
|
case TAG_ITEM_TITLE:
|
|
|
|
addTag("TITLE", sd->tag->items[i].value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-10-26 14:56:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int initEncoder(ShoutData * sd)
|
|
|
|
{
|
2004-10-25 22:09:03 +02:00
|
|
|
vorbis_info_init(&(sd->vi));
|
|
|
|
|
2006-10-10 22:00:33 +02:00
|
|
|
if (sd->quality >= -1.0) {
|
2006-07-20 18:02:40 +02:00
|
|
|
if (0 != vorbis_encode_init_vbr(&(sd->vi),
|
|
|
|
sd->audioFormat->channels,
|
|
|
|
sd->audioFormat->sampleRate,
|
|
|
|
sd->quality * 0.1)) {
|
2006-08-11 23:50:56 +02:00
|
|
|
ERROR("problem setting up vorbis encoder for shout\n");
|
2004-10-29 15:33:51 +02:00
|
|
|
vorbis_info_clear(&(sd->vi));
|
|
|
|
return -1;
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
} else {
|
|
|
|
if (0 != vorbis_encode_init(&(sd->vi),
|
|
|
|
sd->audioFormat->channels,
|
|
|
|
sd->audioFormat->sampleRate, -1.0,
|
|
|
|
sd->bitrate * 1000, -1.0)) {
|
2006-08-11 23:50:56 +02:00
|
|
|
ERROR("problem setting up vorbis encoder for shout\n");
|
2004-10-29 15:33:51 +02:00
|
|
|
vorbis_info_clear(&(sd->vi));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-25 22:09:03 +02:00
|
|
|
vorbis_analysis_init(&(sd->vd), &(sd->vi));
|
2006-07-20 18:02:40 +02:00
|
|
|
vorbis_block_init(&(sd->vd), &(sd->vb));
|
2004-10-25 22:09:03 +02:00
|
|
|
|
|
|
|
ogg_stream_init(&(sd->os), rand());
|
|
|
|
|
|
|
|
vorbis_comment_init(&(sd->vc));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int myShout_openShoutConn(AudioOutput * audioOutput)
|
|
|
|
{
|
|
|
|
ShoutData *sd = (ShoutData *) audioOutput->data;
|
2004-11-02 14:26:50 +01:00
|
|
|
time_t t = time(NULL);
|
2007-06-12 19:58:17 +02:00
|
|
|
int state;
|
2007-06-09 17:51:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (sd->connAttempts != 0 &&
|
2007-06-12 20:33:26 +02:00
|
|
|
(t - sd->lastAttempt) <= CONN_ATTEMPT_INTERVAL) {
|
2004-11-02 14:26:50 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-06-09 17:51:20 +02:00
|
|
|
sd->connAttempts++;
|
2007-06-12 19:58:17 +02:00
|
|
|
sd->lastAttempt = t;
|
|
|
|
|
|
|
|
state = shout_open(sd->shoutConn);
|
2007-06-09 17:51:20 +02:00
|
|
|
|
2007-06-12 20:33:26 +02:00
|
|
|
while (state == SHOUTERR_BUSY && (t - sd->lastAttempt) <= sd->timeout) {
|
2007-06-12 19:58:17 +02:00
|
|
|
my_usleep(10000);
|
|
|
|
state = shout_get_connected(sd->shoutConn);
|
|
|
|
t = time(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (state) {
|
2006-10-11 02:18:43 +02:00
|
|
|
case SHOUTERR_SUCCESS:
|
|
|
|
case SHOUTERR_CONNECTED:
|
|
|
|
break;
|
|
|
|
case SHOUTERR_BUSY:
|
2007-06-12 19:58:17 +02:00
|
|
|
ERROR("timeout connecting to shout server %s:%i "
|
|
|
|
"(attempt %i)\n",
|
|
|
|
shout_get_host(sd->shoutConn),
|
|
|
|
shout_get_port(sd->shoutConn),
|
|
|
|
sd->connAttempts);
|
|
|
|
shout_close(sd->shoutConn);
|
|
|
|
return -1;
|
2006-10-11 02:18:43 +02:00
|
|
|
default:
|
2004-11-02 14:45:38 +01:00
|
|
|
ERROR("problem opening connection to shout server %s:%i "
|
2006-07-20 18:02:40 +02:00
|
|
|
"(attempt %i): %s\n",
|
|
|
|
shout_get_host(sd->shoutConn),
|
|
|
|
shout_get_port(sd->shoutConn),
|
|
|
|
sd->connAttempts, shout_get_error(sd->shoutConn));
|
2004-10-20 22:41:21 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (initEncoder(sd) < 0) {
|
2004-10-23 17:25:42 +02:00
|
|
|
shout_close(sd->shoutConn);
|
2004-10-22 21:40:09 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2004-11-09 04:58:12 +01:00
|
|
|
sd->shoutError = 0;
|
|
|
|
|
2004-10-26 14:56:10 +02:00
|
|
|
copyTagToVorbisComment(sd);
|
|
|
|
|
2004-10-22 21:40:09 +02:00
|
|
|
vorbis_analysis_headerout(&(sd->vd), &(sd->vc), &(sd->header_main),
|
2006-07-20 18:02:40 +02:00
|
|
|
&(sd->header_comments),
|
|
|
|
&(sd->header_codebooks));
|
2004-10-22 21:40:09 +02:00
|
|
|
|
|
|
|
ogg_stream_packetin(&(sd->os), &(sd->header_main));
|
|
|
|
ogg_stream_packetin(&(sd->os), &(sd->header_comments));
|
|
|
|
ogg_stream_packetin(&(sd->os), &(sd->header_codebooks));
|
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
sd->opened = 1;
|
|
|
|
sd->tagToSend = 0;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
while (ogg_stream_flush(&(sd->os), &(sd->og))) {
|
|
|
|
if (write_page(sd) < 0) {
|
2004-11-01 21:23:00 +01:00
|
|
|
myShout_closeShoutConn(sd);
|
|
|
|
return -1;
|
|
|
|
}
|
2004-10-22 21:40:09 +02:00
|
|
|
}
|
|
|
|
|
2004-11-02 14:26:50 +01:00
|
|
|
sd->connAttempts = 0;
|
2004-10-23 03:04:58 +02:00
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int myShout_openDevice(AudioOutput * audioOutput)
|
|
|
|
{
|
|
|
|
ShoutData *sd = (ShoutData *) audioOutput->data;
|
2004-10-26 14:56:10 +02:00
|
|
|
|
2007-06-12 19:58:17 +02:00
|
|
|
if (!sd->opened && myShout_openShoutConn(audioOutput) < 0)
|
2004-11-01 14:21:10 +01:00
|
|
|
return -1;
|
2007-06-12 19:58:17 +02:00
|
|
|
|
|
|
|
audioOutput->open = 1;
|
2004-11-01 14:21:10 +01:00
|
|
|
|
|
|
|
return 0;
|
2004-10-26 14:56:10 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void myShout_sendMetadata(ShoutData * sd)
|
|
|
|
{
|
|
|
|
if (!sd->opened || !sd->tag)
|
|
|
|
return;
|
2004-10-26 04:32:37 +02:00
|
|
|
|
|
|
|
clearEncoder(sd);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (initEncoder(sd) < 0)
|
|
|
|
return;
|
2004-10-26 04:32:37 +02:00
|
|
|
|
2004-10-26 14:56:10 +02:00
|
|
|
copyTagToVorbisComment(sd);
|
2004-10-26 04:32:37 +02:00
|
|
|
|
|
|
|
vorbis_analysis_headerout(&(sd->vd), &(sd->vc), &(sd->header_main),
|
2006-07-20 18:02:40 +02:00
|
|
|
&(sd->header_comments),
|
|
|
|
&(sd->header_codebooks));
|
2004-10-26 04:32:37 +02:00
|
|
|
|
|
|
|
ogg_stream_packetin(&(sd->os), &(sd->header_main));
|
|
|
|
ogg_stream_packetin(&(sd->os), &(sd->header_comments));
|
|
|
|
ogg_stream_packetin(&(sd->os), &(sd->header_codebooks));
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
while (ogg_stream_flush(&(sd->os), &(sd->og))) {
|
|
|
|
if (write_page(sd) < 0) {
|
2004-11-01 21:23:00 +01:00
|
|
|
myShout_closeShoutConn(sd);
|
|
|
|
return;
|
|
|
|
}
|
2004-10-26 04:32:37 +02:00
|
|
|
}
|
|
|
|
|
2004-11-01 17:58:06 +01:00
|
|
|
/*if(sd->tag) freeMpdTag(sd->tag);
|
2006-07-20 18:02:40 +02:00
|
|
|
sd->tag = NULL; */
|
2004-11-01 17:58:06 +01:00
|
|
|
sd->tagToSend = 0;
|
2004-10-26 04:32:37 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int myShout_play(AudioOutput * audioOutput, char *playChunk, int size)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
ShoutData *sd = (ShoutData *) audioOutput->data;
|
|
|
|
float **vorbbuf;
|
2004-10-23 03:04:58 +02:00
|
|
|
int samples;
|
2006-07-20 18:02:40 +02:00
|
|
|
int bytes = sd->audioFormat->bits / 8;
|
2004-10-23 03:04:58 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (sd->opened && sd->tagToSend)
|
|
|
|
myShout_sendMetadata(sd);
|
2004-10-26 14:56:10 +02:00
|
|
|
|
2007-06-12 19:58:17 +02:00
|
|
|
if (!sd->opened && myShout_openShoutConn(audioOutput) < 0) {
|
|
|
|
myShout_closeDevice(audioOutput);
|
|
|
|
return -1;
|
2004-10-25 23:36:08 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
samples = size / (bytes * sd->audioFormat->channels);
|
2004-10-22 21:40:09 +02:00
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
/* this is for only 16-bit audio */
|
|
|
|
|
|
|
|
vorbbuf = vorbis_analysis_buffer(&(sd->vd), samples);
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
for (i = 0; i < samples; i++) {
|
|
|
|
for (j = 0; j < sd->audioFormat->channels; j++) {
|
|
|
|
vorbbuf[j][i] = (*((mpd_sint16 *) playChunk)) / 32768.0;
|
2004-10-23 03:04:58 +02:00
|
|
|
playChunk += bytes;
|
|
|
|
}
|
2004-10-22 21:40:09 +02:00
|
|
|
}
|
|
|
|
|
2004-10-23 14:58:59 +02:00
|
|
|
vorbis_analysis_wrote(&(sd->vd), samples);
|
2004-10-22 21:40:09 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
while (1 == vorbis_analysis_blockout(&(sd->vd), &(sd->vb))) {
|
2004-10-22 21:40:09 +02:00
|
|
|
vorbis_analysis(&(sd->vb), NULL);
|
|
|
|
vorbis_bitrate_addblock(&(sd->vb));
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
while (vorbis_bitrate_flushpacket(&(sd->vd), &(sd->op))) {
|
2004-10-22 21:40:09 +02:00
|
|
|
ogg_stream_packetin(&(sd->os), &(sd->op));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
while (ogg_stream_pageout(&(sd->os), &(sd->og)) != 0) {
|
|
|
|
if (write_page(sd) < 0) {
|
2007-06-12 19:58:17 +02:00
|
|
|
myShout_closeDevice(audioOutput);
|
2004-11-01 21:23:00 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2004-11-01 21:02:08 +01:00
|
|
|
}
|
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void myShout_setTag(AudioOutput * audioOutput, MpdTag * tag)
|
|
|
|
{
|
|
|
|
ShoutData *sd = (ShoutData *) audioOutput->data;
|
2004-10-25 22:09:03 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (sd->tag)
|
|
|
|
freeMpdTag(sd->tag);
|
2004-10-26 04:32:37 +02:00
|
|
|
sd->tag = NULL;
|
2004-11-01 17:58:06 +01:00
|
|
|
sd->tagToSend = 0;
|
2004-10-25 22:09:03 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!tag)
|
|
|
|
return;
|
2004-10-25 22:09:03 +02:00
|
|
|
|
2004-10-26 04:32:37 +02:00
|
|
|
sd->tag = mpdTagDup(tag);
|
2004-11-01 17:58:06 +01:00
|
|
|
sd->tagToSend = 1;
|
2004-10-25 22:09:03 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
AudioOutputPlugin shoutPlugin = {
|
2004-10-20 19:49:21 +02:00
|
|
|
"shout",
|
2005-03-12 04:10:09 +01:00
|
|
|
NULL,
|
2004-11-01 21:23:00 +01:00
|
|
|
myShout_initDriver,
|
|
|
|
myShout_finishDriver,
|
|
|
|
myShout_openDevice,
|
|
|
|
myShout_play,
|
2005-03-05 15:26:37 +01:00
|
|
|
myShout_dropBufferedAudio,
|
2004-11-01 21:23:00 +01:00
|
|
|
myShout_closeDevice,
|
2006-07-14 19:39:14 +02:00
|
|
|
myShout_setTag,
|
2004-10-20 19:49:21 +02:00
|
|
|
};
|
2004-10-21 01:08:40 +02:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2006-07-14 19:39:14 +02:00
|
|
|
DISABLED_AUDIO_OUTPUT_PLUGIN(shoutPlugin)
|
2004-10-21 01:08:40 +02:00
|
|
|
#endif
|