/*! \mainpage The RtAudio Tutorial - \ref intro - \ref download - \ref start - \ref error - \ref probing - \ref settings - \ref playbackb - \ref playbackc - \ref recording - \ref duplex - \ref methods - \ref compiling - \ref debug - \ref osnotes - \ref acknowledge - \ref license \section intro Introduction RtAudio is a C++ class which provides a common API (Application Programming Interface) for realtime audio input/output across Linux (native ALSA and OSS), Macintosh OS X, SGI, and Windows (DirectSound and ASIO) operating systems. RtAudio significantly simplifies the process of interacting with computer audio hardware. It was designed with the following goals: RtAudio incorporates the concept of audio streams, which represent audio output (playback) and/or input (recording). Available audio devices and their capabilities can be enumerated and then specified when opening a stream. When allowed by the underlying audio API, multiple streams can run at the same time and a single device can serve multiple streams. See the \ref osnotes section for information specific to each of the supported audio APIs. The RtAudio API provides both blocking (synchronous) and callback (asyncronous) functionality. Callbacks are typically used in conjunction with graphical user interfaces (GUI). Blocking functionality is often necessary for explicit control of multiple input/output stream synchronization or when audio must be synchronized with other system events. \section download Download Latest Release (7 October 2002): Version 2.1 (165 kB tar/gzipped) \section start Getting Started The first thing that must be done when using RtAudio is to create an instance of the class. The default constructor RtAudio::RtAudio() scans the underlying audio system to verify that at least one device is available. RtAudio often uses C++ exceptions to report errors, necessitating try/catch blocks around most member functions. The following code example demonstrates default object construction and destruction: \code #include "RtAudio.h" int main() { RtAudio *audio; // Default RtAudio constructor try { audio = new RtAudio(); } catch (RtError &error) { // Handle the exception here } // Clean up delete audio; } \endcode Obviously, this example doesn't demonstrate any of the real functionality of RtAudio. However, all uses of RtAudio must begin with a constructor (either default or overloaded varieties) and must end with class destruction. Further, it is necessary that all class methods which can throw a C++ exception be called within a try/catch block. \section error Error Handling RtAudio uses a C++ exception handler called RtError, which is declared and defined within the RtAudio class files. The RtError class is quite simple but it does allow errors to be "caught" by RtError::TYPE. Almost all RtAudio methods can "throw" an RtError, most typically if an invalid stream identifier is supplied to a method or a driver error occurs. There are a number of cases within RtAudio where warning messages may be displayed but an exception is not thrown. There is a private RtAudio method, error(), which can be modified to globally control how these messages are handled and reported. \section probing Probing Device Capabilities A programmer may wish to query the available audio device capabilities before deciding which to use. The following example outlines how this can be done. \code // probe.cpp #include #include "RtAudio.h" int main() { RtAudio *audio; // Default RtAudio constructor try { audio = new RtAudio(); } catch (RtError &error) { error.printMessage(); exit(EXIT_FAILURE); } // Determine the number of devices available int devices = audio->getDeviceCount(); // Scan through devices for various capabilities RtAudio::RTAUDIO_DEVICE info; for (int i=1; i<=devices; i++) { try { audio->getDeviceInfo(i, &info); } catch (RtError &error) { error.printMessage(); break; } // Print, for example, the maximum number of output channels for each device cout << "device = " << i; cout << ": maximum output channels = " << info.maxOutputChannels << "\n"; } // Clean up delete audio; return 0; } \endcode The RTAUDIO_DEVICE structure is defined in RtAudio.h and provides a variety of information useful in assessing the capabilities of a device: \code typedef struct { char name[128]; bool probed; // true if the device probe was successful. int maxOutputChannels; int maxInputChannels; int maxDuplexChannels; int minOutputChannels; int minInputChannels; int minDuplexChannels; bool hasDuplexSupport; // true if duplex mode is supported. bool isDefault; // true if this is the default output or input device. int nSampleRates; // Number of discrete rates, or -1 if range supported. double sampleRates[MAX_SAMPLE_RATES]; // Supported sample rates, or {min, max} if range. RTAUDIO_FORMAT nativeFormats; } RTAUDIO_DEVICE; \endcode The following data formats are defined and fully supported by RtAudio: \code typedef unsigned long RTAUDIO_FORMAT; static const RTAUDIO_FORMAT RTAUDIO_SINT8; // Signed 8-bit integer static const RTAUDIO_FORMAT RTAUDIO_SINT16; // Signed 16-bit integer static const RTAUDIO_FORMAT RTAUDIO_SINT24; // Signed 24-bit integer (upper 3 bytes of 32-bit signed integer.) static const RTAUDIO_FORMAT RTAUDIO_SINT32; // Signed 32-bit integer static const RTAUDIO_FORMAT RTAUDIO_FLOAT32; // 32-bit float normalized between +/- 1.0 static const RTAUDIO_FORMAT RTAUDIO_FLOAT64; // 64-bit double normalized between +/- 1.0 \endcode The nativeFormats member of the RtAudio::RTAUDIO_DEVICE structure is a bit mask of the above formats which are natively supported by the device. However, RtAudio will automatically provide format conversion if a particular format is not natively supported. When the probed member of the RTAUDIO_DEVICE structure is false, the remaining structure members are undefined and the device is probably unuseable. In general, the user need not be concerned with the minimum channel values reported in the RTAUDIO_DEVICE structure. While some audio devices may require a minimum channel value > 1, RtAudio will provide automatic channel number compensation when the number of channels set by the user is less than that required by the device. Channel compensation is NOT possible when the number of channels set by the user is greater than that supported by the device. It should be noted that the capabilities reported by a device driver or underlying audio API are not always accurate and/or may be dependent on a combination of device settings. For this reason, RtAudio does not rely on the reported values when attempting to open a stream. \section settings Device Settings The next step in using RtAudio is to open a stream with particular device and parameter settings. \code #include "RtAudio.h" int main() { int channels = 2; int sample_rate = 44100; int buffer_size = 256; // 256 sample frames int n_buffers = 4; // number of internal buffers used by device int device = 0; // 0 indicates the default or first available device int stream; // our stream identifier RtAudio *audio; // Instantiate RtAudio and open a stream within a try/catch block try { audio = new RtAudio(); stream = audio->openStream(device, channels, 0, 0, RtAudio::RTAUDIO_FLOAT32, sample_rate, &buffer_size, n_buffers); } catch (RtError &error) { error.printMessage(); exit(EXIT_FAILURE); } // Clean up delete audio; return 0; } \endcode The RtAudio::openStream() method attempts to open a stream with a specified set of parameter values. When successful, a stream identifier is returned. In this case, we attempt to open a two channel playback stream with the default output device, 32-bit floating point data, a sample rate of 44100 Hz, a frame rate of 256 sample frames per read/write, and 4 internal device buffers. When device = 0, RtAudio first attempts to open the default audio device with the given parameters. If that attempt fails, RtAudio searches through the remaining available devices in an effort to find a device which will meet the given parameters. If all attempts are unsuccessful, an RtError is thrown. When a non-zero device value is specified, an attempt is made to open that device only (device = 1 specifies the first identified device, as reported by RtAudio::getDeviceInfo()). RtAudio provides four signed integer and two floating point data formats which can be specified using the RtAudio::RTAUDIO_FORMAT parameter values mentioned earlier. If the opened device does not natively support the given format, RtAudio will automatically perform the necessary data format conversion. The bufferSize parameter specifies the desired number of sample frames which will be written to and/or read from a device per write/read operation. The nBuffers parameter is used in setting the underlying device buffer parameters. Both the bufferSize and nBuffers parameters can be used to control stream latency though there is no guarantee that the passed values will be those used by a device (the nBuffers parameter is ignored when using the OS X CoreAudio and the Windows ASIO APIs). In general, lower values for both parameters will produce less latency but perhaps less robust performance. Both parameters can be specified with values of zero, in which case the smallest allowable values will be used. The bufferSize parameter is passed as a pointer and the actual value used by the stream is set during the device setup procedure. bufferSize values should be a power of two. Optimal and allowable buffer values tend to vary between systems and devices. Check the \ref osnotes section for general guidelines. As noted earlier, the device capabilities reported by a driver or underlying audio API are not always accurate and/or may be dependent on a combination of device settings. Because of this, RtAudio does not attempt to query a device's capabilities or use previously reported values when opening a device. Instead, RtAudio simply attempts to set the given parameters on a specified device and then checks whether the setup is successful or not. \section playbackb Playback (blocking functionality) Once the device is open for playback, there are only a few final steps necessary for realtime audio output. We'll first provide an example (blocking functionality) and then discuss the details. \code // playback.cpp #include "RtAudio.h" int main() { int count; int channels = 2; int sample_rate = 44100; int buffer_size = 256; // 256 sample frames int n_buffers = 4; // number of internal buffers used by device float *buffer; int device = 0; // 0 indicates the default or first available device int stream; // our stream identifier RtAudio *audio; // Open a stream during RtAudio instantiation try { audio = new RtAudio(&stream, device, channels, 0, 0, RtAudio::RTAUDIO_FLOAT32, sample_rate, &buffer_size, n_buffers); } catch (RtError &error) { error.printMessage(); exit(EXIT_FAILURE); } try { // Get a pointer to the stream buffer buffer = (float *) audio->getStreamBuffer(stream); // Start the stream audio->startStream(stream); } catch (RtError &error) { error.printMessage(); goto cleanup; } // An example loop which runs for about 40000 sample frames count = 0; while (count < 40000) { // Generate your samples and fill the buffer with buffer_size sample frames of data ... // Trigger the output of the data buffer try { audio->tickStream(stream); } catch (RtError &error) { error.printMessage(); goto cleanup; } count += buffer_size; } try { // Stop and close the stream audio->stopStream(stream); audio->closeStream(stream); } catch (RtError &error) { error.printMessage(); } cleanup: delete audio; return 0; } \endcode The first thing to notice in this example is that we attempt to open a stream during class instantiation with an overloaded constructor. This constructor simply combines the functionality of the default constructor, used earlier, and the RtAudio::openStream() method. Again, we have specified a device value of 0, indicating that the default or first available device meeting the given parameters should be used. The integer identifier of the opened stream is returned via the stream pointer value. An attempt is made to open the stream with the specified bufferSize value. However, it is possible that the device will not accept this value, in which case the closest allowable size is used and returned via the pointer value. The constructor can fail if no available devices are found, or a memory allocation or device driver error occurs. Note that you should not call the RtAudio destructor if an exception is thrown during instantiation. Because RtAudio can typically be used to simultaneously control more than a single stream, it is necessary that the stream identifier be provided to nearly all public methods. Assuming the constructor is successful, it is necessary to get a pointer to the buffer, provided by RtAudio, for use in feeding data to/from the opened stream. Note that the user should NOT attempt to deallocate the stream buffer memory ... memory management for the stream buffer will be automatically controlled by RtAudio. After starting the stream with RtAudio::startStream(), one simply fills that buffer, which is of length equal to the returned bufferSize value, with interleaved audio data (in the specified format) for playback. Finally, a call to the RtAudio::tickStream() routine triggers a blocking write call for the stream. In general, one should call the RtAudio::stopStream() and RtAudio::closeStream() methods after finishing with a stream. However, both methods will implicitly be called during object destruction if necessary. \section playbackc Playback (callback functionality) The primary difference in using RtAudio with callback functionality involves the creation of a user-defined callback function. Here is an example which produces a sawtooth waveform for playback. \code #include #include "RtAudio.h" // Two-channel sawtooth wave generator. int sawtooth(char *buffer, int buffer_size, void *data) { int i, j; double *my_buffer = (double *) buffer; double *my_data = (double *) data; // Write interleaved audio data. for (i=0; i= 1.0) my_data[j] -= 2.0; } } return 0; } int main() { int channels = 2; int sample_rate = 44100; int buffer_size = 256; // 256 sample frames int n_buffers = 4; // number of internal buffers used by device int device = 0; // 0 indicates the default or first available device int stream; // our stream identifier double data[2]; char input; RtAudio *audio; // Open a stream during RtAudio instantiation try { audio = new RtAudio(&stream, device, channels, 0, 0, RtAudio::RTAUDIO_FLOAT64, sample_rate, &buffer_size, n_buffers); } catch (RtError &error) { error.printMessage(); exit(EXIT_FAILURE); } try { // Set the stream callback function audio->setStreamCallback(stream, &sawtooth, (void *)data); // Start the stream audio->startStream(stream); } catch (RtError &error) { error.printMessage(); goto cleanup; } cout << "\nPlaying ... press to quit.\n"; cin.get(input); try { // Stop and close the stream audio->stopStream(stream); audio->closeStream(stream); } catch (RtError &error) { error.printMessage(); } cleanup: delete audio; return 0; } \endcode After opening the device in exactly the same way as the previous example (except with a data format change), we must set our callback function for the stream using RtAudio::setStreamCallback(). When the underlying audio API uses blocking calls (OSS, ALSA, SGI, and Windows DirectSound), this method will spawn a new process (or thread) which automatically calls the callback function when more data is needed. Callback-based audio APIs (OS X CoreAudio and ASIO) implement their own event notification schemes. Note that the callback function is called only when the stream is "running" (between calls to the RtAudio::startStream() and RtAudio::stopStream() methods). The last argument to RtAudio::setStreamCallback() is a pointer to arbitrary data that you wish to access from within your callback function. In this example, we stop the stream with an explicit call to RtAudio::stopStream(). When using callback functionality, it is also possible to stop a stream by returning a non-zero value from the callback function. Once set with RtAudio::setStreamCallback, the callback process exists for the life of the stream (until the stream is closed with RtAudio::closeStream() or the RtAudio instance is deleted). It is possible to disassociate a callback function and cancel its process for an open stream using the RtAudio::cancelStreamCallback() method. The stream can then be used with blocking functionality or a new callback can be associated with it. \section recording Recording Using RtAudio for audio input is almost identical to the way it is used for playback. Here's the blocking playback example rewritten for recording: \code // record.cpp #include "RtAudio.h" int main() { int count; int channels = 2; int sample_rate = 44100; int buffer_size = 256; // 256 sample frames int n_buffers = 4; // number of internal buffers used by device float *buffer; int device = 0; // 0 indicates the default or first available device int stream; // our stream identifier RtAudio *audio; // Instantiate RtAudio and open a stream. try { audio = new RtAudio(&stream, 0, 0, device, channels, RtAudio::RTAUDIO_FLOAT32, sample_rate, &buffer_size, n_buffers); } catch (RtError &error) { error.printMessage(); exit(EXIT_FAILURE); } try { // Get a pointer to the stream buffer buffer = (float *) audio->getStreamBuffer(stream); // Start the stream audio->startStream(stream); } catch (RtError &error) { error.printMessage(); goto cleanup; } // An example loop which runs for about 40000 sample frames count = 0; while (count < 40000) { // Read a buffer of data try { audio->tickStream(stream); } catch (RtError &error) { error.printMessage(); goto cleanup; } // Process the input samples (buffer_size sample frames) that were read ... count += buffer_size; } try { // Stop the stream audio->stopStream(stream); } catch (RtError &error) { error.printMessage(); } cleanup: delete audio; return 0; } \endcode In this example, the stream was opened for recording with a non-zero inputChannels value. The only other difference between this example and that for playback involves the order of data processing in the loop, where it is necessary to first read a buffer of input data before manipulating it. \section duplex Duplex Mode Finally, it is easy to use RtAudio for simultaneous audio input/output, or duplex operation. In this example, we use a callback function and pass our recorded data directly through for playback. \code // duplex.cpp #include #include "RtAudio.h" // Pass-through function. int pass(char *buffer, int buffer_size, void *) { // Surprise!! We do nothing to pass the data through. return 0; } int main() { int channels = 2; int sample_rate = 44100; int buffer_size = 256; // 256 sample frames int n_buffers = 4; // number of internal buffers used by device int device = 0; // 0 indicates the default or first available device int stream; // our stream identifier double data[2]; char input; RtAudio *audio; // Open a stream during RtAudio instantiation try { audio = new RtAudio(&stream, device, channels, device, channels, RtAudio::RTAUDIO_FLOAT64, sample_rate, &buffer_size, n_buffers); } catch (RtError &error) { error.printMessage(); exit(EXIT_FAILURE); } try { // Set the stream callback function audio->setStreamCallback(stream, &pass, NULL); // Start the stream audio->startStream(stream); } catch (RtError &error) { error.printMessage(); goto cleanup; } cout << "\nRunning duplex ... press to quit.\n"; cin.get(input); try { // Stop and close the stream audio->stopStream(stream); audio->closeStream(stream); } catch (RtError &error) { error.printMessage(); } cleanup: delete audio; return 0; } \endcode When an RtAudio stream is running in duplex mode (nonzero input AND output channels), the audio write (playback) operation always occurs before the audio read (record) operation. This sequence allows the use of a single buffer to store both output and input data. As we see with this example, the write-read sequence of operations does not preclude the use of RtAudio in situations where input data is first processed and then output through a duplex stream. When the stream buffer is first allocated, it is initialized with zeros, which produces no audible result when output to the device. In this example, anything recorded by the audio stream input will be played out during the next round of audio processing. Note that duplex operation can also be achieved by opening one output stream and one input stream using the same or different devices. However, there may be timing problems when attempting to use two different devices, due to possible device clock variations, unless a common external "sync" is provided. This becomes even more difficult to achieve using two separate callback streams because it is not possible to explicitly control the calling order of the callback functions. \section methods Summary of Methods The following is short summary of public methods (not including constructors and the destructor) provided by RtAudio:
  • RtAudio::openStream(): opens a stream with the specified parameters.
  • RtAudio::setStreamCallback(): sets a user-defined callback function for a given stream.
  • RtAudio::cancelStreamCallback(): cancels a callback process and function for a given stream.
  • RtAudio::getDeviceCount(): returns the number of audio devices available.
  • RtAudio::getDeviceInfo(): fills a user-supplied RTAUDIO_DEVICE structure for a specified device.
  • RtAudio::getStreamBuffer(): returns a pointer to the stream buffer.
  • RtAudio::tickStream(): triggers processing of input/output data for a stream (blocking).
  • RtAudio::closeStream(): closes the specified stream (implicitly called during object destruction). Once a stream is closed, the stream identifier is invalid and should not be used in calling any other RtAudio methods.
  • RtAudio::startStream(): (re)starts the specified stream, typically after it has been stopped with either stopStream() or abortStream() or after first opening the stream.
  • RtAudio::stopStream(): stops the specified stream, allowing any remaining samples in the queue to be played out and/or read in. This does not implicitly call RtAudio::closeStream().
  • RtAudio::abortStream(): stops the specified stream, discarding any remaining samples in the queue. This does not implicitly call closeStream().
  • RtAudio::streamWillBlock(): queries a stream to determine whether a call to the tickStream() method will block. A return value of 0 indicates that the stream will NOT block. A positive return value indicates the number of sample frames that cannot yet be processed without blocking.
\section compiling Compiling In order to compile RtAudio for a specific OS and audio API, it is necessary to supply the appropriate preprocessor definition and library within the compiler statement:

OS: Audio API: Preprocessor Definition: Library or Framework: Example Compiler Statement:
Linux ALSA __LINUX_ALSA__ asound, pthread g++ -Wall -D__LINUX_ALSA__ -o probe probe.cpp RtAudio.cpp -lasound -lpthread
Linux OSS __LINUX_OSS__ pthread g++ -Wall -D__LINUX_OSS__ -o probe probe.cpp RtAudio.cpp -lpthread
Macintosh OS X CoreAudio __MACOSX_CORE__ pthread, stdc++, CoreAudio cc -Wall -D__MACOSX_CORE__ -o probe probe.cpp RtAudio.cpp -framework CoreAudio -lstdc++ -lpthread
Irix AL __IRIX_AL__ audio, pthread CC -Wall -D__IRIX_AL__ -o probe probe.cpp RtAudio.cpp -laudio -lpthread
Windows Direct Sound __WINDOWS_DS__ dsound.lib (ver. 5.0 or higher), multithreaded compiler specific
Windows ASIO __WINDOWS_ASIO__ various ASIO header and source files compiler specific

The example compiler statements above could be used to compile the probe.cpp example file, assuming that probe.cpp, RtAudio.h, and RtAudio.cpp all exist in the same directory. \section debug Debugging If you are having problems getting RtAudio to run on your system, try passing the preprocessor definition __RTAUDIO_DEBUG__ to the compiler (or uncomment the definition at the bottom of RtAudio.h). A variety of warning messages will be displayed which may help in determining the problem. \section osnotes OS Notes RtAudio is designed to provide a common API across the various supported operating systems and audio libraries. Despite that, some issues need to be mentioned with regard to each. \subsection linux Linux: RtAudio for Linux was developed under Redhat distributions 7.0 - 7.2. Two different audio APIs are supported on Linux platforms: OSS and ALSA. The OSS API has existed for at least 6 years and the Linux kernel is distributed with free versions of OSS audio drivers. Therefore, a generic Linux system is most likely to have OSS support. The ALSA API, although relatively new, is now part of the Linux development kernel and offers significantly better functionality than the OSS API. RtAudio provides support for the 0.9 and higher versions of ALSA. Input/output latency on the order of 15 milliseconds can typically be achieved under both OSS or ALSA by fine-tuning the RtAudio buffer parameters (without kernel modifications). Latencies on the order of 5 milliseconds or less can be achieved using a low-latency kernel patch and increasing FIFO scheduling priority. The pthread library, which is used for callback functionality, is a standard component of all Linux distributions. The ALSA library includes OSS emulation support. That means that you can run programs compiled for the OSS API even when using the ALSA drivers and library. It should be noted however that OSS emulation under ALSA is not perfect. Specifically, channel number queries seem to consistently produce invalid results. While OSS emulation is successful for the majority of RtAudio tests, it is recommended that the native ALSA implementation of RtAudio be used on systems which have ALSA drivers installed. The ALSA implementation of RtAudio makes no use of the ALSA "plug" interface. All necessary data format conversions, channel compensation, de-interleaving, and byte-swapping is handled by internal RtAudio routines. \subsection macosx Macintosh OS X (CoreAudio): The Apple CoreAudio API is based on a callback scheme. RtAudio provides blocking functionality, in addition to callback functionality, within the context of that behavior. CoreAudio is designed to use a separate callback procedure for each of its audio devices. A single RtAudio duplex stream using two different devices is supported, though it cannot be guaranteed to always behave correctly because we cannot synchronize these two callbacks. This same functionality can be achieved with better synchrony by opening two separate streams for the devices and using RtAudio blocking calls (i.e. RtAudio::tickStream()). The numberOfBuffers parameter to the RtAudio::openStream() function has no affect in this implementation. It is not currently possible to have multiple simultaneous RtAudio streams accessing the same device. \subsection irix Irix (SGI): The Irix version of RtAudio was written and tested on an SGI Indy running Irix version 6.5.4 and the newer "al" audio library. RtAudio does not compile under Irix version 6.3, mainly because the C++ compiler is too old. Despite the relatively slow speed of the Indy, RtAudio was found to behave quite well and input/output latency was very good. No problems were found with respect to using the pthread library. \subsection windowsds Windows (DirectSound): In order to compile RtAudio under Windows for the DirectSound API, you must have the header and source files for DirectSound version 5.0 or higher. As far as I know, there is no DirectSoundCapture support for Windows NT. Audio output latency with DirectSound can be reasonably good (on the order of 20 milliseconds). On the other hand, input audio latency tends to be terrible (100 milliseconds or more). Further, DirectSound drivers tend to crash easily when experimenting with buffer parameters. On my system, I found it necessary to use values around nBuffers = 8 and bufferSize = 512 to avoid crashes. RtAudio was developed with Visual C++ version 6.0. I was forced in several instances to modify code in order to get it to compile under the non-standard version of C++ that Microsoft so unprofessionally implemented. Unfortunately, it appears they are continuing to undermine the C++ standard with more recent compiler releases. \subsection windowsasio Windows (ASIO): The Steinberg ASIO audio API is based on a callback scheme. In addition, the API allows only a single device driver to be loaded and accessed at a time. Therefore, it is not possible to have multiple simultaneous RtAudio streams running concurrently with this API. ASIO device drivers must be supplied by audio hardware manufacturers, though ASIO emulation is possible on top of systems with DirectSound drivers. The numberOfBuffers parameter to the RtAudio::openStream() function has no affect in this implementation. A number of ASIO source and header files are required for use with RtAudio. Specifically, an RtAudio project must include the following files: asio.h,cpp; asiodrivers.h,cpp; asiolist.h,cpp; asiodrvr.h; asiosys.h; ginclude.h; iasiodrv.h. See the /tests/asio/ directory for example Visual C++ 6.0 projects. \section acknowledge Acknowledgements The RtAudio API incorporates many of the concepts developed in the PortAudio project by Phil Burk and Ross Bencina. Early development also incorporated ideas from Bill Schottstaedt's sndlib. The CCRMA SoundWire group provided valuable feedback during the API proposal stages. RtAudio, version 2.0, was slowly developed over the course of many months while in residence at the Institut Universitari de L'Audiovisual (IUA) in Barcelona, Spain, the Laboratory of Acoustics and Audio Signal Processing at the Helsinki University of Technology, Finland, and the Center for Computer Research in Music and Acoustics (CCRMA) at Stanford University. This work was supported in part by the United States Air Force Office of Scientific Research (grant \#F49620-99-1-0293). \section license License RtAudio: a realtime audio i/o C++ class
Copyright (c) 2001-2002 Gary P. Scavone Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Any person wishing to distribute modifications to the Software is requested to send the modifications to the original developer so that they can be incorporated into the canonical version. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */