2009-01-25 17:37:50 +01:00
|
|
|
/*
|
|
|
|
* 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.
|
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.
|
2009-01-25 17:37:50 +01:00
|
|
|
*/
|
2008-12-31 16:46:41 +01:00
|
|
|
|
|
|
|
#include "../output_api.h"
|
2009-01-04 17:35:51 +01:00
|
|
|
#include "../mixer_api.h"
|
2008-12-31 16:46:41 +01:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <alsa/asoundlib.h>
|
|
|
|
|
|
|
|
#define VOLUME_MIXER_ALSA_DEFAULT "default"
|
|
|
|
#define VOLUME_MIXER_ALSA_CONTROL_DEFAULT "PCM"
|
|
|
|
|
|
|
|
struct alsa_mixer {
|
2009-01-25 17:45:16 +01:00
|
|
|
/** the base mixer class */
|
|
|
|
struct mixer base;
|
|
|
|
|
2009-03-26 19:48:55 +01:00
|
|
|
const char *device;
|
|
|
|
const char *control;
|
|
|
|
|
2008-12-31 16:46:41 +01:00
|
|
|
snd_mixer_t *handle;
|
|
|
|
snd_mixer_elem_t *elem;
|
|
|
|
long volume_min;
|
|
|
|
long volume_max;
|
|
|
|
int volume_set;
|
|
|
|
};
|
|
|
|
|
2009-01-25 17:45:16 +01:00
|
|
|
static struct mixer *
|
2009-01-25 17:38:12 +01:00
|
|
|
alsa_mixer_init(const struct config_param *param)
|
2008-12-31 16:46:41 +01:00
|
|
|
{
|
2009-01-25 17:45:16 +01:00
|
|
|
struct alsa_mixer *am = g_new(struct alsa_mixer, 1);
|
|
|
|
|
|
|
|
mixer_init(&am->base, &alsa_mixer);
|
2009-01-25 17:38:12 +01:00
|
|
|
|
2009-03-26 19:49:26 +01:00
|
|
|
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);
|
2009-01-25 17:38:12 +01:00
|
|
|
|
2009-01-25 17:45:16 +01:00
|
|
|
return &am->base;
|
2008-12-31 16:46:41 +01:00
|
|
|
}
|
|
|
|
|
2009-01-10 17:53:33 +01:00
|
|
|
static void
|
2009-01-25 17:45:16 +01:00
|
|
|
alsa_mixer_finish(struct mixer *data)
|
2008-12-31 16:46:41 +01:00
|
|
|
{
|
2009-01-10 17:53:33 +01:00
|
|
|
struct alsa_mixer *am = (struct alsa_mixer *)data;
|
2009-01-18 18:55:51 +01:00
|
|
|
|
2008-12-31 16:46:41 +01:00
|
|
|
g_free(am);
|
|
|
|
}
|
|
|
|
|
2009-01-10 17:53:33 +01:00
|
|
|
static void
|
2009-01-25 17:45:16 +01:00
|
|
|
alsa_mixer_close(struct mixer *data)
|
2008-12-31 16:46:41 +01:00
|
|
|
{
|
2009-01-10 17:53:33 +01:00
|
|
|
struct alsa_mixer *am = (struct alsa_mixer *)data;
|
2009-03-26 19:49:31 +01:00
|
|
|
|
|
|
|
assert(am->handle != NULL);
|
|
|
|
|
|
|
|
snd_mixer_close(am->handle);
|
2008-12-31 16:46:41 +01:00
|
|
|
}
|
|
|
|
|
2009-01-10 17:53:33 +01:00
|
|
|
static bool
|
2009-01-25 17:45:16 +01:00
|
|
|
alsa_mixer_open(struct mixer *data)
|
2008-12-31 16:46:41 +01:00
|
|
|
{
|
2009-01-10 17:53:33 +01:00
|
|
|
struct alsa_mixer *am = (struct alsa_mixer *)data;
|
2008-12-31 16:46:41 +01:00
|
|
|
int err;
|
|
|
|
snd_mixer_elem_t *elem;
|
|
|
|
|
2009-03-26 19:49:36 +01:00
|
|
|
am->volume_set = -1;
|
|
|
|
|
2008-12-31 16:46:41 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-03-26 19:49:26 +01:00
|
|
|
if ((err = snd_mixer_attach(am->handle, am->device)) < 0) {
|
2008-12-31 16:46:41 +01:00
|
|
|
g_warning("problems attaching alsa mixer: %s\n",
|
|
|
|
snd_strerror(err));
|
2009-01-10 17:53:33 +01:00
|
|
|
alsa_mixer_close(data);
|
2008-12-31 16:46:41 +01:00
|
|
|
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));
|
2009-01-10 17:53:33 +01:00
|
|
|
alsa_mixer_close(data);
|
2008-12-31 16:46:41 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((err = snd_mixer_load(am->handle)) < 0) {
|
|
|
|
g_warning("problems snd_mixer_selem_register'ing: %s\n",
|
|
|
|
snd_strerror(err));
|
2009-01-10 17:53:33 +01:00
|
|
|
alsa_mixer_close(data);
|
2008-12-31 16:46:41 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
elem = snd_mixer_first_elem(am->handle);
|
|
|
|
|
|
|
|
while (elem) {
|
|
|
|
if (snd_mixer_elem_get_type(elem) == SND_MIXER_ELEM_SIMPLE) {
|
2009-03-26 19:49:26 +01:00
|
|
|
if (strcasecmp(am->control,
|
2008-12-31 16:46:41 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-03-26 19:49:26 +01:00
|
|
|
g_warning("can't find alsa mixer control \"%s\"\n", am->control);
|
2008-12-31 16:46:41 +01:00
|
|
|
|
2009-01-10 17:53:33 +01:00
|
|
|
alsa_mixer_close(data);
|
2008-12-31 16:46:41 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-02-16 01:39:52 +01:00
|
|
|
static int
|
|
|
|
alsa_mixer_get_volume(struct mixer *mixer)
|
2008-12-31 16:46:41 +01:00
|
|
|
{
|
2009-02-16 01:39:52 +01:00
|
|
|
struct alsa_mixer *am = (struct alsa_mixer *)mixer;
|
|
|
|
int err;
|
|
|
|
int ret;
|
|
|
|
long level;
|
|
|
|
|
2009-03-26 19:49:31 +01:00
|
|
|
assert(am->handle != NULL);
|
2009-02-16 01:39:52 +01:00
|
|
|
|
|
|
|
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;
|
2008-12-31 16:46:41 +01:00
|
|
|
}
|
2009-02-16 01:39:52 +01:00
|
|
|
|
|
|
|
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;
|
2008-12-31 16:46:41 +01:00
|
|
|
}
|
2009-02-16 01:39:52 +01:00
|
|
|
|
|
|
|
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);
|
2008-12-31 16:46:41 +01:00
|
|
|
}
|
2009-02-16 01:39:52 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2009-03-26 19:49:31 +01:00
|
|
|
assert(am->handle != NULL);
|
2009-02-16 01:39:52 +01:00
|
|
|
|
|
|
|
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;
|
2008-12-31 16:46:41 +01:00
|
|
|
}
|
2009-01-10 17:53:33 +01:00
|
|
|
|
2009-01-25 17:37:52 +01:00
|
|
|
const struct mixer_plugin alsa_mixer = {
|
2009-01-10 17:53:33 +01:00
|
|
|
.init = alsa_mixer_init,
|
|
|
|
.finish = alsa_mixer_finish,
|
|
|
|
.open = alsa_mixer_open,
|
2009-02-16 01:39:52 +01:00
|
|
|
.close = alsa_mixer_close,
|
|
|
|
.get_volume = alsa_mixer_get_volume,
|
|
|
|
.set_volume = alsa_mixer_set_volume,
|
2009-03-26 19:43:18 +01:00
|
|
|
.global = true,
|
2009-01-10 17:53:33 +01:00
|
|
|
};
|