2004-10-20 19:49:21 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu)
|
|
|
|
* 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 "../sig_handlers.h"
|
|
|
|
#include "../pcm_utils.h"
|
2004-10-20 19:49:21 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <signal.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>
|
2004-10-20 23:09:04 +02:00
|
|
|
#include <vorbis/codec.h>
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-11-02 14:26:50 +01:00
|
|
|
#define CONN_ATTEMPT_INTERVAL 60
|
|
|
|
|
2004-10-20 22:41:21 +02:00
|
|
|
static int shoutInitCount = 0;
|
|
|
|
|
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 {
|
2004-10-20 22:41:21 +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;
|
|
|
|
|
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
|
|
|
|
|
|
|
MpdTag * tag;
|
2004-11-01 17:58:06 +01:00
|
|
|
int tagToSend;
|
2004-11-02 14:26:50 +01:00
|
|
|
|
|
|
|
int connAttempts;
|
|
|
|
time_t lastAttempt;
|
2004-11-02 18:05:27 +01:00
|
|
|
|
|
|
|
/* just a pointer to audioOutput->outAudioFormat */
|
|
|
|
AudioFormat * audioFormat;
|
2004-10-20 19:49:21 +02:00
|
|
|
} ShoutData;
|
|
|
|
|
|
|
|
static ShoutData * newShoutData() {
|
|
|
|
ShoutData * ret = malloc(sizeof(ShoutData));
|
|
|
|
|
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;
|
|
|
|
ret->quality = -1.0;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void freeShoutData(ShoutData * sd) {
|
2004-10-20 22:41:21 +02:00
|
|
|
if(sd->shoutConn) shout_free(sd->shoutConn);
|
2004-10-26 04:32:37 +02:00
|
|
|
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); \
|
|
|
|
if(!blockParam) { \
|
|
|
|
ERROR("no \"%s\" defined for shout device defined at line " \
|
|
|
|
"%i\n", name, param->line); \
|
|
|
|
exit(EXIT_FAILURE); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
static int myShout_initDriver(AudioOutput * audioOutput, ConfigParam * param) {
|
2004-10-20 22:41:21 +02:00
|
|
|
ShoutData * sd;
|
|
|
|
char * test;
|
|
|
|
int port;
|
|
|
|
char * host;
|
|
|
|
char * mount;
|
|
|
|
char * passwd;
|
|
|
|
char * user;
|
|
|
|
char * name;
|
2004-10-28 07:14:55 +02:00
|
|
|
BlockParam * blockParam;
|
2004-11-04 05:01:04 +01:00
|
|
|
unsigned int public;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
|
|
|
sd = newShoutData();
|
|
|
|
|
2004-11-01 15:56:32 +01:00
|
|
|
if(shoutInitCount == 0) shout_init();
|
|
|
|
|
|
|
|
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
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
if(*test != '\0' || port <= 0) {
|
|
|
|
ERROR("shout port \"%s\" is not a positive integer, line %i\n",
|
|
|
|
blockParam->value, blockParam->line);
|
2004-10-23 03:04:58 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
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");
|
|
|
|
if(blockParam) {
|
|
|
|
if(0 == strcmp(blockParam->value, "yes")) public = 1;
|
|
|
|
else if(0 == strcmp(blockParam->value, "no")) public = 0;
|
|
|
|
else {
|
|
|
|
ERROR("public \"%s\" is not \"yes\" or \"no\" at line "
|
|
|
|
"%i\n", param->value, param->line);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
2004-11-04 05:03:08 +01:00
|
|
|
else public = 0;
|
2004-11-04 05:01:04 +01:00
|
|
|
|
|
|
|
blockParam = getBlockParam(param, "user");
|
|
|
|
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
|
|
|
|
2004-10-29 15:33:51 +02:00
|
|
|
if(blockParam) {
|
|
|
|
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);
|
|
|
|
|
|
|
|
if(*test != '\0' || sd->quality < 0.0 || sd->quality > 10.0) {
|
|
|
|
ERROR("shout quality \"%s\" is not a number in the "
|
|
|
|
"rage 0-10, line %i\n", blockParam->value,
|
2004-10-28 07:14:55 +02:00
|
|
|
blockParam->line);
|
2004-10-29 15:33:51 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
blockParam = getBlockParam(param, "bitrate");
|
|
|
|
|
|
|
|
if(blockParam) {
|
|
|
|
ERROR("quality (line %i) and bitrate (line %i) are "
|
|
|
|
"both defined for shout output\n", line,
|
|
|
|
blockParam->line);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
blockParam = getBlockParam(param, "bitrate");
|
|
|
|
|
|
|
|
if(!blockParam) {
|
|
|
|
ERROR("neither bitrate nor quality defined for shout "
|
|
|
|
"output at line %i\n", param->line);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
sd->bitrate = strtol(blockParam->value, &test, 10);
|
|
|
|
|
|
|
|
if(*test != '\0' || sd->bitrate <= 0) {
|
|
|
|
ERROR("bitrate at line %i should be a positve integer "
|
|
|
|
"\n", blockParam->line);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
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
|
|
|
|
2004-10-20 22:41:21 +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 ||
|
2004-11-04 05:01:04 +01:00
|
|
|
shout_set_public(sd->shoutConn, public) != SHOUTERR_SUCCESS ||
|
2004-10-20 22:41:21 +02:00
|
|
|
shout_set_format(sd->shoutConn, SHOUT_FORMAT_VORBIS)
|
|
|
|
!= SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_protocol(sd->shoutConn, SHOUT_PROTOCOL_HTTP)
|
2004-10-29 15:33:51 +02:00
|
|
|
!= SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_agent(sd->shoutConn, "MPD") != SHOUTERR_SUCCESS)
|
2004-10-20 22:41:21 +02:00
|
|
|
{
|
2004-11-02 14:45:38 +01:00
|
|
|
ERROR("error configuring shout defined at line %i: %s\n",
|
|
|
|
param->line,
|
2004-10-20 22:41:21 +02:00
|
|
|
shout_get_error(sd->shoutConn));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2004-11-09 14:04:20 +01:00
|
|
|
/* optional paramters */
|
|
|
|
blockParam = getBlockParam(param, "genre");
|
|
|
|
if(blockParam && shout_set_genre(sd->shoutConn, blockParam->value)) {
|
|
|
|
ERROR("error configuring shout defined at line %i: %s\n",
|
|
|
|
param->line,
|
|
|
|
shout_get_error(sd->shoutConn));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
blockParam = getBlockParam(param, "description");
|
|
|
|
if(blockParam && shout_set_description(sd->shoutConn,
|
|
|
|
blockParam->value))
|
|
|
|
{
|
|
|
|
ERROR("error configuring shout defined at line %i: %s\n",
|
|
|
|
param->line,
|
|
|
|
shout_get_error(sd->shoutConn));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2004-10-29 15:33:51 +02:00
|
|
|
{
|
|
|
|
char temp[11];
|
|
|
|
memset(temp, 0, sizeof(temp));
|
|
|
|
|
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);
|
|
|
|
|
2004-10-29 15:33:51 +02:00
|
|
|
shout_set_audio_info(sd->shoutConn, SHOUT_AI_SAMPLERATE, temp);
|
|
|
|
|
|
|
|
if(sd->quality >= 0) {
|
|
|
|
snprintf(temp, sizeof(temp), "%2.2f", sd->quality);
|
|
|
|
shout_set_audio_info(sd->shoutConn, SHOUT_AI_QUALITY,
|
|
|
|
temp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
snprintf(temp, sizeof(temp), "%d", sd->bitrate);
|
|
|
|
shout_set_audio_info(sd->shoutConn, SHOUT_AI_BITRATE,
|
|
|
|
temp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2004-11-09 04:58:12 +01:00
|
|
|
static int myShout_handleError(ShoutData * sd, int err) {
|
|
|
|
switch(err) {
|
|
|
|
case SHOUTERR_SUCCESS:
|
|
|
|
break;
|
|
|
|
case SHOUTERR_UNCONNECTED:
|
|
|
|
case SHOUTERR_SOCKET:
|
|
|
|
ERROR("Lost shout connection to %s:%i\n",
|
|
|
|
shout_get_host(sd->shoutConn),
|
|
|
|
shout_get_port(sd->shoutConn));
|
|
|
|
sd->shoutError = 1;
|
|
|
|
return -1;
|
|
|
|
default:
|
|
|
|
ERROR("shout: connection to %s:%i error : %s\n",
|
|
|
|
shout_get_host(sd->shoutConn),
|
|
|
|
shout_get_port(sd->shoutConn),
|
|
|
|
shout_get_error(sd->shoutConn));
|
|
|
|
sd->shoutError = 1;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int write_page(ShoutData * sd) {
|
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
/*DEBUG("shout_delay: %i\n", shout_delay(sd->shoutConn));*/
|
|
|
|
shout_sync(sd->shoutConn);
|
|
|
|
err = shout_send(sd->shoutConn, sd->og.header, sd->og.header_len);
|
|
|
|
if(myShout_handleError(sd, err) < 0) return -1;
|
|
|
|
err = shout_send(sd->shoutConn, sd->og.body, sd->og.body_len);
|
|
|
|
if(myShout_handleError(sd, err) < 0) return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void finishEncoder(ShoutData * sd) {
|
2004-11-01 17:58:06 +01:00
|
|
|
vorbis_analysis_wrote(&sd->vd, 0);
|
|
|
|
|
|
|
|
while(vorbis_analysis_blockout(&sd->vd, &sd->vb) == 1) {
|
|
|
|
vorbis_analysis(&sd->vb, NULL);
|
|
|
|
vorbis_bitrate_addblock(&sd->vb);
|
|
|
|
while(vorbis_bitrate_flushpacket(&sd->vd, &sd->op)) {
|
|
|
|
ogg_stream_packetin(&sd->os, &sd->op);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-09 04:58:12 +01:00
|
|
|
static int flushEncoder(ShoutData * sd) {
|
|
|
|
return !(ogg_stream_pageout(&sd->os, &sd->og) <= 0 );
|
|
|
|
}
|
2004-11-01 17:58:06 +01:00
|
|
|
|
2004-10-25 22:09:03 +02:00
|
|
|
static void clearEncoder(ShoutData * sd) {
|
2004-11-09 04:58:12 +01:00
|
|
|
finishEncoder(sd);
|
|
|
|
while(1 == flushEncoder(sd)) {
|
|
|
|
if(!sd->shoutError) write_page(sd);
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
static void myShout_closeShoutConn(ShoutData * sd) {
|
2004-10-23 17:25:42 +02:00
|
|
|
if(sd->opened) {
|
2004-10-26 14:56:10 +02:00
|
|
|
clearEncoder(sd);
|
|
|
|
|
2004-10-23 17:25:42 +02:00
|
|
|
if(shout_close(sd->shoutConn) != SHOUTERR_SUCCESS) {
|
|
|
|
ERROR("problem closing connection to shout server: "
|
|
|
|
"%s\n", shout_get_error(sd->shoutConn));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sd->opened = 0;
|
|
|
|
}
|
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
static void myShout_finishDriver(AudioOutput * audioOutput) {
|
2004-10-20 19:49:21 +02:00
|
|
|
ShoutData * sd = (ShoutData *)audioOutput->data;
|
|
|
|
|
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--;
|
|
|
|
|
|
|
|
if(shoutInitCount == 0) shout_shutdown();
|
2004-10-20 19:49:21 +02:00
|
|
|
}
|
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
static void myShout_closeDevice(AudioOutput * audioOutput) {
|
2004-11-02 23:13:58 +01:00
|
|
|
ShoutData * sd = (ShoutData *)audioOutput->data;
|
|
|
|
|
|
|
|
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); \
|
|
|
|
}
|
|
|
|
|
|
|
|
static void copyTagToVorbisComment(ShoutData * sd) {
|
|
|
|
if(sd->tag) {
|
2004-11-10 22:58:27 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i = 0; i < sd->tag->numOfItems; i++) {
|
|
|
|
switch(sd->tag->items[i].type) {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-25 22:09:03 +02:00
|
|
|
static int initEncoder(ShoutData * sd) {
|
|
|
|
vorbis_info_init(&(sd->vi));
|
|
|
|
|
2004-10-29 15:33:51 +02:00
|
|
|
if(sd->quality >= 0) {
|
|
|
|
if( 0 != vorbis_encode_init_vbr(&(sd->vi),
|
2004-11-02 18:05:27 +01:00
|
|
|
sd->audioFormat->channels,
|
|
|
|
sd->audioFormat->sampleRate, sd->quality*0.1) )
|
2004-10-29 15:33:51 +02:00
|
|
|
{
|
|
|
|
ERROR("problem seting up vorbis encoder for shout\n");
|
|
|
|
vorbis_info_clear(&(sd->vi));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2004-11-02 02:25:06 +01:00
|
|
|
if( 0 != vorbis_encode_init(&(sd->vi),
|
2004-11-02 18:05:27 +01:00
|
|
|
sd->audioFormat->channels,
|
|
|
|
sd->audioFormat->sampleRate, -1.0,
|
2004-10-29 15:33:51 +02:00
|
|
|
sd->bitrate*1000, -1.0) )
|
|
|
|
{
|
|
|
|
ERROR("problem seting up vorbis encoder for shout\n");
|
|
|
|
vorbis_info_clear(&(sd->vi));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-25 22:09:03 +02:00
|
|
|
vorbis_analysis_init(&(sd->vd), &(sd->vi));
|
|
|
|
vorbis_block_init (&(sd->vd), &(sd->vb));
|
|
|
|
|
|
|
|
ogg_stream_init(&(sd->os), rand());
|
|
|
|
|
|
|
|
vorbis_comment_init(&(sd->vc));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
static int myShout_openShoutConn(AudioOutput * audioOutput) {
|
2004-10-20 22:41:21 +02:00
|
|
|
ShoutData * sd = (ShoutData *)audioOutput->data;
|
2004-11-02 14:26:50 +01:00
|
|
|
time_t t = time(NULL);
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-11-02 23:13:58 +01:00
|
|
|
if(sd->connAttempts!= 0 &&
|
|
|
|
(t - sd->lastAttempt) < CONN_ATTEMPT_INTERVAL)
|
|
|
|
{
|
2004-11-02 14:26:50 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2004-11-02 14:45:38 +01:00
|
|
|
sd->connAttempts++;
|
|
|
|
|
2004-11-02 14:26:50 +01:00
|
|
|
sd->lastAttempt = t;
|
|
|
|
|
|
|
|
if(shout_open(sd->shoutConn) != SHOUTERR_SUCCESS) {
|
2004-11-02 14:45:38 +01:00
|
|
|
ERROR("problem opening connection to shout server %s:%i "
|
|
|
|
"(attempt %i): %s\n",
|
|
|
|
shout_get_host(sd->shoutConn),
|
|
|
|
shout_get_port(sd->shoutConn),
|
|
|
|
sd->connAttempts,
|
2004-11-02 14:26:50 +01:00
|
|
|
shout_get_error(sd->shoutConn));
|
2004-10-20 22:41:21 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2004-10-25 22:09:03 +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),
|
|
|
|
&(sd->header_comments), &(sd->header_codebooks));
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2004-10-22 21:40:09 +02:00
|
|
|
while(ogg_stream_flush(&(sd->os), &(sd->og)))
|
|
|
|
{
|
2004-11-01 21:23:00 +01:00
|
|
|
if(write_page(sd) < 0) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
static int myShout_openDevice(AudioOutput * audioOutput,
|
2004-10-26 14:56:10 +02:00
|
|
|
AudioFormat * audioFormat)
|
|
|
|
{
|
|
|
|
ShoutData * sd = (ShoutData *)audioOutput->data;
|
|
|
|
|
|
|
|
audioOutput->open = 1;
|
|
|
|
|
|
|
|
if(sd->opened) return 0;
|
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
if(myShout_openShoutConn(audioOutput) < 0) {
|
2004-11-01 16:56:33 +01:00
|
|
|
audioOutput->open = 0;
|
2004-11-01 14:21:10 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2004-10-26 14:56:10 +02:00
|
|
|
}
|
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
static void myShout_sendMetadata(ShoutData * sd) {
|
2004-10-26 14:56:10 +02:00
|
|
|
if(!sd->opened || !sd->tag) return;
|
2004-10-26 04:32:37 +02:00
|
|
|
|
|
|
|
clearEncoder(sd);
|
|
|
|
if(initEncoder(sd) < 0) return;
|
|
|
|
|
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),
|
|
|
|
&(sd->header_comments), &(sd->header_codebooks));
|
|
|
|
|
|
|
|
ogg_stream_packetin(&(sd->os), &(sd->header_main));
|
|
|
|
ogg_stream_packetin(&(sd->os), &(sd->header_comments));
|
|
|
|
ogg_stream_packetin(&(sd->os), &(sd->header_codebooks));
|
|
|
|
|
|
|
|
while(ogg_stream_flush(&(sd->os), &(sd->og)))
|
|
|
|
{
|
2004-11-01 21:23:00 +01:00
|
|
|
if(write_page(sd) < 0) {
|
|
|
|
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);
|
|
|
|
sd->tag = NULL;*/
|
|
|
|
sd->tagToSend = 0;
|
2004-10-26 04:32:37 +02:00
|
|
|
}
|
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
static int myShout_play(AudioOutput * audioOutput, char * playChunk, int size) {
|
2004-10-22 21:40:09 +02:00
|
|
|
int i,j;
|
|
|
|
ShoutData * sd = (ShoutData *)audioOutput->data;
|
2004-10-23 03:04:58 +02:00
|
|
|
float ** vorbbuf;
|
|
|
|
int samples;
|
2004-11-02 18:05:27 +01:00
|
|
|
int bytes = sd->audioFormat->bits/8;
|
2004-10-23 03:04:58 +02:00
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
if(sd->opened && sd->tagToSend) myShout_sendMetadata(sd);
|
2004-10-26 14:56:10 +02:00
|
|
|
|
2004-10-25 23:36:08 +02:00
|
|
|
if(!sd->opened) {
|
2004-11-01 21:23:00 +01:00
|
|
|
if(myShout_openShoutConn(audioOutput) < 0) {
|
2004-10-25 23:36:08 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-02 18:05:27 +01: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);
|
|
|
|
|
|
|
|
for(i=0; i<samples; i++) {
|
2004-11-02 18:05:27 +01:00
|
|
|
for(j=0; j<sd->audioFormat->channels; j++) {
|
2004-10-23 03:04:58 +02:00
|
|
|
vorbbuf[j][i] = (*((mpd_sint16 *)playChunk)) / 32768.0;
|
|
|
|
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
|
|
|
|
|
|
|
while(1 == vorbis_analysis_blockout(&(sd->vd), &(sd->vb))) {
|
|
|
|
vorbis_analysis(&(sd->vb), NULL);
|
|
|
|
vorbis_bitrate_addblock(&(sd->vb));
|
|
|
|
|
|
|
|
while(vorbis_bitrate_flushpacket(&(sd->vd), &(sd->op))) {
|
|
|
|
ogg_stream_packetin(&(sd->os), &(sd->op));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-01 21:02:08 +01:00
|
|
|
|
|
|
|
while(ogg_stream_pageout(&(sd->os), &(sd->og)) != 0) {
|
2004-11-01 21:23:00 +01:00
|
|
|
if(write_page(sd) < 0) {
|
|
|
|
myShout_closeShoutConn(sd);
|
|
|
|
return -1;
|
|
|
|
}
|
2004-11-01 21:02:08 +01:00
|
|
|
}
|
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-11-01 21:23:00 +01:00
|
|
|
static void myShout_setTag(AudioOutput * audioOutput, MpdTag * tag) {
|
2004-10-25 22:09:03 +02:00
|
|
|
ShoutData * sd = (ShoutData *)audioOutput->data;
|
|
|
|
|
2004-10-26 04:32:37 +02:00
|
|
|
if(sd->tag) freeMpdTag(sd->tag);
|
|
|
|
sd->tag = NULL;
|
2004-11-01 17:58:06 +01:00
|
|
|
sd->tagToSend = 0;
|
2004-10-25 22:09:03 +02:00
|
|
|
|
2004-10-26 04:32:37 +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
|
|
|
}
|
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
AudioOutputPlugin shoutPlugin =
|
|
|
|
{
|
|
|
|
"shout",
|
2004-11-01 21:23:00 +01:00
|
|
|
myShout_initDriver,
|
|
|
|
myShout_finishDriver,
|
|
|
|
myShout_openDevice,
|
|
|
|
myShout_play,
|
|
|
|
myShout_closeDevice,
|
|
|
|
myShout_setTag
|
2004-10-20 19:49:21 +02:00
|
|
|
};
|
2004-10-21 01:08:40 +02:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
AudioOutputPlugin shoutPlugin =
|
|
|
|
{
|
2004-10-29 05:30:23 +02:00
|
|
|
NULL,
|
2004-10-21 01:08:40 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-10-25 22:09:03 +02:00
|
|
|
NULL,
|
2004-10-21 01:08:40 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|