2004-09-08 04:16:08 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2006-07-14 21:37:45 +02:00
|
|
|
* (c)2003-2006 by Warren Dukes (warren.dukes@gmail.com)
|
2004-09-08 04:16:08 +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"
|
2005-01-16 17:03:14 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_AO
|
|
|
|
|
2004-11-02 13:46:52 +01:00
|
|
|
#include "../conf.h"
|
|
|
|
#include "../log.h"
|
2004-09-08 04:16:08 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <ao/ao.h>
|
|
|
|
|
2007-01-14 04:07:53 +01:00
|
|
|
static int driverInitCount;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2004-10-20 18:05:13 +02:00
|
|
|
typedef struct _AoData {
|
|
|
|
int writeSize;
|
|
|
|
int driverId;
|
2006-07-20 18:02:40 +02:00
|
|
|
ao_option *options;
|
|
|
|
ao_device *device;
|
2004-10-20 18:05:13 +02:00
|
|
|
} AoData;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2006-08-08 04:23:21 +02:00
|
|
|
static AoData *newAoData(void)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2006-08-26 08:25:57 +02:00
|
|
|
AoData *ret = xmalloc(sizeof(AoData));
|
2004-10-20 18:05:13 +02:00
|
|
|
ret->device = NULL;
|
|
|
|
ret->options = NULL;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2004-10-20 18:05:13 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-08-08 04:23:21 +02:00
|
|
|
static void audioOutputAo_error(void)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
if (errno == AO_ENOTLIVE) {
|
2004-10-20 18:16:50 +02:00
|
|
|
ERROR("not a live ao device\n");
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (errno == AO_EOPENDEVICE) {
|
2004-10-20 18:16:50 +02:00
|
|
|
ERROR("not able to open audio device\n");
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (errno == AO_EBADOPTION) {
|
2004-10-20 18:16:50 +02:00
|
|
|
ERROR("bad driver option\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
static int audioOutputAo_initDriver(AudioOutput * audioOutput,
|
2006-07-20 18:02:40 +02:00
|
|
|
ConfigParam * param)
|
2004-10-28 07:14:55 +02:00
|
|
|
{
|
2006-07-20 18:02:40 +02:00
|
|
|
ao_info *ai;
|
|
|
|
char *dup;
|
|
|
|
char *stk1;
|
|
|
|
char *stk2;
|
|
|
|
char *n1;
|
|
|
|
char *key;
|
|
|
|
char *value;
|
|
|
|
char *test;
|
|
|
|
AoData *ad = newAoData();
|
|
|
|
BlockParam *blockParam;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2004-10-20 18:05:13 +02:00
|
|
|
audioOutput->data = ad;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if ((blockParam = getBlockParam(param, "write_size"))) {
|
2004-10-28 07:14:55 +02:00
|
|
|
ad->writeSize = strtol(blockParam->value, &test, 10);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (*test != '\0') {
|
2004-10-28 07:14:55 +02:00
|
|
|
ERROR("\"%s\" is not a valid write size at line %i\n",
|
2006-07-20 18:02:40 +02:00
|
|
|
blockParam->value, blockParam->line);
|
2004-10-28 07:14:55 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
} else
|
|
|
|
ad->writeSize = 1024;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (driverInitCount == 0) {
|
2004-10-20 18:05:13 +02:00
|
|
|
ao_initialize();
|
|
|
|
}
|
|
|
|
driverInitCount++;
|
2004-10-28 07:14:55 +02:00
|
|
|
|
|
|
|
blockParam = getBlockParam(param, "driver");
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!blockParam || 0 == strcmp(blockParam->value, "default")) {
|
2004-10-20 18:05:13 +02:00
|
|
|
ad->driverId = ao_default_driver_id();
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if ((ad->driverId = ao_driver_id(blockParam->value)) < 0) {
|
2004-10-28 07:14:55 +02:00
|
|
|
ERROR("\"%s\" is not a valid ao driver at line %i\n",
|
2006-07-20 18:02:40 +02:00
|
|
|
blockParam->value, blockParam->line);
|
2004-09-08 04:16:08 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
|
|
|
if ((ai = ao_driver_info(ad->driverId)) == NULL) {
|
2004-10-28 07:14:55 +02:00
|
|
|
ERROR("problems getting driver info for device defined at "
|
2006-07-20 18:02:40 +02:00
|
|
|
"line %i\n", param->line);
|
2004-09-08 04:16:08 +02:00
|
|
|
ERROR("you may not have permission to the audio device\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
DEBUG("using ao driver \"%s\" for \"%s\"\n", ai->short_name,
|
|
|
|
audioOutput->name);
|
2004-11-02 19:31:54 +01:00
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
blockParam = getBlockParam(param, "options");
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (blockParam) {
|
2006-08-26 08:25:57 +02:00
|
|
|
dup = xstrdup(blockParam->value);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else
|
2006-08-26 08:25:57 +02:00
|
|
|
dup = xstrdup("");
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (strlen(dup)) {
|
2004-09-08 04:16:08 +02:00
|
|
|
stk1 = NULL;
|
2006-07-20 18:02:40 +02:00
|
|
|
n1 = strtok_r(dup, ";", &stk1);
|
|
|
|
while (n1) {
|
2004-09-08 04:16:08 +02:00
|
|
|
stk2 = NULL;
|
2006-07-20 18:02:40 +02:00
|
|
|
key = strtok_r(n1, "=", &stk2);
|
|
|
|
if (!key) {
|
2004-09-08 04:16:08 +02:00
|
|
|
ERROR("problems parsing "
|
2007-01-21 22:41:54 +01:00
|
|
|
"options \"%s\"\n", n1);
|
2004-09-08 04:16:08 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
/*found = 0;
|
2006-07-20 18:02:40 +02:00
|
|
|
for(i=0;i<ai->option_count;i++) {
|
|
|
|
if(strcmp(ai->options[i],key)==0) {
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!found) {
|
|
|
|
ERROR("\"%s\" is not an option for "
|
|
|
|
"\"%s\" ao driver\n",key,
|
|
|
|
ai->short_name);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
} */
|
|
|
|
value = strtok_r(NULL, "", &stk2);
|
|
|
|
if (!value) {
|
2004-09-08 04:16:08 +02:00
|
|
|
ERROR("problems parsing "
|
2007-01-21 22:41:54 +01:00
|
|
|
"options \"%s\"\n", n1);
|
2004-09-08 04:16:08 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
ao_append_option(&ad->options, key, value);
|
|
|
|
n1 = strtok_r(NULL, ";", &stk1);
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
free(dup);
|
2004-10-20 22:41:21 +02:00
|
|
|
|
|
|
|
return 0;
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void freeAoData(AoData * ad)
|
|
|
|
{
|
2004-10-20 19:43:16 +02:00
|
|
|
ao_free_options(ad->options);
|
|
|
|
free(ad);
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void audioOutputAo_finishDriver(AudioOutput * audioOutput)
|
|
|
|
{
|
|
|
|
AoData *ad = (AoData *) audioOutput->data;
|
2004-10-20 19:43:16 +02:00
|
|
|
freeAoData(ad);
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2004-10-20 18:05:13 +02:00
|
|
|
driverInitCount--;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (driverInitCount == 0)
|
|
|
|
ao_shutdown();
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void audioOutputAo_dropBufferedAudio(AudioOutput * audioOutput)
|
|
|
|
{
|
2005-11-19 11:52:47 +01:00
|
|
|
/* not supported by libao */
|
2005-03-05 15:01:13 +01:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void audioOutputAo_closeDevice(AudioOutput * audioOutput)
|
|
|
|
{
|
|
|
|
AoData *ad = (AoData *) audioOutput->data;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (ad->device) {
|
2004-10-20 18:05:13 +02:00
|
|
|
ao_close(ad->device);
|
|
|
|
ad->device = NULL;
|
|
|
|
}
|
2004-10-28 14:58:20 +02:00
|
|
|
|
|
|
|
audioOutput->open = 0;
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int audioOutputAo_openDevice(AudioOutput * audioOutput)
|
|
|
|
{
|
2004-09-08 04:16:08 +02:00
|
|
|
ao_sample_format format;
|
2006-07-20 18:02:40 +02:00
|
|
|
AoData *ad = (AoData *) audioOutput->data;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (ad->device) {
|
2004-10-20 18:05:13 +02:00
|
|
|
audioOutputAo_closeDevice(audioOutput);
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2004-11-19 16:09:01 +01:00
|
|
|
format.bits = audioOutput->outAudioFormat.bits;
|
|
|
|
format.rate = audioOutput->outAudioFormat.sampleRate;
|
2004-10-20 18:05:13 +02:00
|
|
|
format.byte_format = AO_FMT_NATIVE;
|
2004-11-19 16:09:01 +01:00
|
|
|
format.channels = audioOutput->outAudioFormat.channels;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2004-10-20 18:05:13 +02:00
|
|
|
ad->device = ao_open_live(ad->driverId, &format, ad->options);
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (ad->device == NULL)
|
|
|
|
return -1;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2004-10-20 18:48:22 +02:00
|
|
|
audioOutput->open = 1;
|
|
|
|
|
2004-09-08 04:16:08 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int audioOutputAo_play(AudioOutput * audioOutput, char *playChunk,
|
|
|
|
int size)
|
2004-10-20 18:05:13 +02:00
|
|
|
{
|
2004-09-08 04:16:08 +02:00
|
|
|
int send;
|
2006-07-20 18:02:40 +02:00
|
|
|
AoData *ad = (AoData *) audioOutput->data;
|
|
|
|
|
|
|
|
if (ad->device == NULL)
|
|
|
|
return -1;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
while (size > 0) {
|
2004-10-20 18:05:13 +02:00
|
|
|
send = ad->writeSize > size ? size : ad->writeSize;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
|
|
|
if (ao_play(ad->device, playChunk, send) == 0) {
|
2004-10-20 18:16:50 +02:00
|
|
|
audioOutputAo_error();
|
2004-09-08 04:16:08 +02:00
|
|
|
ERROR("closing audio device due to write error\n");
|
2004-10-20 18:05:13 +02:00
|
|
|
audioOutputAo_closeDevice(audioOutput);
|
2004-09-08 04:16:08 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
playChunk += send;
|
|
|
|
size -= send;
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
AudioOutputPlugin aoPlugin = {
|
2004-09-08 04:16:08 +02:00
|
|
|
"ao",
|
2005-03-12 04:10:09 +01:00
|
|
|
NULL,
|
2004-09-08 04:16:08 +02:00
|
|
|
audioOutputAo_initDriver,
|
|
|
|
audioOutputAo_finishDriver,
|
|
|
|
audioOutputAo_openDevice,
|
|
|
|
audioOutputAo_play,
|
2005-03-05 15:01:13 +01:00
|
|
|
audioOutputAo_dropBufferedAudio,
|
2004-10-25 22:09:03 +02:00
|
|
|
audioOutputAo_closeDevice,
|
2006-07-20 20:53:56 +02:00
|
|
|
NULL, /* sendMetadataFunc */
|
2004-09-08 04:16:08 +02:00
|
|
|
};
|
2005-01-16 17:03:14 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2006-07-14 19:39:14 +02:00
|
|
|
DISABLED_AUDIO_OUTPUT_PLUGIN(aoPlugin)
|
2005-01-16 17:03:14 +01:00
|
|
|
#endif
|