2004-09-08 04:16:08 +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-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
|
|
|
|
*/
|
|
|
|
|
2008-09-07 22:41:17 +02:00
|
|
|
#include "../output_api.h"
|
2004-09-08 04:16:08 +02:00
|
|
|
|
|
|
|
#include <ao/ao.h>
|
2008-11-25 16:10:01 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "ao"
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
static unsigned ao_output_ref;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
struct ao_data {
|
|
|
|
size_t write_size;
|
|
|
|
int driver;
|
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
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
static void
|
|
|
|
ao_output_error(const char *msg)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-11-25 16:17:48 +01:00
|
|
|
const char *error;
|
|
|
|
|
|
|
|
switch (errno) {
|
|
|
|
case AO_ENODRIVER:
|
|
|
|
error = "No such libao driver";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_ENOTLIVE:
|
|
|
|
error = "This driver is not a libao live device";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_EBADOPTION:
|
|
|
|
error = "Invalid libao option";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_EOPENDEVICE:
|
|
|
|
error = "Cannot open the libao device";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_EFAIL:
|
|
|
|
error = "Generic libao failure";
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
error = strerror(errno);
|
2004-10-20 18:16:50 +02:00
|
|
|
}
|
2008-11-25 16:17:48 +01:00
|
|
|
|
|
|
|
g_warning("%s: %s\n", msg, error);
|
2004-10-20 18:16:50 +02:00
|
|
|
}
|
|
|
|
|
2009-01-17 20:23:27 +01:00
|
|
|
static void *
|
2009-02-25 19:08:49 +01:00
|
|
|
ao_output_init(G_GNUC_UNUSED const struct audio_format *audio_format,
|
|
|
|
const struct config_param *param)
|
2004-10-28 07:14:55 +02:00
|
|
|
{
|
2009-02-25 19:08:49 +01:00
|
|
|
struct ao_data *ad = g_new(struct ao_data, 1);
|
2006-07-20 18:02:40 +02:00
|
|
|
ao_info *ai;
|
2009-01-18 19:37:27 +01:00
|
|
|
const char *value;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
ad->options = NULL;
|
|
|
|
|
|
|
|
ad->write_size = config_get_block_unsigned(param, "write_size", 1024);
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
if (ao_output_ref == 0) {
|
2004-10-20 18:05:13 +02:00
|
|
|
ao_initialize();
|
|
|
|
}
|
2009-02-25 19:08:49 +01:00
|
|
|
ao_output_ref++;
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2009-01-18 19:37:27 +01:00
|
|
|
value = config_get_block_string(param, "driver", "default");
|
|
|
|
if (0 == strcmp(value, "default")) {
|
2009-02-25 19:08:49 +01:00
|
|
|
ad->driver = ao_default_driver_id();
|
|
|
|
} else if ((ad->driver = ao_driver_id(value)) < 0)
|
2008-11-25 16:10:01 +01:00
|
|
|
g_error("\"%s\" is not a valid ao driver at line %i\n",
|
2009-01-18 19:37:27 +01:00
|
|
|
value, param->line);
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
if ((ai = ao_driver_info(ad->driver)) == NULL) {
|
2008-11-25 16:10:01 +01:00
|
|
|
g_error("problems getting driver info for device defined at line %i\n"
|
|
|
|
"you may not have permission to the audio device\n", param->line);
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2008-11-25 16:10:01 +01:00
|
|
|
g_debug("using ao driver \"%s\" for \"%s\"\n", ai->short_name,
|
2009-02-25 17:32:58 +01:00
|
|
|
config_get_block_string(param, "name", NULL));
|
2004-11-02 19:31:54 +01:00
|
|
|
|
2009-01-18 19:37:27 +01:00
|
|
|
value = config_get_block_string(param, "options", NULL);
|
|
|
|
if (value != NULL) {
|
|
|
|
gchar **options = g_strsplit(value, ";", 0);
|
2009-01-03 13:20:12 +01:00
|
|
|
|
|
|
|
for (unsigned i = 0; options[i] != NULL; ++i) {
|
|
|
|
gchar **key_value = g_strsplit(options[i], "=", 2);
|
|
|
|
|
|
|
|
if (key_value[0] == NULL || key_value[1] == NULL)
|
|
|
|
g_error("problems parsing options \"%s\"\n",
|
|
|
|
options[i]);
|
|
|
|
|
|
|
|
ao_append_option(&ad->options, key_value[0],
|
|
|
|
key_value[1]);
|
|
|
|
|
|
|
|
g_strfreev(key_value);
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
2009-01-03 13:20:12 +01:00
|
|
|
|
|
|
|
g_strfreev(options);
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-24 07:20:55 +02:00
|
|
|
return ad;
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
static void
|
|
|
|
ao_output_finish(void *data)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-02-25 19:08:49 +01:00
|
|
|
struct ao_data *ad = (struct ao_data *)data;
|
|
|
|
|
2004-10-20 19:43:16 +02:00
|
|
|
ao_free_options(ad->options);
|
2009-01-25 18:47:21 +01:00
|
|
|
g_free(ad);
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
ao_output_ref--;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
if (ao_output_ref == 0)
|
2006-07-20 18:02:40 +02:00
|
|
|
ao_shutdown();
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
static void
|
|
|
|
ao_output_close(void *data)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-02-25 19:08:49 +01:00
|
|
|
struct ao_data *ad = (struct ao_data *)data;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-25 18:48:27 +01:00
|
|
|
ao_close(ad->device);
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
static bool
|
2009-02-25 19:08:49 +01:00
|
|
|
ao_output_open(void *data, struct audio_format *audio_format)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2004-09-08 04:16:08 +02:00
|
|
|
ao_sample_format format;
|
2009-02-25 19:08:49 +01:00
|
|
|
struct ao_data *ad = (struct ao_data *)data;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2008-12-09 07:39:24 +01:00
|
|
|
/* support for 24 bit samples in libao is currently dubious,
|
|
|
|
and until we have sorted that out, resample everything to
|
|
|
|
16 bit */
|
|
|
|
if (audio_format->bits > 16)
|
|
|
|
audio_format->bits = 16;
|
|
|
|
|
2008-09-24 07:20:36 +02:00
|
|
|
format.bits = audio_format->bits;
|
2008-10-10 14:40:54 +02:00
|
|
|
format.rate = audio_format->sample_rate;
|
2004-10-20 18:05:13 +02:00
|
|
|
format.byte_format = AO_FMT_NATIVE;
|
2008-09-24 07:20:36 +02:00
|
|
|
format.channels = audio_format->channels;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
ad->device = ao_open_live(ad->driver, &format, ad->options);
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2008-11-25 16:18:06 +01:00
|
|
|
if (ad->device == NULL) {
|
2009-02-25 19:08:49 +01:00
|
|
|
ao_output_error("Failed to open libao");
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2008-11-25 16:18:06 +01:00
|
|
|
}
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
return true;
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2008-04-12 06:15:52 +02:00
|
|
|
/**
|
|
|
|
* For whatever reason, libao wants a non-const pointer. Let's hope
|
|
|
|
* it does not write to the buffer, and use the union deconst hack to
|
|
|
|
* work around this API misdesign.
|
|
|
|
*/
|
|
|
|
static int ao_play_deconst(ao_device *device, const void *output_samples,
|
|
|
|
uint_32 num_bytes)
|
|
|
|
{
|
|
|
|
union {
|
|
|
|
const void *in;
|
|
|
|
void *out;
|
|
|
|
} u;
|
|
|
|
|
|
|
|
u.in = output_samples;
|
|
|
|
return ao_play(device, u.out, num_bytes);
|
|
|
|
}
|
|
|
|
|
2009-02-23 09:29:56 +01:00
|
|
|
static size_t
|
2009-02-25 19:08:49 +01:00
|
|
|
ao_output_play(void *data, const void *chunk, size_t size)
|
2004-10-20 18:05:13 +02:00
|
|
|
{
|
2009-02-25 19:08:49 +01:00
|
|
|
struct ao_data *ad = (struct ao_data *)data;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
if (size > ad->write_size)
|
|
|
|
size = ad->write_size;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-23 09:34:26 +01:00
|
|
|
if (ao_play_deconst(ad->device, chunk, size) == 0) {
|
2009-02-25 19:08:49 +01:00
|
|
|
ao_output_error("Closing libao device due to play error");
|
2009-02-23 09:29:56 +01:00
|
|
|
return 0;
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2009-02-23 09:29:56 +01:00
|
|
|
return size;
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
const struct audio_output_plugin ao_output_plugin = {
|
2008-09-29 15:55:17 +02:00
|
|
|
.name = "ao",
|
2009-02-25 19:08:49 +01:00
|
|
|
.init = ao_output_init,
|
|
|
|
.finish = ao_output_finish,
|
|
|
|
.open = ao_output_open,
|
|
|
|
.close = ao_output_close,
|
|
|
|
.play = ao_output_play,
|
2004-09-08 04:16:08 +02:00
|
|
|
};
|