ao_plugin.c 6 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
static void *audioOutputAo_initDriver(struct audio_output *ao,
				      mpd_unused const struct audio_format *audio_format,
				      ConfigParam * param)
80
{
Avuton Olrich's avatar
Avuton Olrich committed
81
	ao_info *ai;
82
	char *duplicated;
Avuton Olrich's avatar
Avuton Olrich committed
83 84 85 86 87 88 89 90
	char *stk1;
	char *stk2;
	char *n1;
	char *key;
	char *value;
	char *test;
	AoData *ad = newAoData();
	BlockParam *blockParam;
91

Avuton Olrich's avatar
Avuton Olrich committed
92
	if ((blockParam = getBlockParam(param, "write_size"))) {
93
		ad->writeSize = strtol(blockParam->value, &test, 10);
Avuton Olrich's avatar
Avuton Olrich committed
94
		if (*test != '\0') {
95 96
			g_error("\"%s\" is not a valid write size at line %i\n",
				blockParam->value, blockParam->line);
97
		}
Avuton Olrich's avatar
Avuton Olrich committed
98 99
	} else
		ad->writeSize = 1024;
100

Avuton Olrich's avatar
Avuton Olrich committed
101
	if (driverInitCount == 0) {
102 103 104
		ao_initialize();
	}
	driverInitCount++;
105 106 107

	blockParam = getBlockParam(param, "driver");

Avuton Olrich's avatar
Avuton Olrich committed
108
	if (!blockParam || 0 == strcmp(blockParam->value, "default")) {
109
		ad->driverId = ao_default_driver_id();
Avuton Olrich's avatar
Avuton Olrich committed
110
	} else if ((ad->driverId = ao_driver_id(blockParam->value)) < 0) {
111 112
		g_error("\"%s\" is not a valid ao driver at line %i\n",
			blockParam->value, blockParam->line);
113
	}
Avuton Olrich's avatar
Avuton Olrich committed
114 115

	if ((ai = ao_driver_info(ad->driverId)) == NULL) {
116 117
		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);
118 119
	}

120 121
	g_debug("using ao driver \"%s\" for \"%s\"\n", ai->short_name,
		audio_output_get_name(ao));
122

123 124
	blockParam = getBlockParam(param, "options");

Avuton Olrich's avatar
Avuton Olrich committed
125
	if (blockParam) {
126
		duplicated = g_strdup(blockParam->value);
Avuton Olrich's avatar
Avuton Olrich committed
127
	} else
128
		duplicated = g_strdup("");
129

130
	if (strlen(duplicated)) {
131
		stk1 = NULL;
132
		n1 = strtok_r(duplicated, ";", &stk1);
Avuton Olrich's avatar
Avuton Olrich committed
133
		while (n1) {
134
			stk2 = NULL;
Avuton Olrich's avatar
Avuton Olrich committed
135
			key = strtok_r(n1, "=", &stk2);
136
			if (!key)
137
				g_error("problems parsing options \"%s\"\n", n1);
138
			/*found = 0;
Avuton Olrich's avatar
Avuton Olrich committed
139 140 141 142 143 144 145
			   for(i=0;i<ai->option_count;i++) {
			   if(strcmp(ai->options[i],key)==0) {
			   found = 1;
			   break;
			   }
			   }
			   if(!found) {
146
			   FATAL("\"%s\" is not an option for "
Avuton Olrich's avatar
Avuton Olrich committed
147 148 149 150
			   "\"%s\" ao driver\n",key,
			   ai->short_name);
			   } */
			value = strtok_r(NULL, "", &stk2);
151
			if (!value)
152
				g_error("problems parsing options \"%s\"\n", n1);
Avuton Olrich's avatar
Avuton Olrich committed
153 154
			ao_append_option(&ad->options, key, value);
			n1 = strtok_r(NULL, ";", &stk1);
155 156
		}
	}
157
	free(duplicated);
158

159
	return ad;
160 161
}

Avuton Olrich's avatar
Avuton Olrich committed
162 163
static void freeAoData(AoData * ad)
{
164 165 166 167
	ao_free_options(ad->options);
	free(ad);
}

168
static void audioOutputAo_finishDriver(void *data)
Avuton Olrich's avatar
Avuton Olrich committed
169
{
170
	AoData *ad = (AoData *)data;
171
	freeAoData(ad);
172

173
	driverInitCount--;
174

Avuton Olrich's avatar
Avuton Olrich committed
175 176
	if (driverInitCount == 0)
		ao_shutdown();
177 178
}

179
static void audioOutputAo_dropBufferedAudio(mpd_unused void *data)
Avuton Olrich's avatar
Avuton Olrich committed
180
{
Eric Wong's avatar
Eric Wong committed
181
	/* not supported by libao */
182 183
}

184
static void audioOutputAo_closeDevice(void *data)
Avuton Olrich's avatar
Avuton Olrich committed
185
{
186
	AoData *ad = (AoData *)data;
187

Avuton Olrich's avatar
Avuton Olrich committed
188
	if (ad->device) {
189 190 191
		ao_close(ad->device);
		ad->device = NULL;
	}
192 193
}

194 195
static bool
audioOutputAo_openDevice(void *data, struct audio_format *audio_format)
Avuton Olrich's avatar
Avuton Olrich committed
196
{
197
	ao_sample_format format;
198
	AoData *ad = (AoData *)data;
199

Avuton Olrich's avatar
Avuton Olrich committed
200
	if (ad->device) {
201
		audioOutputAo_closeDevice(ad);
202 203
	}

204
	format.bits = audio_format->bits;
205
	format.rate = audio_format->sample_rate;
206
	format.byte_format = AO_FMT_NATIVE;
207
	format.channels = audio_format->channels;
208

209
	ad->device = ao_open_live(ad->driverId, &format, ad->options);
210

211 212
	if (ad->device == NULL) {
		audioOutputAo_error("Failed to open libao");
213
		return false;
214
	}
215

216
	return true;
217 218
}

219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
/**
 * 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);
}

236 237
static bool
audioOutputAo_play(void *data, const char *playChunk, size_t size)
238
{
239
	AoData *ad = (AoData *)data;
240
	size_t chunk_size;
Avuton Olrich's avatar
Avuton Olrich committed
241 242

	if (ad->device == NULL)
243
		return false;
244

Avuton Olrich's avatar
Avuton Olrich committed
245
	while (size > 0) {
246
		chunk_size = (size_t)ad->writeSize > size
247
			? size : (size_t)ad->writeSize;
Avuton Olrich's avatar
Avuton Olrich committed
248

249
		if (ao_play_deconst(ad->device, playChunk, chunk_size) == 0) {
250
			audioOutputAo_error("Closing libao device due to play error");
251
			return false;
252 253
		}

254 255
		playChunk += chunk_size;
		size -= chunk_size;
256 257
	}

258
	return true;
259 260
}

261
const struct audio_output_plugin aoPlugin = {
262 263 264 265 266 267 268
	.name = "ao",
	.init = audioOutputAo_initDriver,
	.finish = audioOutputAo_finishDriver,
	.open = audioOutputAo_openDevice,
	.play = audioOutputAo_play,
	.cancel = audioOutputAo_dropBufferedAudio,
	.close = audioOutputAo_closeDevice,
269
};