2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2010-01-01 05:55:13 +01:00
|
|
|
* Copyright (C) 2003-2010 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-09-08 04:16:08 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-09-08 04:16:08 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
|
|
|
#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
|
|
|
|
2011-02-13 02:37:28 +01:00
|
|
|
/* An ao_sample_format, with all fields set to zero: */
|
|
|
|
static const ao_sample_format OUR_AO_FORMAT_INITIALIZER;
|
|
|
|
|
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-26 22:04:59 +01:00
|
|
|
static inline GQuark
|
|
|
|
ao_output_quark(void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string("ao_output");
|
|
|
|
}
|
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
static void
|
2009-02-26 22:04:59 +01:00
|
|
|
ao_output_error(GError **error_r)
|
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
|
|
|
|
2009-02-26 22:04:59 +01:00
|
|
|
g_set_error(error_r, ao_output_quark(), errno,
|
|
|
|
"%s", 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,
|
2009-02-26 22:04:59 +01:00
|
|
|
const struct config_param *param,
|
|
|
|
GError **error)
|
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");
|
2009-02-26 22:04:59 +01:00
|
|
|
if (0 == strcmp(value, "default"))
|
2009-02-25 19:08:49 +01:00
|
|
|
ad->driver = ao_default_driver_id();
|
2009-02-26 22:04:59 +01:00
|
|
|
else
|
|
|
|
ad->driver = ao_driver_id(value);
|
|
|
|
|
|
|
|
if (ad->driver < 0) {
|
|
|
|
g_set_error(error, ao_output_quark(), 0,
|
|
|
|
"\"%s\" is not a valid ao driver",
|
|
|
|
value);
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
if ((ai = ao_driver_info(ad->driver)) == NULL) {
|
2009-02-26 22:04:59 +01:00
|
|
|
g_set_error(error, ao_output_quark(), 0,
|
|
|
|
"problems getting driver info");
|
|
|
|
return NULL;
|
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);
|
|
|
|
|
2009-02-26 22:04:59 +01:00
|
|
|
if (key_value[0] == NULL || key_value[1] == NULL) {
|
|
|
|
g_set_error(error, ao_output_quark(), 0,
|
|
|
|
"problems parsing options \"%s\"",
|
|
|
|
options[i]);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-01-03 13:20:12 +01:00
|
|
|
|
|
|
|
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-26 22:04:59 +01:00
|
|
|
ao_output_open(void *data, struct audio_format *audio_format,
|
|
|
|
GError **error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2011-02-13 02:37:28 +01:00
|
|
|
ao_sample_format format = OUR_AO_FORMAT_INITIALIZER;
|
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-11-10 17:11:34 +01:00
|
|
|
switch (audio_format->format) {
|
|
|
|
case SAMPLE_FORMAT_S8:
|
|
|
|
format.bits = 8;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SAMPLE_FORMAT_S16:
|
|
|
|
format.bits = 16;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* support for 24 bit samples in libao is currently
|
|
|
|
dubious, and until we have sorted that out,
|
|
|
|
convert everything to 16 bit */
|
|
|
|
audio_format->format = SAMPLE_FORMAT_S16;
|
|
|
|
format.bits = 16;
|
|
|
|
break;
|
|
|
|
}
|
2008-12-09 07:39:24 +01:00
|
|
|
|
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-26 22:04:59 +01:00
|
|
|
ao_output_error(error);
|
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-26 22:04:59 +01:00
|
|
|
ao_output_play(void *data, const void *chunk, size_t size,
|
|
|
|
GError **error)
|
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-26 22:04:59 +01:00
|
|
|
ao_output_error(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
|
|
|
};
|