alsa_mixer.c 5.31 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright (C) 2003-2009 The Music Player Daemon Project
 * 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.
14 15 16 17
 *
 * 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.
18
 */
19 20

#include "../output_api.h"
21
#include "../mixer_api.h"
22 23 24 25 26 27

#include <glib.h>
#include <alsa/asoundlib.h>

#define VOLUME_MIXER_ALSA_DEFAULT		"default"
#define VOLUME_MIXER_ALSA_CONTROL_DEFAULT	"PCM"
28
#define VOLUME_MIXER_ALSA_INDEX_DEFAULT		0
29 30

struct alsa_mixer {
31 32 33
	/** the base mixer class */
	struct mixer base;

34 35
	const char *device;
	const char *control;
36
	unsigned int index;
37

38 39 40 41 42 43 44
	snd_mixer_t *handle;
	snd_mixer_elem_t *elem;
	long volume_min;
	long volume_max;
	int volume_set;
};

45
static struct mixer *
46
alsa_mixer_init(const struct config_param *param)
47
{
48 49 50
	struct alsa_mixer *am = g_new(struct alsa_mixer, 1);

	mixer_init(&am->base, &alsa_mixer);
51

52 53 54 55
	am->device = config_get_block_string(param, "mixer_device",
					     VOLUME_MIXER_ALSA_DEFAULT);
	am->control = config_get_block_string(param, "mixer_control",
					      VOLUME_MIXER_ALSA_CONTROL_DEFAULT);
56 57
	am->index = config_get_block_unsigned(param, "mixer_index",
					      VOLUME_MIXER_ALSA_INDEX_DEFAULT);
58

59
	return &am->base;
60 61
}

Viliam Mateicka's avatar
Viliam Mateicka committed
62
static void
63
alsa_mixer_finish(struct mixer *data)
64
{
Viliam Mateicka's avatar
Viliam Mateicka committed
65
	struct alsa_mixer *am = (struct alsa_mixer *)data;
66

67
	g_free(am);
68 69 70

	/* free libasound's config cache */
	snd_config_update_free_global();
71 72
}

Viliam Mateicka's avatar
Viliam Mateicka committed
73
static void
74
alsa_mixer_close(struct mixer *data)
75
{
Viliam Mateicka's avatar
Viliam Mateicka committed
76
	struct alsa_mixer *am = (struct alsa_mixer *)data;
77 78 79 80

	assert(am->handle != NULL);

	snd_mixer_close(am->handle);
81 82
}

Viliam Mateicka's avatar
Viliam Mateicka committed
83
static bool
84
alsa_mixer_open(struct mixer *data)
85
{
Viliam Mateicka's avatar
Viliam Mateicka committed
86
	struct alsa_mixer *am = (struct alsa_mixer *)data;
87 88 89
	int err;
	snd_mixer_elem_t *elem;

90 91
	am->volume_set = -1;

92 93 94 95 96 97
	err = snd_mixer_open(&am->handle, 0);
	if (err < 0) {
		g_warning("problems opening alsa mixer: %s\n", snd_strerror(err));
		return false;
	}

98
	if ((err = snd_mixer_attach(am->handle, am->device)) < 0) {
99 100
		g_warning("problems attaching alsa mixer: %s\n",
			snd_strerror(err));
Viliam Mateicka's avatar
Viliam Mateicka committed
101
		alsa_mixer_close(data);
102 103 104 105 106 107 108
		return false;
	}

	if ((err = snd_mixer_selem_register(am->handle, NULL,
		    NULL)) < 0) {
		g_warning("problems snd_mixer_selem_register'ing: %s\n",
			snd_strerror(err));
Viliam Mateicka's avatar
Viliam Mateicka committed
109
		alsa_mixer_close(data);
110 111 112 113 114 115
		return false;
	}

	if ((err = snd_mixer_load(am->handle)) < 0) {
		g_warning("problems snd_mixer_selem_register'ing: %s\n",
			snd_strerror(err));
Viliam Mateicka's avatar
Viliam Mateicka committed
116
		alsa_mixer_close(data);
117 118 119 120 121 122 123
		return false;
	}

	elem = snd_mixer_first_elem(am->handle);

	while (elem) {
		if (snd_mixer_elem_get_type(elem) == SND_MIXER_ELEM_SIMPLE) {
124 125
			if ((g_ascii_strcasecmp(am->control,
						snd_mixer_selem_get_name(elem)) == 0) &&
126
			    (am->index == snd_mixer_selem_get_index(elem))) {
127 128 129 130 131 132 133 134 135 136 137 138 139 140
				break;
			}
		}
		elem = snd_mixer_elem_next(elem);
	}

	if (elem) {
		am->elem = elem;
		snd_mixer_selem_get_playback_volume_range(am->elem,
							  &am->volume_min,
							  &am->volume_max);
		return true;
	}

141
	g_warning("can't find alsa mixer control \"%s\"\n", am->control);
142

Viliam Mateicka's avatar
Viliam Mateicka committed
143
	alsa_mixer_close(data);
144 145 146
	return false;
}

147 148
static int
alsa_mixer_get_volume(struct mixer *mixer)
149
{
150 151 152 153 154
	struct alsa_mixer *am = (struct alsa_mixer *)mixer;
	int err;
	int ret;
	long level;

155
	assert(am->handle != NULL);
156 157 158 159 160 161

	err = snd_mixer_handle_events(am->handle);
	if (err < 0) {
		g_warning("problems getting alsa volume: %s (snd_mixer_%s)\n",
			  snd_strerror(err), "handle_events");
		return false;
162
	}
163 164 165 166 167 168 169 170

	err = snd_mixer_selem_get_playback_volume(am->elem,
						  SND_MIXER_SCHN_FRONT_LEFT,
						  &level);
	if (err < 0) {
		g_warning("problems getting alsa volume: %s (snd_mixer_%s)\n",
			  snd_strerror(err), "selem_get_playback_volume");
		return false;
171
	}
172 173 174 175 176 177 178 179

	ret = ((am->volume_set / 100.0) * (am->volume_max - am->volume_min)
	       + am->volume_min) + 0.5;
	if (am->volume_set > 0 && ret == level) {
		ret = am->volume_set;
	} else {
		ret = (int)(100 * (((float)(level - am->volume_min)) /
				   (am->volume_max - am->volume_min)) + 0.5);
180
	}
181 182 183 184 185 186 187 188 189 190 191 192

	return ret;
}

static bool
alsa_mixer_set_volume(struct mixer *mixer, unsigned volume)
{
	struct alsa_mixer *am = (struct alsa_mixer *)mixer;
	float vol;
	long level;
	int err;

193
	assert(am->handle != NULL);
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211

	vol = volume;

	am->volume_set = vol + 0.5;

	level = (long)(((vol / 100.0) * (am->volume_max - am->volume_min) +
			am->volume_min) + 0.5);
	level = level > am->volume_max ? am->volume_max : level;
	level = level < am->volume_min ? am->volume_min : level;

	err = snd_mixer_selem_set_playback_volume_all(am->elem, level);
	if (err < 0) {
		g_warning("problems setting alsa volume: %s\n",
			  snd_strerror(err));
		return false;
	}

	return true;
212
}
Viliam Mateicka's avatar
Viliam Mateicka committed
213

214
const struct mixer_plugin alsa_mixer = {
Viliam Mateicka's avatar
Viliam Mateicka committed
215 216 217
	.init = alsa_mixer_init,
	.finish = alsa_mixer_finish,
	.open = alsa_mixer_open,
218 219 220
	.close = alsa_mixer_close,
	.get_volume = alsa_mixer_get_volume,
	.set_volume = alsa_mixer_set_volume,
221
	.global = true,
Viliam Mateicka's avatar
Viliam Mateicka committed
222
};