Mercurial > audlegacy-plugins
diff src/Output/OSS/mixer.c @ 0:13389e613d67 trunk
[svn] - initial import of audacious-plugins tree (lots to do)
| author | nenolod |
|---|---|
| date | Mon, 18 Sep 2006 01:11:49 -0700 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/Output/OSS/mixer.c Mon Sep 18 01:11:49 2006 -0700 @@ -0,0 +1,110 @@ +/* BMP - Cross-platform multimedia player + * Copyright (C) 2003-2004 BMP development team. + * + * Based on XMMS: + * Copyright (C) 1998-2003 XMMS development team. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + + +#include <glib.h> +#include <stdio.h> +#include <string.h> + +#include <unistd.h> +#include <fcntl.h> +#include <errno.h> +#include <sys/ioctl.h> + +#include "OSS.h" + + +static char * +get_mixer_device(void) +{ + char *name; + + if (oss_cfg.use_alt_mixer_device && oss_cfg.alt_mixer_device) + name = g_strdup(oss_cfg.alt_mixer_device); + else if (oss_cfg.mixer_device > 0) + name = g_strdup_printf("%s%d", DEV_MIXER, oss_cfg.mixer_device); + else + name = g_strdup(DEV_MIXER); + + return name; +} + +void +oss_get_volume(int *l, int *r) +{ + int fd, v, devs; + long cmd; + gchar *devname; + + devname = get_mixer_device(); + fd = open(devname, O_RDONLY); + g_free(devname); + + /* + * We dont show any errors if this fails, as this is called + * rather often + */ + if (fd != -1) { + ioctl(fd, SOUND_MIXER_READ_DEVMASK, &devs); + if ((devs & SOUND_MASK_PCM) && (oss_cfg.use_master == 0)) + cmd = SOUND_MIXER_READ_PCM; + else if ((devs & SOUND_MASK_VOLUME) && (oss_cfg.use_master == 1)) + cmd = SOUND_MIXER_READ_VOLUME; + else { + close(fd); + return; + } + ioctl(fd, cmd, &v); + *r = (v & 0xFF00) >> 8; + *l = (v & 0x00FF); + close(fd); + } +} + +void +oss_set_volume(int l, int r) +{ + int fd, v, devs; + long cmd; + gchar *devname; + + devname = get_mixer_device(); + fd = open(devname, O_RDONLY); + + if (fd != -1) { + ioctl(fd, SOUND_MIXER_READ_DEVMASK, &devs); + if ((devs & SOUND_MASK_PCM) && (oss_cfg.use_master == 0)) + cmd = SOUND_MIXER_WRITE_PCM; + else if ((devs & SOUND_MASK_VOLUME) && (oss_cfg.use_master == 1)) + cmd = SOUND_MIXER_WRITE_VOLUME; + else { + close(fd); + return; + } + v = (r << 8) | l; + ioctl(fd, cmd, &v); + close(fd); + } + else + g_warning("oss_set_volume(): Failed to open mixer device (%s): %s", + devname, strerror(errno)); + g_free(devname); +}
