~blackskad/gnomeradio/dev-vol-button

« back to all changes in this revision

Viewing changes to src/tech.c

  • Committer: mfcn
  • Date: 2003-01-08 17:19:21 UTC
  • Revision ID: svn-v3-trunk0:ba97a3d1-ec25-0410-b1c6-e06ad936ea6c:trunk:2
Initial revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  This program is free software; you can redistribute it and/or modify
 
3
 *  it under the terms of the GNU General Public License as published by
 
4
 *  the Free Software Foundation; either version 2 of the License, or
 
5
 *  (at your option) any later version.
 
6
 *
 
7
 *  This program is distributed in the hope that it will be useful,
 
8
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
 *  GNU Library General Public License for more details.
 
11
 *
 
12
 *  You should have received a copy of the GNU General Public License
 
13
 *  along with this program; if not, write to the Free Software
 
14
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
15
 */
 
16
 
 
17
#include "tech.h"
 
18
 
 
19
static int freq_fact, fd = -1, mixer_fd = -1, mixer_src = -1;
 
20
static char *devices[] = SOUND_DEVICE_NAMES;
 
21
 
 
22
/*
 
23
 * These functions handle the mixer device
 
24
 */
 
25
 
 
26
int mixer_init(char *mixer_device, char *mixer_source)
 
27
{
 
28
        int i;
 
29
        
 
30
        mixer_src = -1;
 
31
        
 
32
        for (i=0;i<SOUND_MIXER_NRDEVICES;i++)
 
33
                if (strcmp(mixer_source, devices[i]) == 0) 
 
34
                        mixer_src = i;
 
35
 
 
36
        mixer_fd = open(mixer_device, O_RDWR);
 
37
 
 
38
        if (mixer_src < 0)      
 
39
                return -1;
 
40
                        
 
41
        if (mixer_fd < 0)
 
42
                return 0;
 
43
        return 1;
 
44
}
 
45
 
 
46
char* mixer_get_sndcard_name(void)
 
47
{
 
48
        mixer_info info;
 
49
        char *result = NULL;
 
50
 
 
51
        if (ioctl(mixer_fd, SOUND_MIXER_INFO, &info) == -1)
 
52
                return NULL;
 
53
 
 
54
        result = strdup(info.name);     
 
55
        
 
56
        return result;
 
57
}
 
58
 
 
59
char** mixer_get_rec_devices(void)
 
60
{
 
61
        int i, o, devmask, res;
 
62
        char** result;
 
63
        
 
64
        if ((ioctl(mixer_fd, SOUND_MIXER_READ_RECMASK, &devmask)) == -1)
 
65
                return NULL;
 
66
        else
 
67
        {
 
68
                result = malloc(sizeof(char*)*SOUND_MIXER_NRDEVICES);
 
69
                o = 0;
 
70
                for (i=0;i<SOUND_MIXER_NRDEVICES;i++)
 
71
                        {
 
72
                                res = (devmask >> i)%2;
 
73
                                if (res)
 
74
                                {
 
75
                                        result[o] = malloc(strlen(devices[i])+1);
 
76
                                        sprintf(result[o], "%s", devices[i]); 
 
77
                                        o++;
 
78
                                }
 
79
                                result[o] = NULL;       
 
80
                        }
 
81
        }
 
82
        return result;
 
83
}
 
84
 
 
85
int mixer_set_rec_device(void)
 
86
{
 
87
        int devmask, recmask;
 
88
 
 
89
        if (mixer_fd <= 0)
 
90
                return 0;
 
91
 
 
92
        if (mixer_src < 0)
 
93
                return 0;
 
94
 
 
95
        if ((ioctl(mixer_fd, SOUND_MIXER_READ_RECMASK, &devmask)) == -1)
 
96
                return 0;
 
97
        
 
98
        recmask = 1 << mixer_src;
 
99
        if (!(recmask & devmask))
 
100
                return 0;
 
101
 
 
102
        if ((ioctl(mixer_fd, SOUND_MIXER_WRITE_RECSRC, &recmask)) == -1)
 
103
                return 0;
 
104
 
 
105
        return 1;
 
106
}                       
 
107
 
 
108
int mixer_close(void)
 
109
{
 
110
        if (mixer_fd > 0)
 
111
                close(mixer_fd);
 
112
        
 
113
        return 1;
 
114
}
 
115
                
 
116
int mixer_set_volume(int volume)
 
117
{
 
118
        int i_vol;
 
119
        if (mixer_fd<0)
 
120
                return -1;
 
121
 
 
122
        assert(volume <= 100);
 
123
        assert(volume >= 0);
 
124
 
 
125
 
 
126
        if (mixer_src<0) 
 
127
                return -1;
 
128
        
 
129
        i_vol = volume;  
 
130
        i_vol += volume << 8;
 
131
 
 
132
        //printf("Setting %s to vol %i\n", devices[mixer_src], volume);
 
133
        if ((ioctl(mixer_fd, MIXER_WRITE(mixer_src), &i_vol)) < 0)
 
134
                return 0;
 
135
                
 
136
        return 1;
 
137
}
 
138
 
 
139
int mixer_get_volume(void)
 
140
{
 
141
        int i_vol = 0, r, l, volume;
 
142
        
 
143
        if (mixer_fd<0)
 
144
                return -1;
 
145
 
 
146
        if (mixer_src<0) 
 
147
                return -1;
 
148
        
 
149
        if ((ioctl(mixer_fd, MIXER_READ(mixer_src), &i_vol)) < 0)
 
150
                return 0;
 
151
 
 
152
        r = i_vol >> 8;
 
153
        l = i_vol % (1 << 8);
 
154
        volume = (r + l)/2;
 
155
        //printf("%d %d %d %d\n", r, l, volume, i_vol);
 
156
        
 
157
        assert((volume >= 0) && (volume <= 100));
 
158
        
 
159
        return volume;
 
160
}
 
161
 
 
162
/*
 
163
 * These functions handle the radio device
 
164
 */
 
165
 
 
166
int radio_init(char *device)
 
167
{
 
168
        struct video_tuner tuner;
 
169
        
 
170
        if ((fd = open(device, O_RDONLY))< 0)
 
171
                return 0;
 
172
        
 
173
        tuner.tuner = 0;
 
174
        if (ioctl (fd, VIDIOCGTUNER, &tuner) < 0)
 
175
                freq_fact = 16;
 
176
        else
 
177
        {
 
178
                if ((tuner.flags & VIDEO_TUNER_LOW) == 0)
 
179
                        freq_fact = 16;
 
180
                else 
 
181
                        freq_fact = 16000;
 
182
        }               
 
183
        
 
184
        
 
185
        
 
186
        radio_unmute();
 
187
        
 
188
        return 1;
 
189
}
 
190
 
 
191
void radio_stop(void)
 
192
{
 
193
        radio_mute();
 
194
        
 
195
        if (fd > 0)
 
196
                close(fd);
 
197
}
 
198
 
 
199
int radio_setfreq(float freq)
 
200
{
 
201
    int ifreq = (freq+1.0/32)*freq_fact;
 
202
    if (fd<0)
 
203
        return 0;
 
204
    
 
205
#if 0
 
206
        printf("Setting to %i (= %.2f)\n", ifreq, freq);
 
207
#endif
 
208
        
 
209
        if ((freq > 108) || (freq < 65))
 
210
                return 1;
 
211
 
 
212
        assert ((freq <= 108) && (freq > 65));
 
213
 
 
214
    return ioctl(fd, VIDIOCSFREQ, &ifreq);
 
215
}
 
216
 
 
217
void radio_unmute(void)
 
218
{
 
219
    struct video_audio vid_aud;
 
220
 
 
221
    if (fd<0)
 
222
        return;
 
223
 
 
224
    if (ioctl(fd, VIDIOCGAUDIO, &vid_aud))
 
225
                perror("VIDIOCGAUDIO");
 
226
    //if (vid_aud.volume == 0)
 
227
        vid_aud.volume = 0xFFFF;
 
228
    vid_aud.flags &= ~VIDEO_AUDIO_MUTE;
 
229
        vid_aud.mode = VIDEO_SOUND_STEREO;
 
230
        
 
231
    if (ioctl(fd, VIDIOCSAUDIO, &vid_aud))
 
232
                perror("VIDIOCSAUDIO");
 
233
}
 
234
 
 
235
void radio_mute(void)
 
236
{
 
237
    struct video_audio vid_aud;
 
238
 
 
239
    if (fd<0)
 
240
        return;
 
241
 
 
242
    if (ioctl(fd, VIDIOCGAUDIO, &vid_aud))
 
243
                perror("VIDIOCGAUDIO");
 
244
    vid_aud.flags |= VIDEO_AUDIO_MUTE;
 
245
    if (ioctl(fd, VIDIOCSAUDIO, &vid_aud))
 
246
                perror("VIDIOCSAUDIO");
 
247
}
 
248
 
 
249
int radio_getstereo()
 
250
{
 
251
    struct video_audio va;
 
252
    va.mode=-1;
 
253
 
 
254
    if (fd<0)
 
255
        return -1;
 
256
    
 
257
    if (ioctl (fd, VIDIOCGAUDIO, &va) < 0)
 
258
                return -1;
 
259
        if (va.mode == VIDEO_SOUND_STEREO)
 
260
                return 1;
 
261
        else 
 
262
                return 0;
 
263
}
 
264
 
 
265
int radio_getsignal()
 
266
{
 
267
    struct video_tuner vt;
 
268
    int signal;
 
269
 
 
270
    if (fd<0)
 
271
        return -1;
 
272
 
 
273
    memset(&vt,0,sizeof(vt));
 
274
    ioctl (fd, VIDIOCGTUNER, &vt);
 
275
    signal=vt.signal>>13;
 
276
 
 
277
    return signal;
 
278
}