alsa_mixer.c 5.51 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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.
 * 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
 */
18 19

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

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

#define VOLUME_MIXER_ALSA_DEFAULT		"default"
#define VOLUME_MIXER_ALSA_CONTROL_DEFAULT	"PCM"

struct alsa_mixer {
29 30 31
	/** the base mixer class */
	struct mixer base;

32 33 34 35 36 37 38 39 40
	char *device;
	char *control;
	snd_mixer_t *handle;
	snd_mixer_elem_t *elem;
	long volume_min;
	long volume_max;
	int volume_set;
};

41
static struct mixer *
42
alsa_mixer_init(const struct config_param *param)
43
{
44 45 46
	struct alsa_mixer *am = g_new(struct alsa_mixer, 1);

	mixer_init(&am->base, &alsa_mixer);
47 48 49 50

	am->device = config_dup_block_string(param, "mixer_device", NULL);
	am->control = config_dup_block_string(param, "mixer_control", NULL);

51 52 53 54 55
	am->handle = NULL;
	am->elem = NULL;
	am->volume_min = 0;
	am->volume_max = 0;
	am->volume_set = -1;
56

57
	return &am->base;
58 59
}

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

	g_free(am->device);
	g_free(am->control);
67 68 69
	g_free(am);
}

Viliam Mateicka's avatar
Viliam Mateicka committed
70
static void
71
alsa_mixer_close(struct mixer *data)
72
{
Viliam Mateicka's avatar
Viliam Mateicka committed
73
	struct alsa_mixer *am = (struct alsa_mixer *)data;
74 75 76 77
	if (am->handle) snd_mixer_close(am->handle);
	am->handle = NULL;
}

Viliam Mateicka's avatar
Viliam Mateicka committed
78
static bool
79
alsa_mixer_open(struct mixer *data)
80
{
Viliam Mateicka's avatar
Viliam Mateicka committed
81
	struct alsa_mixer *am = (struct alsa_mixer *)data;
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
	int err;
	snd_mixer_elem_t *elem;
	const char *control_name = VOLUME_MIXER_ALSA_CONTROL_DEFAULT;
	const char *device = VOLUME_MIXER_ALSA_DEFAULT;

	if (am->device) {
		device = am->device;
	}
	err = snd_mixer_open(&am->handle, 0);
	snd_config_update_free_global();
	if (err < 0) {
		g_warning("problems opening alsa mixer: %s\n", snd_strerror(err));
		return false;
	}

	if ((err = snd_mixer_attach(am->handle, device)) < 0) {
		g_warning("problems attaching alsa mixer: %s\n",
			snd_strerror(err));
Viliam Mateicka's avatar
Viliam Mateicka committed
100
		alsa_mixer_close(data);
101 102 103 104 105 106 107
		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
108
		alsa_mixer_close(data);
109 110 111 112 113 114
		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
115
		alsa_mixer_close(data);
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
		return false;
	}

	elem = snd_mixer_first_elem(am->handle);

	if (am->control) {
		control_name = am->control;
	}

	while (elem) {
		if (snd_mixer_elem_get_type(elem) == SND_MIXER_ELEM_SIMPLE) {
			if (strcasecmp(control_name,
				       snd_mixer_selem_get_name(elem)) == 0) {
				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;
	}

	g_warning("can't find alsa mixer control \"%s\"\n", control_name);

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

149 150
static int
alsa_mixer_get_volume(struct mixer *mixer)
151
{
152 153 154 155 156 157 158 159 160 161 162 163 164 165
	struct alsa_mixer *am = (struct alsa_mixer *)mixer;
	int err;
	int ret;
	long level;

	if (am->handle == NULL && !alsa_mixer_open(mixer))
		return -1;

	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");
		alsa_mixer_close(mixer);
		return false;
166
	}
167 168 169 170 171 172 173 174 175

	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");
		alsa_mixer_close(mixer);
		return false;
176
	}
177 178 179 180 181 182 183 184

	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);
185
	}
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222

	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;

	if (am->handle == NULL && !alsa_mixer_open(mixer))
		return false;

	vol = volume;

	am->volume_set = vol + 0.5;
	am->volume_set = am->volume_set > 100
		? 100 :
		(am->volume_set < 0
		 ? 0 : am->volume_set);

	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));
		alsa_mixer_close(mixer);
		return false;
	}

	return true;
223
}
Viliam Mateicka's avatar
Viliam Mateicka committed
224

225
const struct mixer_plugin alsa_mixer = {
Viliam Mateicka's avatar
Viliam Mateicka committed
226 227 228
	.init = alsa_mixer_init,
	.finish = alsa_mixer_finish,
	.open = alsa_mixer_open,
229 230 231
	.close = alsa_mixer_close,
	.get_volume = alsa_mixer_get_volume,
	.set_volume = alsa_mixer_set_volume,
Viliam Mateicka's avatar
Viliam Mateicka committed
232
};