-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
sio.c
120 lines (101 loc) · 2.7 KB
/
sio.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
/* $Id$ */
/*
* Copyright (c) 2013 Dimitri Sokolyuk <[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 <assert.h>
#include <err.h>
#include <sndio.h>
#include <stdlib.h>
#include "sio.h"
#define STEREO 2
#define BITS 16
#define SIGNED 1
#define FPS 25
static struct sio_hdl *hdl;
static struct sio_par par;
static int16_t *buffer;
static unsigned int samples;
struct data {
int16_t left;
int16_t right;
};
int
init_sio(void)
{
hdl = sio_open(SIO_DEVANY, SIO_REC, 0);
if (!hdl)
errx(1, "cannot connect to sound server, is it running?");
sio_initpar(&par);
par.rchan = STEREO;
par.bits = BITS;
par.le = SIO_LE_NATIVE;
par.sig = SIGNED;
if (!sio_setpar(hdl, &par))
errx(1, "SIO set params failed");
if (!sio_getpar(hdl, &par))
errx(1, "SIO get params failed");
if (par.rchan != STEREO ||
par.bits != BITS ||
par.le != SIO_LE_NATIVE ||
par.sig != SIGNED)
errx(1, "unsupported audio params");
samples = par.rate / FPS;
samples -= samples % par.round - par.round;
buffer = calloc(samples * par.rchan, sizeof(int16_t));
assert(buffer);
return sio_start(hdl);
}
unsigned int
max_samples_sio(void)
{
/*
* maximal number of samples we're willing to provide
* with 1920 at 25 fps and 48000 Hz or
* with 1764 at 25 fps and 44100 Hz it shall fit on most screens
*/
return samples;
}
void
read_sio(double *left, double *right, size_t n)
{
int done, i;
char *p = (char *)buffer;
size_t bufsz = samples * par.rchan * sizeof(int16_t);
size_t rndsz = n * par.rchan * sizeof(int16_t);
struct data *data;
if (rndsz > bufsz)
rndsz = bufsz;
for (done = 0; bufsz > 0; p += done, bufsz -= done) {
done = sio_read(hdl, p, bufsz);
if (sio_eof(hdl))
errx(1, "SIO EOF");
}
/*
* return a pointer to the latest ROUND samples (the most recent
* ones) to minimize latency between picture and sound
*/
data = (struct data *)(p - rndsz);
for (i = 0; i < n; i++) {
left[i] = data[i].left;
right[i] = data[i].right;
}
}
void
free_sio(void)
{
sio_stop(hdl);
sio_close(hdl);
free(buffer);
}