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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
/******************************************/
/*
twostreams.cpp
by Gary P. Scavone, 2001
Test executable for audio playback, recording,
duplex operation, stopping, starting, and
aborting operations. Takes number of channels
and sample rate as input arguments. Runs input
and output through two separate instances of RtAudio.
Uses blocking functionality.
*/
/******************************************/
#include "RtAudio.h"
#include <iostream>
/*
typedef signed long MY_TYPE;
#define FORMAT RTAUDIO_SINT24
#define SCALE 2147483647.0
typedef char MY_TYPE;
#define FORMAT RTAUDIO_SINT8
#define SCALE 127.0
typedef signed short MY_TYPE;
#define FORMAT RTAUDIO_SINT16
#define SCALE 32767.0
typedef signed long MY_TYPE;
#define FORMAT RTAUDIO_SINT32
#define SCALE 2147483647.0
*/
typedef float MY_TYPE;
#define FORMAT RTAUDIO_FLOAT32
#define SCALE 1.0
/*
typedef double MY_TYPE;
#define FORMAT RTAUDIO_FLOAT64
#define SCALE 1.0
*/
#define BASE_RATE 0.005
#define TIME 2.0
void usage(void) {
/* Error function in case of incorrect command-line
argument specifications
*/
std::cout << "\nuseage: twostreams N fs <device>\n";
std::cout << " where N = number of channels,\n";
std::cout << " fs = the sample rate,\n";
std::cout << " and device = the device to use (default = 0).\n\n";
exit(0);
}
int main(int argc, char *argv[])
{
int chans, fs, buffer_size, device = 0;
long frames, counter = 0, i, j;
MY_TYPE *buffer1, *buffer2;
RtAudio *stream1, *stream2;
FILE *fd;
double *data = 0;
// minimal command-line checking
if (argc != 3 && argc != 4 ) usage();
chans = (int) atoi(argv[1]);
fs = (int) atoi(argv[2]);
if ( argc == 4 )
device = (int) atoi(argv[3]);
// Open the realtime output device
buffer_size = 512;
try {
stream1 = new RtAudio(device, chans, 0, 0,
FORMAT, fs, &buffer_size, 8);
}
catch (RtError &error) {
error.printMessage();
exit(EXIT_FAILURE);
}
try {
stream2 = new RtAudio(0, 0, device, chans,
FORMAT, fs, &buffer_size, 8);
}
catch (RtError &error) {
delete stream1;
error.printMessage();
exit(EXIT_FAILURE);
}
try {
buffer1 = (MY_TYPE *) stream1->getStreamBuffer();
buffer2 = (MY_TYPE *) stream2->getStreamBuffer();
}
catch (RtError &error) {
error.printMessage();
goto cleanup;
}
frames = (long) (fs * TIME);
data = (double *) calloc(chans, sizeof(double));
try {
stream1->startStream();
}
catch (RtError &error) {
error.printMessage();
goto cleanup;
}
std::cout << "\nStarting sawtooth playback stream for " << TIME << " seconds." << std::endl;
while (counter < frames) {
for (i=0; i<buffer_size; i++) {
for (j=0; j<chans; j++) {
buffer1[i*chans+j] = (MY_TYPE) (data[j] * SCALE);
data[j] += BASE_RATE * (j+1+(j*0.1));
if (data[j] >= 1.0) data[j] -= 2.0;
}
}
try {
stream1->tickStream();
}
catch (RtError &error) {
error.printMessage();
goto cleanup;
}
counter += buffer_size;
}
std::cout << "\nStopping playback stream." << std::endl;
try {
stream1->stopStream();
}
catch (RtError &error) {
error.printMessage();
goto cleanup;
}
fd = fopen("test.raw","wb");
try {
stream2->startStream();
}
catch (RtError &error) {
error.printMessage();
goto cleanup;
}
counter = 0;
std::cout << "\nStarting recording stream for " << TIME << " seconds." << std::endl;
while (counter < frames) {
try {
stream2->tickStream();
}
catch (RtError &error) {
error.printMessage();
goto cleanup;
}
fwrite(buffer2, sizeof(MY_TYPE), chans * buffer_size, fd);
counter += buffer_size;
}
fclose(fd);
std::cout << "\nAborting recording." << std::endl;
try {
stream2->abortStream();
stream1->startStream();
stream2->startStream();
}
catch (RtError &error) {
error.printMessage();
goto cleanup;
}
counter = 0;
std::cout << "\nStarting playback and record streams (quasi-duplex) for " << TIME << " seconds." << std::endl;
while (counter < frames) {
try {
stream2->tickStream();
memcpy(buffer1, buffer2, sizeof(MY_TYPE) * chans * buffer_size);
stream1->tickStream();
}
catch (RtError &error) {
error.printMessage();
goto cleanup;
}
counter += buffer_size;
}
std::cout << "\nStopping both streams." << std::endl;
try {
stream1->stopStream();
stream2->stopStream();
}
catch (RtError &error) {
error.printMessage();
}
cleanup:
stream1->closeStream();
stream2->closeStream();
delete stream1;
delete stream2;
if (data) free(data);
return 0;
}
|