-
Notifications
You must be signed in to change notification settings - Fork 1
/
audio_oss.c
177 lines (153 loc) · 3.33 KB
/
audio_oss.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
* Copyright (c) 2024 Omar Polo <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/ioctl.h>
#include <sys/soundcard.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <poll.h>
#include <stdio.h>
#include <unistd.h>
#include "audio.h"
#include "log.h"
static void (*onmove_cb)(void *, int);
static int bpf;
static int cur_bits, cur_rate, cur_chans;
static int audiofd = -1;
int
audio_open(void (*cb)(void *, int))
{
onmove_cb = cb;
if ((audiofd = open("/dev/dsp", O_WRONLY)) == -1)
return -1;
return 0;
}
int
audio_setup(unsigned int bits, unsigned int rate, unsigned int channels,
struct pollfd *pfds, int nfds)
{
int fmt, forig;
int corig, rorig;
int fpct;
fpct = (rate * 5) / 100;
if (audiofd != -1) {
if (bits == cur_bits && channels == cur_chans &&
cur_rate - fpct <= rate && rate <= cur_rate + fpct)
return 0;
}
close(audiofd);
if (audio_open(onmove_cb) == -1)
return -1;
if (bits == 8) {
fmt = AFMT_S8;
bpf = 1;
} else if (bits == 16) {
fmt = AFMT_S16_NE;
bpf = 2;
} else if (bits == 24) {
fmt = AFMT_S24_NE;
bpf = 4;
} else if (bits == 32) {
fmt = AFMT_S32_NE;
bpf = 4;
} else {
log_warnx("can't handle %d bits", bits);
return -1;
}
bpf *= channels;
forig = fmt;
if (ioctl(audiofd, SNDCTL_DSP_SETFMT, &fmt) == -1) {
log_warn("couldn't set the format");
return -1;
}
if (forig != fmt) {
errno = ENODEV;
return -1;
}
corig = channels;
if (ioctl(audiofd, SNDCTL_DSP_CHANNELS, &channels) == -1) {
log_warn("couldn't set the channels");
return -1;
}
if (corig != channels) {
errno = ENODEV;
return -1;
}
rorig = rate;
if (ioctl(audiofd, SNDCTL_DSP_SPEED, &rate) == -1) {
log_warn("couldn't set the rate");
return -1;
}
if (rorig - fpct > rate || rate > rorig + fpct) {
errno = ENODEV;
return -1;
}
cur_bits = bits;
cur_rate = rate;
cur_chans = channels;
return 0;
}
int
audio_nfds(void)
{
return 1;
}
int
audio_pollfd(struct pollfd *pfds, int nfds, int events)
{
if (nfds != 1) {
errno = EINVAL;
return -1;
}
pfds[0].fd = audiofd;
pfds[0].events = POLLOUT;
return 0;
}
int
audio_revents(struct pollfd *pfds, int nfds)
{
if (nfds != 1) {
log_warnx("%s: called with nfds=%d", __func__, nfds);
return 0;
}
/* don't need to check, if we're here we can write */
return POLLOUT;
}
size_t
audio_write(const void *buf, size_t len)
{
ssize_t r;
r = write(audiofd, buf, len);
if (r == -1) {
log_warn("oss write");
return 0;
}
if (onmove_cb)
onmove_cb(NULL, r / bpf);
return r;
}
int
audio_flush(void)
{
if (ioctl(audiofd, SNDCTL_DSP_POST) == -1)
return -1;
return (0);
}
int
audio_stop(void)
{
return 0;
}