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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
|
/* -*- c++ -*- */
/*
* Copyright 2006 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in he hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <audio_portaudio_source.h>
#include <gr_io_signature.h>
#include <gr_prefs.h>
#include <stdio.h>
#include <iostream>
#include <unistd.h>
#include <stdexcept>
#include <gri_portaudio.h>
#include <gnuradio/omnithread.h>
#include <string.h>
//#define LOGGING 0 // define to 0 or 1
#define SAMPLE_FORMAT paFloat32
typedef float sample_t;
// Number of portaudio buffers in the ringbuffer
static const unsigned int N_BUFFERS = 4;
static std::string
default_device_name ()
{
return gr_prefs::singleton()->get_string("audio_portaudio", "default_input_device", "");
}
void
audio_portaudio_source::create_ringbuffer(void)
{
int bufsize_samples = d_portaudio_buffer_size_frames * d_input_parameters.channelCount;
if (d_verbose)
fprintf(stderr, "ring buffer size = %d frames\n",
N_BUFFERS*bufsize_samples/d_input_parameters.channelCount);
// FYI, the buffer indicies are in units of samples.
d_writer = gr_make_buffer(N_BUFFERS * bufsize_samples, sizeof(sample_t));
d_reader = gr_buffer_add_reader(d_writer, 0);
}
/*
* This routine will be called by the PortAudio engine when audio is needed.
* It may called at interrupt level on some machines so don't do anything
* that could mess up the system like calling malloc() or free().
*
* Our job is to copy framesPerBuffer frames from inputBuffer.
*/
int
portaudio_source_callback (const void *inputBuffer,
void *outputBuffer,
unsigned long framesPerBuffer,
const PaStreamCallbackTimeInfo* timeInfo,
PaStreamCallbackFlags statusFlags,
void *arg)
{
audio_portaudio_source *self = (audio_portaudio_source *)arg;
int nchan = self->d_input_parameters.channelCount;
int nframes_to_copy = framesPerBuffer;
int nframes_room = self->d_writer->space_available() / nchan;
if (nframes_to_copy <= nframes_room){ // We've got room for the data ..
//if (LOGGING)
// self->d_log->printf("PAsrc cb: f/b = %4ld\n", framesPerBuffer);
// copy from input buffer to ringbuffer
memcpy(self->d_writer->write_pointer(),
inputBuffer,
nframes_to_copy * nchan * sizeof(sample_t));
self->d_writer->update_write_pointer(nframes_to_copy * nchan);
// Tell the source thread there is new data in the ringbuffer.
self->d_ringbuffer_ready.post();
return paContinue;
}
else { // overrun
//if (LOGGING)
// self->d_log->printf("PAsrc cb: f/b = %4ld OVERRUN\n", framesPerBuffer);
self->d_noverruns++;
::write(2, "aO", 2); // FIXME change to non-blocking call
#if 0
// copy any frames that will fit
memcpy(self->d_writer->write_pointer(),
inputBuffer,
nframes_room * nchan * sizeof(sample_t));
self->d_writer->update_write_pointer(nframes_room * nchan);
#endif
self->d_ringbuffer_ready.post(); // Tell the sink to get going!
return paContinue;
}
}
// ----------------------------------------------------------------
audio_portaudio_source_sptr
audio_portaudio_make_source (int sampling_rate, const std::string dev, bool ok_to_block)
{
return audio_portaudio_source_sptr (new audio_portaudio_source (sampling_rate,
dev, ok_to_block));
}
audio_portaudio_source::audio_portaudio_source(int sampling_rate,
const std::string device_name,
bool ok_to_block)
: gr_sync_block ("audio_portaudio_source",
gr_make_io_signature(0, 0, 0),
gr_make_io_signature(0, 0, 0)),
d_sampling_rate(sampling_rate),
d_device_name(device_name.empty() ? default_device_name() : device_name),
d_ok_to_block(ok_to_block),
d_verbose(gr_prefs::singleton()->get_bool("audio_portaudio", "verbose", false)),
d_portaudio_buffer_size_frames(0),
d_stream(0),
d_ringbuffer_ready(1, 1), // binary semaphore
d_noverruns(0)
{
memset(&d_input_parameters, 0, sizeof(d_input_parameters));
//if (LOGGING)
// d_log = gri_logger::singleton();
PaError err;
int i, numDevices;
PaDeviceIndex device = 0;
const PaDeviceInfo *deviceInfo = NULL;
err = Pa_Initialize();
if (err != paNoError) {
bail ("Initialize failed", err);
}
if (d_verbose)
gri_print_devices();
numDevices = Pa_GetDeviceCount();
if (numDevices < 0)
bail("Pa Device count failed", 0);
if (numDevices == 0)
bail("no devices available", 0);
if (d_device_name.empty())
{
// FIXME Get smarter about picking something
device = Pa_GetDefaultInputDevice();
deviceInfo = Pa_GetDeviceInfo(device);
fprintf(stderr,"%s is the chosen device using %s as the host\n",
deviceInfo->name, Pa_GetHostApiInfo(deviceInfo->hostApi)->name);
}
else
{
bool found = false;
for (i=0;i<numDevices;i++) {
deviceInfo = Pa_GetDeviceInfo( i );
fprintf(stderr,"Testing device name: %s",deviceInfo->name);
if (deviceInfo->maxInputChannels <= 0) {
fprintf(stderr,"\n");
continue;
}
if (strstr(deviceInfo->name, d_device_name.c_str())){
fprintf(stderr," Chosen!\n");
device = i;
fprintf(stderr,"%s using %s as the host\n",d_device_name.c_str(),
Pa_GetHostApiInfo(deviceInfo->hostApi)->name), fflush(stderr);
found = true;
deviceInfo = Pa_GetDeviceInfo(device);
i = numDevices; // force loop exit
}
else
fprintf(stderr,"\n"),fflush(stderr);
}
if (!found){
bail("Failed to find specified device name", 0);
}
}
d_input_parameters.device = device;
d_input_parameters.channelCount = deviceInfo->maxInputChannels;
d_input_parameters.sampleFormat = SAMPLE_FORMAT;
d_input_parameters.suggestedLatency = deviceInfo->defaultLowInputLatency;
d_input_parameters.hostApiSpecificStreamInfo = NULL;
// We fill in the real channelCount in check_topology when we know
// how many inputs are connected to us.
// Now that we know the maximum number of channels (allegedly)
// supported by the h/w, we can compute a reasonable output
// signature. The portaudio specs say that they'll accept any
// number of channels from 1 to max.
set_output_signature(gr_make_io_signature(1, deviceInfo->maxInputChannels,
sizeof (sample_t)));
}
bool
audio_portaudio_source::check_topology (int ninputs, int noutputs)
{
PaError err;
if (Pa_IsStreamActive(d_stream))
{
Pa_CloseStream(d_stream);
d_stream = 0;
d_reader.reset(); // boost::shared_ptr for d_reader = 0
d_writer.reset(); // boost::shared_ptr for d_write = 0
}
d_input_parameters.channelCount = noutputs; // # of channels we're really using
#if 1
d_portaudio_buffer_size_frames = (int)(0.0213333333 * d_sampling_rate + 0.5); // Force 512 frame buffers at 48000
fprintf(stderr, "Latency = %8.5f, requested sampling_rate = %g\n", // Force latency to 21.3333333.. ms
0.0213333333, (double)d_sampling_rate);
#endif
err = Pa_OpenStream(&d_stream,
&d_input_parameters,
NULL, // No output
d_sampling_rate,
d_portaudio_buffer_size_frames,
paClipOff,
&portaudio_source_callback,
(void*)this);
if (err != paNoError) {
output_error_msg ("OpenStream failed", err);
return false;
}
#if 0
const PaStreamInfo *psi = Pa_GetStreamInfo(d_stream);
d_portaudio_buffer_size_frames = (int)(d_input_parameters.suggestedLatency * psi->sampleRate);
fprintf(stderr, "Latency = %7.4f, psi->sampleRate = %g\n",
d_input_parameters.suggestedLatency, psi->sampleRate);
#endif
fprintf(stderr, "d_portaudio_buffer_size_frames = %d\n", d_portaudio_buffer_size_frames);
assert(d_portaudio_buffer_size_frames != 0);
create_ringbuffer();
err = Pa_StartStream(d_stream);
if (err != paNoError) {
output_error_msg ("StartStream failed", err);
return false;
}
return true;
}
audio_portaudio_source::~audio_portaudio_source ()
{
Pa_StopStream(d_stream); // wait for output to drain
Pa_CloseStream(d_stream);
Pa_Terminate();
}
int
audio_portaudio_source::work (int noutput_items,
gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items)
{
float **out = (float **) &output_items[0];
const unsigned nchan = d_input_parameters.channelCount; // # of channels == samples/frame
int k;
for (k = 0; k < noutput_items; ){
int nframes = d_reader->items_available() / nchan; // # of frames in ringbuffer
if (nframes == 0){ // no data right now...
if (k > 0) // If we've produced anything so far, return that
return k;
if (d_ok_to_block){
d_ringbuffer_ready.wait(); // block here, then try again
continue;
}
assert(k == 0);
// There's no data and we're not allowed to block.
// (A USRP is most likely controlling the pacing through the pipeline.)
// This is an underun. The scheduler wouldn't have called us if it
// had anything better to do. Thus we really need to produce some amount
// of "fill".
//
// There are lots of options for comfort noise, etc.
// FIXME We'll fill with zeros for now. Yes, it will "click"...
// Fill with some frames of zeros
int nf = std::min(noutput_items - k, (int) d_portaudio_buffer_size_frames);
for (int i = 0; i < nf; i++){
for (unsigned int c = 0; c < nchan; c++){
out[c][k + i] = 0;
}
}
k += nf;
return k;
}
// We can read the smaller of the request and what's in the buffer.
int nf = std::min(noutput_items - k, nframes);
const float *p = (const float *) d_reader->read_pointer();
for (int i = 0; i < nf; i++){
for (unsigned int c = 0; c < nchan; c++){
out[c][k + i] = *p++;
}
}
d_reader->update_read_pointer(nf * nchan);
k += nf;
}
return k; // tell how many we actually did
}
void
audio_portaudio_source::output_error_msg (const char *msg, int err)
{
fprintf (stderr, "audio_portaudio_source[%s]: %s: %s\n",
d_device_name.c_str (), msg, Pa_GetErrorText(err));
}
void
audio_portaudio_source::bail (const char *msg, int err) throw (std::runtime_error)
{
output_error_msg (msg, err);
throw std::runtime_error ("audio_portaudio_source");
}
|