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-10-21 01:08:40 +02:00
|
|
|
#include "../config.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_SHOUT
|
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
#include "audioOutput.h"
|
|
|
|
#include "conf.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "sig_handlers.h"
|
2004-10-23 03:04:58 +02:00
|
|
|
#include "pcm_utils.h"
|
2004-10-20 19:49:21 +02:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
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
|
|
|
|
|
|
|
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-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
|
|
|
|
|
|
|
int serialno;
|
2004-10-23 03:04:58 +02:00
|
|
|
|
|
|
|
float quality;
|
|
|
|
AudioFormat outAudioFormat;
|
|
|
|
AudioFormat inAudioFormat;
|
|
|
|
|
|
|
|
char * convBuffer;
|
|
|
|
long convBufferLen;
|
|
|
|
/* shoud we convert the audio to a different format? */
|
|
|
|
int audioFormatConvert;
|
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-22 21:40:09 +02:00
|
|
|
ret->serialno = rand();
|
2004-10-23 03:04:58 +02:00
|
|
|
ret->convBuffer = NULL;
|
|
|
|
ret->convBufferLen = 0;
|
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-20 19:49:21 +02:00
|
|
|
free(sd);
|
|
|
|
}
|
|
|
|
|
2004-10-20 22:41:21 +02:00
|
|
|
static int shout_initDriver(AudioOutput * audioOutput) {
|
|
|
|
ShoutData * sd;
|
|
|
|
char * test;
|
|
|
|
int port;
|
|
|
|
char * host;
|
|
|
|
char * mount;
|
|
|
|
char * passwd;
|
|
|
|
char * user;
|
|
|
|
char * name;
|
|
|
|
|
|
|
|
if(!getConf()[CONF_SHOUT_HOST]) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
sd = newShoutData();
|
|
|
|
|
|
|
|
if(!getConf()[CONF_SHOUT_MOUNT]) {
|
|
|
|
ERROR("shout host defined but not shout mount point\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!getConf()[CONF_SHOUT_PORT]) {
|
|
|
|
ERROR("shout host defined but not shout port\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!getConf()[CONF_SHOUT_PASSWD]) {
|
|
|
|
ERROR("shout host defined but not shout password\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!getConf()[CONF_SHOUT_NAME]) {
|
|
|
|
ERROR("shout host defined but not shout name\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!getConf()[CONF_SHOUT_USER]) {
|
|
|
|
ERROR("shout host defined but not shout user\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
if(!getConf()[CONF_SHOUT_QUALITY]) {
|
|
|
|
ERROR("shout host defined but not shout quality\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!getConf()[CONF_SHOUT_FORMAT]) {
|
|
|
|
ERROR("shout host defined but not shout format\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2004-10-20 22:41:21 +02:00
|
|
|
host = getConf()[CONF_SHOUT_HOST];
|
|
|
|
passwd = getConf()[CONF_SHOUT_PASSWD];
|
|
|
|
user = getConf()[CONF_SHOUT_USER];
|
|
|
|
mount = getConf()[CONF_SHOUT_MOUNT];
|
|
|
|
name = getConf()[CONF_SHOUT_NAME];
|
|
|
|
|
|
|
|
port = strtol(getConf()[CONF_SHOUT_PORT], &test, 10);
|
|
|
|
|
|
|
|
if(*test != '\0' || port <= 0) {
|
|
|
|
ERROR("shout port \"%s\" is not a positive integer\n",
|
|
|
|
getConf()[CONF_SHOUT_PORT]);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
sd->quality = strtod(getConf()[CONF_SHOUT_QUALITY], &test);
|
|
|
|
|
|
|
|
if(*test != '\0' || sd->quality < 0.0 || sd->quality > 10.0) {
|
|
|
|
ERROR("shout quality \"%s\" is not a number in the range "
|
|
|
|
"0-10\n", getConf()[CONF_SHOUT_QUALITY]);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(0 != parseAudioConfig(&(sd->outAudioFormat),
|
|
|
|
getConf()[CONF_SHOUT_FORMAT]) )
|
|
|
|
{
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
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 ||
|
|
|
|
shout_set_format(sd->shoutConn, SHOUT_FORMAT_VORBIS)
|
|
|
|
!= SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_protocol(sd->shoutConn, SHOUT_PROTOCOL_HTTP)
|
|
|
|
!= SHOUTERR_SUCCESS)
|
|
|
|
{
|
|
|
|
ERROR("error configuring shout: %s\n",
|
|
|
|
shout_get_error(sd->shoutConn));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2004-10-20 19:49:21 +02:00
|
|
|
|
|
|
|
audioOutput->data = sd;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
|
|
|
if(shoutInitCount == 0) shout_init();
|
|
|
|
|
|
|
|
shoutInitCount++;
|
|
|
|
|
|
|
|
return 0;
|
2004-10-20 19:49:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void shout_finishDriver(AudioOutput * audioOutput) {
|
|
|
|
ShoutData * sd = (ShoutData *)audioOutput->data;
|
|
|
|
|
|
|
|
freeShoutData(sd);
|
2004-10-20 22:41:21 +02:00
|
|
|
|
|
|
|
shoutInitCount--;
|
|
|
|
|
|
|
|
if(shoutInitCount == 0) shout_shutdown();
|
2004-10-20 19:49:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void shout_closeDevice(AudioOutput * audioOutput) {
|
2004-10-20 22:41:21 +02:00
|
|
|
ShoutData * sd = (ShoutData *) audioOutput->data;
|
|
|
|
|
|
|
|
if(shout_close(sd->shoutConn) != SHOUTERR_SUCCESS)
|
|
|
|
{
|
|
|
|
ERROR("problem closing connection to shout server: %s\n",
|
|
|
|
shout_get_error(sd->shoutConn));
|
|
|
|
}
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2004-10-22 21:40:09 +02:00
|
|
|
ogg_stream_clear(&(sd->os));
|
|
|
|
vorbis_block_clear(&(sd->vb));
|
|
|
|
vorbis_dsp_clear(&(sd->vd));
|
|
|
|
vorbis_comment_clear(&(sd->vc));
|
|
|
|
vorbis_info_clear(&(sd->vi));
|
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
audioOutput->open = 0;
|
|
|
|
}
|
|
|
|
|
2004-10-22 21:40:09 +02:00
|
|
|
static void write_page(ShoutData * sd) {
|
|
|
|
if(!sd->og.header_len || !sd->og.body_len) return;
|
|
|
|
|
|
|
|
shout_sync(sd->shoutConn);
|
|
|
|
shout_send(sd->shoutConn, sd->og.header, sd->og.header_len);
|
|
|
|
shout_send(sd->shoutConn, sd->og.body, sd->og.body_len);
|
|
|
|
shout_sync(sd->shoutConn);
|
|
|
|
}
|
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
static int shout_openDevice(AudioOutput * audioOutput,
|
|
|
|
AudioFormat * audioFormat)
|
|
|
|
{
|
2004-10-20 22:41:21 +02:00
|
|
|
ShoutData * sd = (ShoutData *)audioOutput->data;
|
|
|
|
|
|
|
|
if(shout_open(sd->shoutConn) != SHOUTERR_SUCCESS)
|
|
|
|
{
|
|
|
|
ERROR("problem opening connection to shout server: %s\n",
|
|
|
|
shout_get_error(sd->shoutConn));
|
|
|
|
return -1;
|
|
|
|
}
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2004-10-22 21:40:09 +02:00
|
|
|
vorbis_info_init(&(sd->vi));
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
if( 0 != vorbis_encode_init_vbr(&(sd->vi), sd->outAudioFormat.channels,
|
|
|
|
sd->outAudioFormat.sampleRate, sd->quality) )
|
2004-10-22 21:40:09 +02:00
|
|
|
{
|
|
|
|
ERROR("problem seting up vorbis encoder for shout\n");
|
|
|
|
vorbis_info_clear(&(sd->vi));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
vorbis_analysis_init(&(sd->vd), &(sd->vi));
|
|
|
|
vorbis_block_init (&(sd->vd), &(sd->vb));
|
|
|
|
|
|
|
|
ogg_stream_init(&(sd->os), sd->serialno);
|
|
|
|
|
|
|
|
vorbis_comment_init(&(sd->vc));
|
|
|
|
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-10-20 19:49:21 +02:00
|
|
|
audioOutput->open = 1;
|
|
|
|
|
2004-10-22 21:40:09 +02:00
|
|
|
while(ogg_stream_flush(&(sd->os), &(sd->og)))
|
|
|
|
{
|
|
|
|
write_page(sd);
|
|
|
|
}
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
memcpy(&(sd->inAudioFormat), audioFormat, sizeof(AudioFormat));
|
|
|
|
|
|
|
|
if(0 == memcmp(&(sd->inAudioFormat), &(sd->outAudioFormat),
|
|
|
|
sizeof(AudioFormat)))
|
|
|
|
{
|
|
|
|
sd->audioFormatConvert = 0;
|
|
|
|
}
|
|
|
|
else sd->audioFormatConvert = 1;
|
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
static void shout_convertAudioFormat(ShoutData * sd, char ** chunkArgPtr,
|
|
|
|
int * sizeArgPtr)
|
|
|
|
{
|
|
|
|
int size = pcm_sizeOfOutputBufferForAudioFormatConversion(
|
|
|
|
&(sd->inAudioFormat), *sizeArgPtr,
|
|
|
|
&(sd->outAudioFormat));
|
|
|
|
|
|
|
|
if(size > sd->convBufferLen) {
|
|
|
|
sd->convBuffer = realloc(sd->convBuffer, size);
|
|
|
|
sd->convBufferLen = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
pcm_convertAudioFormat(&(sd->inAudioFormat), *chunkArgPtr, *sizeArgPtr,
|
|
|
|
&(sd->outAudioFormat), sd->convBuffer);
|
|
|
|
|
|
|
|
*sizeArgPtr = size;
|
|
|
|
*chunkArgPtr = sd->convBuffer;
|
|
|
|
}
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2004-10-22 21:40:09 +02:00
|
|
|
static int shout_play(AudioOutput * audioOutput, char * playChunk, int size) {
|
|
|
|
int i,j;
|
|
|
|
ShoutData * sd = (ShoutData *)audioOutput->data;
|
2004-10-23 03:04:58 +02:00
|
|
|
float ** vorbbuf;
|
|
|
|
int samples;
|
|
|
|
int bytes = sd->outAudioFormat.bits/8;
|
|
|
|
|
|
|
|
if(sd->audioFormatConvert) {
|
|
|
|
shout_convertAudioFormat(sd, &playChunk, &size);
|
|
|
|
}
|
2004-10-22 21:40:09 +02:00
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
samples = size/(bytes*sd->outAudioFormat.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++) {
|
|
|
|
for(j=0; j<sd->outAudioFormat.channels; j++) {
|
|
|
|
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));
|
|
|
|
do {
|
|
|
|
if(ogg_stream_pageout(&(sd->os), &(sd->og)) == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
write_page(sd);
|
|
|
|
} while(ogg_page_eos(&(sd->og)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioOutputPlugin shoutPlugin =
|
|
|
|
{
|
|
|
|
"shout",
|
|
|
|
shout_initDriver,
|
|
|
|
shout_finishDriver,
|
|
|
|
shout_openDevice,
|
|
|
|
shout_play,
|
|
|
|
shout_closeDevice
|
|
|
|
};
|
2004-10-21 01:08:40 +02:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
AudioOutputPlugin shoutPlugin =
|
|
|
|
{
|
|
|
|
"shout",
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|