2 * This file is part of DisOrder
3 * Copyright (C) 2004, 2007 Richard Kettlewell
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
31 #include <sys/ioctl.h>
33 #include "configuration.h"
38 #if HAVE_SYS_SOUNDCARD_H
39 #include <sys/soundcard.h>
41 /* documentation does not match implementation! */
42 #ifndef SOUND_MIXER_READ
43 # define SOUND_MIXER_READ(x) MIXER_READ(x)
45 #ifndef SOUND_MIXER_WRITE
46 # define SOUND_MIXER_WRITE(x) MIXER_WRITE(x)
49 static const char *channels[] = SOUND_DEVICE_NAMES;
51 static int mixer_channel(const char *c) {
54 if(!c[strspn(c, "0123456789")])
57 for(n = 0; n < sizeof channels / sizeof *channels; ++n)
58 if(!strcmp(channels[n], c))
64 static int oss_validate_channel(const char *c) {
65 if(mixer_channel(c) != -1)
71 static int oss_validate_device(const char *d) {
74 if(stat(d, &sb) < 0) {
75 error(errno, "%s", d);
78 if(!S_ISCHR(sb.st_mode)) {
79 error(0, "%s: not a character device", d);
85 static int oss_do_open(void) {
88 if((fd = open(config->mixer, O_RDWR, 0)) < 0)
89 error(errno, "error opening %s", config->mixer);
93 static int oss_do_get(int *left, int *right, int fd, int ch) {
96 if(ioctl(fd, SOUND_MIXER_READ(ch), &r) == -1) {
97 error(errno, "error reading %s channel %s",
98 config->mixer, config->channel);
102 *right = (r >> 8) & 0xff;
106 static int oss_get(int *left, int *right) {
111 && (ch = mixer_channel(config->channel)) != -1) {
112 if((fd = oss_do_open()) < 0)
114 if(oss_do_get(left, right, fd, ch) < 0) {
124 static int oss_set(int *left, int *right) {
129 && (ch = mixer_channel(config->channel)) != -1) {
130 if((fd = oss_do_open()) < 0)
132 r = (*left & 0xff) + (*right & 0xff) * 256;
133 if(ioctl(fd, SOUND_MIXER_WRITE(ch), &r) == -1) {
134 error(errno, "error changing %s channel %s",
135 config->mixer, config->channel);
139 if(oss_do_get(left, right, fd, ch) < 0) {
149 const struct mixer mixer_oss = {
152 oss_validate_channel,