-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsound.c
154 lines (123 loc) · 4.51 KB
/
sound.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
#include <alsa/asoundlib.h>
#include <stdio.h>
#include <stdlib.h>
#include <float.h>
#define TESTRUNS 200
/*
Opens the device
*/
int initialize_sound(snd_pcm_t **capture_handle, snd_pcm_format_t format, unsigned int *rate, short* channels, char* hwid) {
snd_pcm_hw_params_t *hw_params;
int err;
if ((err = snd_pcm_open (capture_handle, hwid, SND_PCM_STREAM_CAPTURE, 0)) < 0) {
fprintf (stderr, "cannot open audio device (%s)\n",
snd_strerror (err));
return 1;
}
fprintf(stdout, "audio interface opened\n");
if ((err = snd_pcm_hw_params_malloc (&hw_params)) < 0) {
fprintf (stderr, "cannot allocate hardware parameter structure (%s)\n",
snd_strerror (err));
return 1;
}
fprintf(stdout, "hw_params allocated\n");
if ((err = snd_pcm_hw_params_any (*capture_handle, hw_params)) < 0) {
fprintf (stderr, "cannot initialize hardware parameter structure (%s)\n",
snd_strerror (err));
return 1;
}
fprintf(stdout, "hw_params initialized\n");
if ((err = snd_pcm_hw_params_set_access (*capture_handle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED)) < 0) {
fprintf (stderr, "cannot set access type (%s)\n",
snd_strerror (err));
return 1;
}
fprintf(stdout, "hw_params access setted\n");
if ((err = snd_pcm_hw_params_set_format (*capture_handle, hw_params, format)) < 0) {
fprintf (stderr, "cannot set sample format (%s)\n",
snd_strerror (err));
return 1;
}
fprintf(stdout, "hw_params format setted\n");
if ((err = snd_pcm_hw_params_set_rate_near (*capture_handle, hw_params, rate, 0)) < 0) {
fprintf (stderr, "cannot set sample rate (%s)\n",
snd_strerror (err));
return 1;
}
fprintf(stdout, "hw_params rate setted\n");
if ((err = snd_pcm_hw_params_set_channels (*capture_handle, hw_params, 1)) == 0) {
*channels = 1;
printf("setting channels to 1\n");
} else {
fprintf (stderr, "cannot set channel count to 1 (%s)\n",
snd_strerror (err));
if ((err = snd_pcm_hw_params_set_channels (*capture_handle, hw_params, 2)) == 0) {
*channels = 2;
printf("setting channels to 2\n");
} else {
fprintf (stderr, "cannot set channel count to 2 (%s)\n",
snd_strerror (err));
return 1;
}
}
fprintf(stdout, "hw_params channels setted\n");
if ((err = snd_pcm_hw_params (*capture_handle, hw_params)) < 0) {
fprintf (stderr, "cannot set parameters (%s)\n",
snd_strerror (err));
return 1;
}
fprintf(stdout, "hw_params setted\n");
snd_pcm_hw_params_free (hw_params);
fprintf(stdout, "hw_params freed\n");
if ((err = snd_pcm_prepare (*capture_handle)) < 0) {
fprintf (stderr, "cannot prepare audio interface for use (%s)\n",
snd_strerror (err));
return 1;
}
return 0;
}
/*
Read current recording from alsa
*/
int read_sound(snd_pcm_t *capture_handle, float *buffer, int frames){
int err;
if ((err = snd_pcm_readi (capture_handle, buffer, frames)) != frames) {
fprintf (stderr, "read from audio interface %d failed (%s)\n", err, snd_strerror (err));
return 1;
}
return 0;
}
/*
Reads the info which is determined by running the code with "-i"
*/
int read_hardware_info(float* offset, float* noise_level){
FILE *ptr;
if(!(ptr = fopen("hardware.info","r")))
return 1; //Hardware Info hasn't been determined
printf("hardware.info opened\n");
if(fscanf(ptr,"%f;%f",offset, noise_level) == EOF){
return 2;
}
fclose(ptr);
return 0;
}
/*
Tests to see if some slight form of constant voltage is at the port (mitigates some noise)
*/
int find_soundcard_parameters(float* offset, snd_pcm_t* capture_handle, float* alsa_buffer, int frames){
printf("running test...\n");
//Calculate average Output while (hopefully) nothing is playing
double x = 0;
for(int i = 0;i<TESTRUNS;i++){
if(read_sound(capture_handle, alsa_buffer, frames) != 0){
printf("Sound read error");
return 1;
}
for(int j = 0;j<frames;j++){
x += alsa_buffer[j];
}
}
*offset = x/(frames*TESTRUNS);
printf("First test finished, offset is %f\n", *offset);
return 0;
}