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 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
|
/*
* Copyright (c) 2009 Samit Basu
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "Array.hpp"
#if HAVE_PORTAUDIO19 || HAVE_PORTAUDIO18
#include "portaudio.h"
#endif
const int FRAMES_PER_BUFFER = 64;
class PlayBack {
public:
char *data;
int length;
int channels;
int framesToGo;
int ptr;
int elementSize;
Array x;
};
#if HAVE_PORTAUDIO19 || HAVE_PORTAUDIO18
#if HAVE_PORTAUDIO19
static int DoPlayBackCallback(const void *, void *output,
unsigned long framesPerBuffer,
const PaStreamCallbackTimeInfo*,
PaStreamCallbackFlags,
void *userData) {
#endif
#if HAVE_PORTAUDIO18
static int DoPlayBackCallback(void *, void *output,
unsigned long framesPerBuffer,
PaTimestamp,
void *userData) {
#endif
PlayBack *pb = (PlayBack*) userData;
char *out = (char*) output;
const char *dp = pb->data;
int framesToCalc;
int finished = 0;
int i;
if( (unsigned long) pb->framesToGo < framesPerBuffer )
{
framesToCalc = pb->framesToGo;
pb->framesToGo = 0;
finished = 1;
}
else
{
framesToCalc = framesPerBuffer;
pb->framesToGo -= framesPerBuffer;
}
for( i=0; i<framesToCalc; i++ )
{
if (pb->channels == 1) {
for (int j=0;j<pb->elementSize;j++)
*out++ = dp[pb->ptr*pb->elementSize + j];
pb->ptr++;
} else {
for (int j=0;j<pb->elementSize;j++)
*out++ = dp[pb->ptr*pb->elementSize + j];
for (int j=0;j<pb->elementSize;j++)
*out++ = dp[(pb->ptr+pb->length)*pb->elementSize + j];
pb->ptr++;
}
}
/* zero remainder of final buffer */
for( ; i<(int)framesPerBuffer; i++ )
{
if (pb->channels == 1)
for (int j=0;j<pb->elementSize;j++)
*out++ = 0;
else {
for (int j=0;j<pb->elementSize;j++) {
*out++ = 0; /* left */
*out++ = 0; /* right */
}
}
}
return finished;
}
#if HAVE_PORTAUDIO19
static int DoRecordCallback(const void *input, void *,
unsigned long framesPerBuffer,
const PaStreamCallbackTimeInfo*,
PaStreamCallbackFlags,
void *userData) {
#endif
#if HAVE_PORTAUDIO18
static int DoRecordCallback(void *input, void *,
unsigned long framesPerBuffer,
PaTimestamp,
void *userData) {
#endif
PlayBack *pb = (PlayBack*) userData;
char *in = (char*) input;
char *dp = pb->data;
int framesToCalc;
int finished = 0;
int i;
if( (unsigned long) pb->framesToGo < framesPerBuffer )
{
framesToCalc = pb->framesToGo;
pb->framesToGo = 0;
finished = 1;
}
else
{
framesToCalc = framesPerBuffer;
pb->framesToGo -= framesPerBuffer;
}
for( i=0; i<framesToCalc; i++ )
{
if (pb->channels == 1) {
for (int j=0;j<pb->elementSize;j++)
dp[pb->ptr*pb->elementSize + j] = *in++;
pb->ptr++;
} else {
for (int j=0;j<pb->elementSize;j++)
dp[pb->ptr*pb->elementSize + j] = *in++;
for (int j=0;j<pb->elementSize;j++)
dp[(pb->ptr+pb->length)*pb->elementSize + j] = *in++;
pb->ptr++;
}
}
return finished;
}
static PaError err;
static bool RunningStream = false;
static PaStream *stream;
static PlayBack *pb_obj;
void PAInit() {
err = Pa_Initialize();
if (err != paNoError)
throw Exception(QString("An error occured while using the portaudio stream: ") + Pa_GetErrorText(err));
}
void PAShutdown() {
#ifdef HAVE_PORTAUDIO19
while ( ( err = Pa_IsStreamActive( stream ) ) == 1 )
Pa_Sleep(100);
#endif
#ifdef HAVE_PORTAUDIO18
while ( ( err = Pa_StreamActive( stream ) ) == 1 )
Pa_Sleep(100);
#endif
err = Pa_CloseStream(stream);
if (err != paNoError)
throw Exception(QString("An error occured while using the portaudio stream: ") + Pa_GetErrorText(err));
Pa_Terminate();
delete pb_obj;
RunningStream = false;
}
void DoPlayBack(const void *data, int count, int channels,
int elementSize, unsigned long SampleFormat,
int Rate, bool asyncMode, Array x) {
if (RunningStream)
PAShutdown();
PAInit();
pb_obj = new PlayBack;
pb_obj->x = x;
pb_obj->data = (char *)data;
pb_obj->length = count;
pb_obj->channels = channels;
pb_obj->ptr = 0;
pb_obj->framesToGo = count;
pb_obj->elementSize = elementSize;
#ifdef HAVE_PORTAUDIO19
PaStreamParameters outputParameters;
outputParameters.device = Pa_GetDefaultOutputDevice();
outputParameters.channelCount = channels;
outputParameters.sampleFormat = SampleFormat;
outputParameters.suggestedLatency = Pa_GetDeviceInfo(outputParameters.device)->defaultLowOutputLatency;
outputParameters.hostApiSpecificStreamInfo = NULL;
err = Pa_OpenStream(&stream,
NULL, /* no input */
&outputParameters,
Rate,
FRAMES_PER_BUFFER,
paNoFlag,
DoPlayBackCallback,
pb_obj);
#endif
#ifdef HAVE_PORTAUDIO18
err = Pa_OpenStream(&stream,
paNoDevice, // No input device
0, // No input
SampleFormat,
NULL,
Pa_GetDefaultOutputDeviceID(),
channels,
SampleFormat,
NULL,
Rate,
FRAMES_PER_BUFFER,
0,
paClipOff,
DoPlayBackCallback,
pb_obj);
#endif
if (err != paNoError)
throw Exception(QString("An error occured while using the portaudio stream: ") + Pa_GetErrorText(err));
err = Pa_StartStream(stream);
if (err != paNoError)
throw Exception(QString("An error occured while using the portaudio stream: ") + Pa_GetErrorText(err));
if (!asyncMode)
PAShutdown();
else
RunningStream = true;
}
void DoRecord(void *data, int count, int channels,
int elementSize, unsigned long SampleFormat,
int Rate) {
if (RunningStream)
PAShutdown();
PAInit();
pb_obj = new PlayBack;
pb_obj->data = (char *)data;
pb_obj->length = count;
pb_obj->channels = channels;
pb_obj->ptr = 0;
pb_obj->framesToGo = count;
pb_obj->elementSize = elementSize;
#if HAVE_PORTAUDIO19
PaStreamParameters inputParameters;
inputParameters.device = Pa_GetDefaultInputDevice();
inputParameters.channelCount = channels;
inputParameters.sampleFormat = SampleFormat;
inputParameters.suggestedLatency = Pa_GetDeviceInfo(inputParameters.device)->defaultLowInputLatency;
inputParameters.hostApiSpecificStreamInfo = NULL;
err = Pa_OpenStream(&stream,
&inputParameters,
NULL,
Rate,
FRAMES_PER_BUFFER,
paNoFlag,
DoRecordCallback,
pb_obj);
#endif
#if HAVE_PORTAUDIO18
err = Pa_OpenStream(&stream,
Pa_GetDefaultInputDeviceID(),
channels,
SampleFormat,
NULL,
paNoDevice,
0,
SampleFormat,
NULL,
Rate,
FRAMES_PER_BUFFER,
0,
0,
DoRecordCallback,
pb_obj);
#endif
if (err != paNoError)
throw Exception(QString("An error occured while using the portaudio stream: ") + Pa_GetErrorText(err));
err = Pa_StartStream(stream);
if (err != paNoError)
throw Exception(QString("An error occured while using the portaudio stream: ") + Pa_GetErrorText(err));
PAShutdown();
}
#endif
//!
//@Module WAVPLAY
//@@Section IO
//@@Usage
//Plays a linear PCM set of samples through the audio system. This
//function is only available if the @|portaudio| library was available
//when FreeMat was built. The syntax for the command is one of:
//@[
// wavplay(y)
// wavplay(y,sampling_rate)
// wavplay(...,mode)
//@]
//where @|y| is a matrix of audio samples. If @|y| has two columns, then
//the audio playback is in stereo. The @|y| input can be of types
//@|float, double, int32, int16, int8, uint8|. For @|float| and
//@|double| types, the sample values in @|y| must be between @|-1| and
//@|1|. The @|sampling_rate| specifies the rate at which the data is
//recorded. If not specified, the @|sampling_rate| defaults to @|11025Hz|.
//Finally, you can specify a playback mode of @|'sync'| which is synchronous
//playback or a playback mode of @|'async'| which is asynchronous playback.
//For @|'sync'| playback, the wavplay function returns when the playback is
//complete. For @|'async'| playback, the function returns immediately (unless
//a former playback is still issuing).
//@@Signature
//function wavplay WavPlayFunction
//inputs y sampling_rate mode
//outputs none
//!
ArrayVector WavPlayFunction(int nargout, const ArrayVector& argv) {
#if HAVE_PORTAUDIO18 || HAVE_PORTAUDIO19
if(argv.size() == 0)
throw Exception("wavplay requires at least one argument (the audio data to playback)");
Array y(argv[0].asDenseArray());
int SampleRate = 11025;
QString mode = "SYNC";
if (argv.size() > 1)
SampleRate = argv[1].asInteger();
if (argv.size() > 2)
mode = argv[2].asString().toUpper();
// Validate that the data is reasonable
if ((!y.is2D()) || (!y.isVector() && (y.columns() > 2)) ||
y.isReferenceType() || y.isComplex())
throw Exception("wavplay only supports playback of 1 or 2 channel signals, which means a 1 or 2 column matrix");
if (y.dataClass() == Double)
y = y.toClass(Float);
if ((y.dataClass() == Int64) || (y.dataClass() == UInt64))
throw Exception("wavplay does not support 64 bit data types.");
if (y.dataClass() == UInt32)
throw Exception("wavplay does not support unsigned 32-bit data types.");
if (y.dataClass() == UInt16)
throw Exception("wavplay does not support unsigned 16-bit data types.");
int samples;
int channels;
if (!y.isVector()) {
channels = int(y.columns());
samples = int(y.rows());
} else {
channels = 1;
samples = int(y.length());
}
if (y.dataClass() == Float)
DoPlayBack(y.constReal<float>().constData(),samples,channels,sizeof(float),
paFloat32,SampleRate,mode != "SYNC",y);
else if (y.dataClass() == Int32)
DoPlayBack(y.constReal<int32>().constData(),samples,channels,sizeof(int32),
paInt32,SampleRate,mode != "SYNC",y);
else if (y.dataClass() == Int16)
DoPlayBack(y.constReal<int16>().constData(),samples,channels,sizeof(int16),
paInt16,SampleRate,mode != "SYNC",y);
else if (y.dataClass() == Int8)
DoPlayBack(y.constReal<int8>().constData(),samples,channels,sizeof(int8),
paInt8,SampleRate,mode != "SYNC",y);
else if (y.dataClass() == UInt8)
DoPlayBack(y.constReal<uint8>().constData(),samples,channels,sizeof(uint8),
paUInt8,SampleRate,mode != "SYNC",y);
else
throw Exception("wavplay does not support this data types.");
#else
throw Exception("Audio read/write support not available. Please build the PortAudio library and rebuild FreeMat to enable this functionality.");
#endif
return ArrayVector();
}
//!
//@Module WAVRECORD
//@@Section IO
//@@Usage
//Records linear PCM sound from the audio system. This function is
//only available if the @|portaudio| library was available when FreeMat
//was built. The syntax for this command is one of:
//@[
// y = wavrecord(samples,rate)
// y = wavrecord(...,channels)
// y = wavrecord(...,'datatype')
//@]
//where @|samples| is the number of samples to record, and @|rate| is the
//sampling rate. If not specified, the @|rate| defaults to @|11025Hz|.
//If you want to record in stero, specify @|channels = 2|. Finally, you
//can specify the type of the recorded data (defaults to @|FM_DOUBLE|).
//Valid choices are @|float, double, int32, int16, int8, uint8|.
//@@Signature
//function wavrecord WavRecordFunction
//inputs varargin
//outputs y
//!
template <class T>
static Array WavRecord(int samples, int channels, unsigned long SampleFormat, int Rate) {
BasicArray<T> dp(NTuple(samples,channels));
DoRecord(dp.data(),samples,channels,sizeof(T),SampleFormat,Rate);
return Array(dp);
}
ArrayVector WavRecordFunction(int nargout, const ArrayVector& argv) {
#if HAVE_PORTAUDIO18 || HAVE_PORTAUDIO19
if (argv.size() < 1)
throw Exception("wavrecord requires at least 1 argument (the number of samples to record)");
int samples = argv[0].asInteger();
int rate = 11025;
int channels = 1;
DataClass datatype = Double;
ArrayVector argvCopy(argv);
if ((argvCopy.size() > 1) && (argvCopy.back().isString())) {
QString typestring = argvCopy.back().asString().toUpper();
if ((typestring == "FLOAT") || (typestring == "SINGLE"))
datatype = Float;
else if (typestring == "DOUBLE")
datatype = Double;
else if (typestring == "INT32")
datatype = Int32;
else if (typestring == "INT16")
datatype = Int16;
else if (typestring == "INT8")
datatype = Int8;
else if (typestring == "UINT8")
datatype = UInt8;
else
throw Exception("unrecognized data type - expecting one of: double, float, single, int32, int16, int8, uint8");
argvCopy.pop_back();
}
// Check for a channel spec and a sampling rate
while (argvCopy.size() > 1) {
int ival = argvCopy.back().asInteger();
if (ival > 2)
rate = ival;
else
channels = ival;
argvCopy.pop_back();
}
DataClass rdatatype(datatype);
Array retvec;
if (rdatatype == Double) rdatatype = Float;
switch(rdatatype) {
default: throw Exception("Illegal data type argument for wavrecord");
case Float:
return ArrayVector(WavRecord<float>(samples,channels,paFloat32,rate).toClass(datatype));
case Int32:
return ArrayVector(WavRecord<int32>(samples,channels,paInt32,rate).toClass(datatype));
case Int16:
return ArrayVector(WavRecord<int16>(samples,channels,paInt16,rate).toClass(datatype));
case Int8:
return ArrayVector(WavRecord<int8>(samples,channels,paInt8,rate).toClass(datatype));
case UInt8:
return ArrayVector(WavRecord<uint8>(samples,channels,paUInt8,rate).toClass(datatype));
}
#else
throw Exception("Audio read/write support not available. Please build the PortAudio library and rebuild FreeMat to enable this functionality.");
#endif
return ArrayVector();
}
|