ao_plugin.c 5.49 KB
Newer Older
1
/* the Music Player Daemon (MPD)
2
 * Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * 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
 */

19
#include "../output_api.h"
20 21

#include <ao/ao.h>
22 23 24 25
#include <glib.h>

#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "ao"
26

27
static int driverInitCount;
28

29 30 31
typedef struct _AoData {
	int writeSize;
	int driverId;
Avuton Olrich's avatar
Avuton Olrich committed
32 33
	ao_option *options;
	ao_device *device;
34
} AoData;
35

Eric Wong's avatar
Eric Wong committed
36
static AoData *newAoData(void)
Avuton Olrich's avatar
Avuton Olrich committed
37
{
38
	AoData *ret = g_malloc(sizeof(AoData));
39 40
	ret->device = NULL;
	ret->options = NULL;
41

42 43 44
	return ret;
}

45
static void audioOutputAo_error(const char *msg)
Avuton Olrich's avatar
Avuton Olrich committed
46
{
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
	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);
72
	}
73 74

	g_warning("%s: %s\n", msg, error);
75 76
}

77 78 79 80
static void *
audioOutputAo_initDriver(struct audio_output *ao,
			 G_GNUC_UNUSED const struct audio_format *audio_format,
			 struct config_param *param)
81
{
Avuton Olrich's avatar
Avuton Olrich committed
82 83
	ao_info *ai;
	AoData *ad = newAoData();
84
	const char *value;
85

86
	ad->writeSize = config_get_block_unsigned(param, "write_size", 1024);
87

Avuton Olrich's avatar
Avuton Olrich committed
88
	if (driverInitCount == 0) {
89 90 91
		ao_initialize();
	}
	driverInitCount++;
92

93 94
	value = config_get_block_string(param, "driver", "default");
	if (0 == strcmp(value, "default")) {
95
		ad->driverId = ao_default_driver_id();
96
	} else if ((ad->driverId = ao_driver_id(value)) < 0)
97
		g_error("\"%s\" is not a valid ao driver at line %i\n",
98
			value, param->line);
Avuton Olrich's avatar
Avuton Olrich committed
99 100

	if ((ai = ao_driver_info(ad->driverId)) == NULL) {
101 102
		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);
103 104
	}

105 106
	g_debug("using ao driver \"%s\" for \"%s\"\n", ai->short_name,
		audio_output_get_name(ao));
107

108 109 110
	value = config_get_block_string(param, "options", NULL);
	if (value != NULL) {
		gchar **options = g_strsplit(value, ";", 0);
111 112 113 114 115 116 117 118 119 120 121 122

		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);
123
		}
124 125

		g_strfreev(options);
126
	}
127

128
	return ad;
129 130
}

Avuton Olrich's avatar
Avuton Olrich committed
131 132
static void freeAoData(AoData * ad)
{
133 134 135 136
	ao_free_options(ad->options);
	free(ad);
}

137
static void audioOutputAo_finishDriver(void *data)
Avuton Olrich's avatar
Avuton Olrich committed
138
{
139
	AoData *ad = (AoData *)data;
140
	freeAoData(ad);
141

142
	driverInitCount--;
143

Avuton Olrich's avatar
Avuton Olrich committed
144 145
	if (driverInitCount == 0)
		ao_shutdown();
146 147
}

148
static void audioOutputAo_dropBufferedAudio(G_GNUC_UNUSED void *data)
Avuton Olrich's avatar
Avuton Olrich committed
149
{
Eric Wong's avatar
Eric Wong committed
150
	/* not supported by libao */
151 152
}

153
static void audioOutputAo_closeDevice(void *data)
Avuton Olrich's avatar
Avuton Olrich committed
154
{
155
	AoData *ad = (AoData *)data;
156

Avuton Olrich's avatar
Avuton Olrich committed
157
	if (ad->device) {
158 159 160
		ao_close(ad->device);
		ad->device = NULL;
	}
161 162
}

163 164
static bool
audioOutputAo_openDevice(void *data, struct audio_format *audio_format)
Avuton Olrich's avatar
Avuton Olrich committed
165
{
166
	ao_sample_format format;
167
	AoData *ad = (AoData *)data;
168

Avuton Olrich's avatar
Avuton Olrich committed
169
	if (ad->device) {
170
		audioOutputAo_closeDevice(ad);
171 172
	}

173 174 175 176 177 178
	/* 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;

179
	format.bits = audio_format->bits;
180
	format.rate = audio_format->sample_rate;
181
	format.byte_format = AO_FMT_NATIVE;
182
	format.channels = audio_format->channels;
183

184
	ad->device = ao_open_live(ad->driverId, &format, ad->options);
185

186 187
	if (ad->device == NULL) {
		audioOutputAo_error("Failed to open libao");
188
		return false;
189
	}
190

191
	return true;
192 193
}

194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
/**
 * 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);
}

211 212
static bool
audioOutputAo_play(void *data, const char *playChunk, size_t size)
213
{
214
	AoData *ad = (AoData *)data;
215
	size_t chunk_size;
Avuton Olrich's avatar
Avuton Olrich committed
216 217

	if (ad->device == NULL)
218
		return false;
219

Avuton Olrich's avatar
Avuton Olrich committed
220
	while (size > 0) {
221
		chunk_size = (size_t)ad->writeSize > size
222
			? size : (size_t)ad->writeSize;
Avuton Olrich's avatar
Avuton Olrich committed
223

224
		if (ao_play_deconst(ad->device, playChunk, chunk_size) == 0) {
225
			audioOutputAo_error("Closing libao device due to play error");
226
			return false;
227 228
		}

229 230
		playChunk += chunk_size;
		size -= chunk_size;
231 232
	}

233
	return true;
234 235
}

236
const struct audio_output_plugin aoPlugin = {
237 238 239 240 241 242 243
	.name = "ao",
	.init = audioOutputAo_initDriver,
	.finish = audioOutputAo_finishDriver,
	.open = audioOutputAo_openDevice,
	.play = audioOutputAo_play,
	.cancel = audioOutputAo_dropBufferedAudio,
	.close = audioOutputAo_closeDevice,
244
};