File: eplSound.cpp

package info (click to toggle)
pyepl 1.1.0-3.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,120 kB
  • sloc: cpp: 7,986; python: 6,026; makefile: 360; ansic: 132
file content (436 lines) | stat: -rw-r--r-- 8,865 bytes parent folder | download | duplicates (4)
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
// PyEPL: hardware/sound/eplSound.cpp
//
// Copyright (C) 2003-2005 Michael J. Kahana
// Authors: Ian Schleifer, Per Sederberg, Aaron Geller, Josh Jacobs
// URL: http://memory.psych.upenn.edu/programming/pyepl
//
// Distributed under the terms of the GNU Lesser General Public License
// (LGPL). See the license.txt that came with this file.

#include "eplSound.h"

#include <iostream>
#include <cstdlib>
#include <cstring>

using namespace std;

eplSound::eplSound(long recLen, long playLen, 
		   unsigned int sampRate, unsigned int bufSize)
{
  // get audio instance
  RtAudio audio;
  playAudio = NULL;
  recAudio = NULL;

  // let's see warnings
  audio.showWarnings( true );

  // make sure there are audio devices
  if ( audio.getDeviceCount() < 1 ) 
  {
    cerr << "\nNo audio devices found!\n";
    exit( EXIT_FAILURE );
  }

  // must find default input/output device/s and channels
  playDevice = 0;
  recDevice = 0;
  playChans = 0;
  recChans = 0;

  // set some vars to defaults
  sampleRate = sampRate;
  bufferSize = bufSize;

  // set up the stream parameters
  RtAudio::StreamParameters iParams, oParams;
  RtAudio::StreamOptions options;

  // set the options
  //options.flags |= RTAUDIO_HOG_DEVICE;
  options.flags |= RTAUDIO_SCHEDULE_REALTIME;

  // Verify that the default devices will work for us
  RtAudio::DeviceInfo info;
  
  // Check and set up the play device
  try {
    playDevice = audio.getDefaultOutputDevice();
    info = audio.getDeviceInfo( playDevice );
    oParams.deviceId = playDevice;
    oParams.nChannels = info.outputChannels;
    playChans = oParams.nChannels;
  }
  catch ( RtError& e ) {
    e.printMessage();
    //exit( EXIT_FAILURE );
  }

  // Check and set up the rec device
  try {
    recDevice = audio.getDefaultInputDevice();
    info = audio.getDeviceInfo( recDevice );
    iParams.deviceId = recDevice;
    iParams.nChannels = info.inputChannels;
    recChans = iParams.nChannels;
  }
  catch ( RtError& e ) {
    e.printMessage();
    //exit( EXIT_FAILURE );
  }

  // allocate space for data
  data = new audioBuffer(recLen,playLen,
			 recChans,playChans,
			 sampleRate);

  try {
    // open the proper stream
    if ((playChans>0) && (recChans>0) && (iParams.deviceId == oParams.deviceId))
    {
      // it's duplex
      isDuplex = 1;
      
      // open both
      playAudio = new RtAudio();
      playAudio->showWarnings( true );
      playAudio->openStream( &oParams, &iParams, FORMAT, sampleRate, 
			    &bufferSize, &inout, (void *)data );
      recAudio = playAudio;
    }
    else 
    {
      // not full duplex
      isDuplex = 0;

      if (playChans>0)
      {
	// open output
	playAudio = new RtAudio();
	playAudio->showWarnings( true );
	playAudio->openStream( &oParams, NULL, FORMAT, sampleRate, 
			       &bufferSize, &inout, (void *)data );
      }
      if (recChans>0)
      {
	// open input
	recAudio = new RtAudio();
	recAudio->showWarnings( true );
	recAudio->openStream( NULL, &iParams, FORMAT, sampleRate, 
			      &bufferSize, &inout, (void *)data );	
      }
    }

    if (playChans==0)
    {
      // No input chans discovered
      cerr << "No default input device with correct channel info was found!" << endl;
      cerr << "You will only be able to record sound." << endl;
    }
    if (recChans==0)
    {
      // No output chans discovered
      cerr << "No default output device with correct channel info was found!" << endl;
      cerr << "You will not be able to play sound." << endl;
    }
  }
  catch ( RtError& e ) {
    e.printMessage();
    exit( EXIT_FAILURE );
  }

  // set to be not streaming yet
  streaming = 0;
}

eplSound::~eplSound()
{
  // stop streaming
  stopstream(1);

  // close the play stream
  if (playAudio != NULL)
  {
    if (playAudio->isStreamOpen() > 0)
      playAudio->closeStream();

    // clean it up
    delete playAudio;
  }

  // see if should clean up record stream
  if ((!isDuplex) && (recAudio != NULL))
  {
    if (recAudio->isStreamOpen() > 0)
      recAudio->closeStream();

    // clean it up
    delete recAudio;
  }
  
  delete data;
}

void eplSound::clear()
{
  data->playBuf->clear();
  data->recBuf->clear();
  return;
}

void eplSound::clearPlayBuffer()
{
  data->playBuf->clear();
  return;
}

void eplSound::clearRecBuffer()
{
  data->recBuf->clear();
  return;
}

int eplSound::recstart()
{

  // first clear (is there any case where we don't want to do this?)
  data->recBuf->clear();

  // set to recording
  data->recording = 1;

  // must start streaming (will only start if not already started)
  startstream();

  return 0;
}

int eplSound::recstop()
{
  // stop recording
  data->recording = 0;

  return 0;
}

int eplSound::startstream()
{
  //if (!(audio.isStreamOpen()) && (streaming == 0))
  if (streaming == 0)
  {
    // start playing
    if (playAudio != NULL)
    {
      try {
	playAudio->startStream();
      }
      catch (RtError &error) {
	error.printMessage();
	exit(EXIT_FAILURE);
      }
    }

    if ((recAudio != NULL) && (recAudio != playAudio))
    {
      try {
	recAudio->startStream();
      }
      catch (RtError &error) {
	error.printMessage();
	exit(EXIT_FAILURE);
      }
    }

    // say we are streaming
    streaming = 1;
  }

  return 0; 
}

int eplSound::stopstream(int abort)
{
  //if (audio.isStreamOpen() && streaming == 1))
  if (streaming == 1)
  {
    // stop playing
    if (playAudio != NULL)
    {
      try {
	if (abort)
	  playAudio->abortStream();
	else
	  playAudio->stopStream();
      }
      catch (RtError &error) {
	error.printMessage();
	exit(EXIT_FAILURE);
      }
    }

    // stop playing
    if ((recAudio != NULL) && (recAudio != playAudio))
    {
      try {
	if (abort)
	  recAudio->abortStream();
	else
	  recAudio->stopStream();
      }
      catch (RtError &error) {
	error.printMessage();
	exit(EXIT_FAILURE);
      }
    }

    streaming = 0;
    data->recording = 0;
  }

  return 0; 
}

long eplSound::append(MY_TYPE *newdata, long length, int overwrite, float ampFactor)
{
  long i;

  // apply amplification if necessary
  if (ampFactor != 1.0)
  {
    // Apply the factor
    for (i=0;i<length;i++)
    {
      newdata[i]= (MY_TYPE)(newdata[i]*ampFactor);
    }
  }
  // append to the play buffer
  return data->playBuf->append(newdata,length,overwrite);
}

long eplSound::consume(MY_TYPE *newdata, long length)
{
  // consume from the recBuf
  return data->recBuf->consume(newdata,length);
}

int eplSound::getBufferSize()
{
  return bufferSize;
}

long eplSound::getSamplesPlayed()
{
  return data->samplesPlayed;
}

void eplSound::resetSamplesPlayed()
{
  data->samplesPlayed = 0;
}

int eplSound::getRecChans()
{
  return recChans;
}

int eplSound::getPlayChans()
{
  return playChans;
}

int eplSound::getSampleRate()
{
  return sampleRate;
}

unsigned int eplSound::getPlayStreamSampleRate()
{
  return playAudio->getStreamSampleRate();
}

unsigned int eplSound::getRecStreamSampleRate()
{
  return recAudio->getStreamSampleRate();
}

long eplSound::getBufferUsed()
{
  return data->playBuf->getUsed();
}

long eplSound::getPlayStreamLatency()
{
  return playAudio->getStreamLatency();
}

long eplSound::getRecStreamLatency()
{
  return recAudio->getStreamLatency();
}

int inout( void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames,
           double streamTime, RtAudioStreamStatus status, void *data )
{
  audioBuffer *mydata = (audioBuffer *)data;
  MY_TYPE *inbuffer = (MY_TYPE *) inputBuffer;
  MY_TYPE *outbuffer = (MY_TYPE *) outputBuffer;
  unsigned int written = 0;

  // check the status
  if ( status )
    cerr << "Stream overflow detected!" << endl;
 
  // handle recording
  if ((inputBuffer != NULL) && (mydata->recording))
  {
    // read in from buffer to recBuf
    mydata->recBuf->append(inbuffer,nBufferFrames*mydata->recChans);
  }

  // handle playing
  if (outputBuffer != NULL)
  {
    // write from playBuf to buffer
    written =  mydata->playBuf->consume(outbuffer,nBufferFrames*mydata->playChans);

    // Append samples played
    mydata->samplesPlayed += written/(mydata->playChans);

    // if we wrote less than buffer, append silence
    if (written < nBufferFrames * mydata->playChans)
    {
      // append zeros
      memset((void *)&outbuffer[written],0,
	     sizeof(MY_TYPE)*((nBufferFrames*mydata->playChans)-written));
    }
  }

  return 0;
}


audioBuffer::audioBuffer(long reclen, long playlen, 
			 unsigned int inrecChans, unsigned int inplayChans, 
			 unsigned int samprate)
{
  // Allocate space for the two buffers
  recBuf = new fifo(reclen*inrecChans*samprate);
  playBuf = new fifo(playlen*inplayChans*samprate);
  
  //chans = numchans;
  recChans = inrecChans;
  playChans = inplayChans;
  rate = samprate;

  recording = 0;
  samplesPlayed = 0;
}

audioBuffer::~audioBuffer()
{
  // clear the buffer memory
  delete recBuf;
  delete playBuf;
}