remove quality debugging code
[monky] / src / mixer.c
1 /* Conky, a system monitor, based on torsmo
2  *
3  * Any original torsmo code is licensed under the BSD license
4  *
5  * All code written since the fork of torsmo is licensed under the GPL
6  *
7  * Please see COPYING for details
8  *
9  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
10  * Copyright (c) 2005-2008 Brenden Matthews, Philip Kovacs, et. al.
11  *      (see AUTHORS)
12  * All rights reserved.
13  *
14  * This program is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation, either version 3 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  * You should have received a copy of the GNU General Public License
24  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
25  *
26  * $Id$ */
27
28 #include "conky.h"
29 #include <sys/ioctl.h>
30 #include <errno.h>
31 #include <fcntl.h>
32
33
34 #ifdef HAVE_LINUX_SOUNDCARD_H
35 #include <linux/soundcard.h>
36 #else
37 #ifdef __OpenBSD__
38 #include <soundcard.h>
39 #else
40 #include <sys/soundcard.h>
41 #endif /* __OpenBSD__ */
42 #endif /* HAVE_LINUX_SOUNDCARD_H */
43
44 #define MIXER_DEV "/dev/mixer"
45
46 static int mixer_fd;
47 static const char *devs[] = SOUND_DEVICE_NAMES;
48
49 int mixer_init(const char *name)
50 {
51         unsigned int i;
52
53         if (name == 0 || name[0] == '\0') {
54                 name = "vol";
55         }
56
57         /* open mixer */
58         if (mixer_fd <= 0) {
59                 mixer_fd = open(MIXER_DEV, O_RDONLY);
60                 if (mixer_fd == -1) {
61                         ERR("can't open %s: %s", MIXER_DEV, strerror(errno));
62                         return -1;
63                 }
64         }
65
66         for (i = 0; i < sizeof(devs) / sizeof(const char *); i++) {
67                 if (strcasecmp(devs[i], name) == 0) {
68                         return i;
69                 }
70         }
71
72         return -1;
73 }
74
75 static int mixer_get(int i)
76 {
77         static char rep = 0;
78         int val = -1;
79
80         if (ioctl(mixer_fd, MIXER_READ(i), &val) == -1) {
81                 if (!rep) {
82                         ERR("mixer ioctl: %s", strerror(errno));
83                 }
84                 rep = 1;
85                 return 0;
86         }
87         rep = 0;
88
89         return val;
90 }
91
92 int mixer_get_avg(int i)
93 {
94         int v = mixer_get(i);
95
96         return ((v >> 8) + (v & 0xFF)) / 2;
97 }
98
99 int mixer_get_left(int i)
100 {
101         return mixer_get(i) >> 8;
102 }
103
104 int mixer_get_right(int i)
105 {
106         return mixer_get(i) & 0xFF;
107 }