Home   Class/Enum List   File List   Compound Members   C interface  

Classes | Public Types | Public Member Functions | Static Public Member Functions | List of all members
RtAudio Class Reference

Realtime audio i/o C++ classes. More...

#include <RtAudio.h>

Classes

struct  DeviceInfo
 The public device information structure for returning queried values. More...
 
struct  StreamOptions
 The structure for specifying stream options. More...
 
struct  StreamParameters
 The structure for specifying input or output stream parameters. More...
 

Public Types

enum  Api {
  UNSPECIFIED, LINUX_ALSA, LINUX_PULSE, LINUX_OSS,
  UNIX_JACK, MACOSX_CORE, WINDOWS_WASAPI, WINDOWS_ASIO,
  WINDOWS_DS, RTAUDIO_DUMMY, NUM_APIS
}
 Audio API specifier arguments. More...
 

Public Member Functions

 RtAudio (RtAudio::Api api=UNSPECIFIED)
 The class constructor. More...
 
 ~RtAudio ()
 The destructor. More...
 
RtAudio::Api getCurrentApi (void)
 Returns the audio API specifier for the current instance of RtAudio.
 
unsigned int getDeviceCount (void)
 A public function that queries for the number of audio devices available. More...
 
RtAudio::DeviceInfo getDeviceInfo (unsigned int device)
 Return an RtAudio::DeviceInfo structure for a specified device number. More...
 
unsigned int getDefaultOutputDevice (void)
 A function that returns the index of the default output device. More...
 
unsigned int getDefaultInputDevice (void)
 A function that returns the index of the default input device. More...
 
void openStream (RtAudio::StreamParameters *outputParameters, RtAudio::StreamParameters *inputParameters, RtAudioFormat format, unsigned int sampleRate, unsigned int *bufferFrames, RtAudioCallback callback, void *userData=NULL, RtAudio::StreamOptions *options=NULL, RtAudioErrorCallback errorCallback=NULL)
 A public function for opening a stream with the specified parameters. More...
 
void closeStream (void)
 A function that closes a stream and frees any associated stream memory. More...
 
void startStream (void)
 A function that starts a stream. More...
 
void stopStream (void)
 Stop a stream, allowing any samples remaining in the output queue to be played. More...
 
void abortStream (void)
 Stop a stream, discarding any samples remaining in the input/output queue. More...
 
bool isStreamOpen (void) const
 Returns true if a stream is open and false if not.
 
bool isStreamRunning (void) const
 Returns true if the stream is running and false if it is stopped or not open.
 
double getStreamTime (void)
 Returns the number of elapsed seconds since the stream was started. More...
 
void setStreamTime (double time)
 Set the stream time to a time in seconds greater than or equal to 0.0. More...
 
long getStreamLatency (void)
 Returns the internal stream latency in sample frames. More...
 
unsigned int getStreamSampleRate (void)
 Returns actual sample rate in use by the stream. More...
 
void showWarnings (bool value=true)
 Specify whether warning messages should be printed to stderr.
 

Static Public Member Functions

static std::string getVersion (void)
 A static function to determine the current RtAudio version.
 
static void getCompiledApi (std::vector< RtAudio::Api > &apis)
 A static function to determine the available compiled audio APIs. More...
 
static std::string getApiName (RtAudio::Api api)
 Return the name of a specified compiled audio API. More...
 
static std::string getApiDisplayName (RtAudio::Api api)
 Return the display name of a specified compiled audio API. More...
 
static RtAudio::Api getCompiledApiByName (const std::string &name)
 Return the compiled audio API having the given name. More...
 

Detailed Description

Realtime audio i/o C++ classes.

RtAudio provides a common API (Application Programming Interface) for realtime audio input/output across Linux (native ALSA, Jack, and OSS), Macintosh OS X (CoreAudio and Jack), and Windows (DirectSound, ASIO and WASAPI) operating systems.

RtAudio GitHub site: https://github.com/thestk/rtaudio RtAudio WWW site: http://www.music.mcgill.ca/~gary/rtaudio/

RtAudio: realtime audio i/o C++ classes Copyright (c) 2001-2021 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 asked to send the modifications to the original developer so that they can be incorporated into the canonical version. This is, however, not a binding provision of this license.

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.


Class Documentation

struct RtAudio::DeviceInfo

The public device information structure for returning queried values.

Class Members
bool probed

true if the device capabilities were successfully probed.

string name

Character string device identifier.

unsigned int outputChannels

Maximum output channels supported by device.

unsigned int inputChannels

Maximum input channels supported by device.

unsigned int duplexChannels

Maximum simultaneous input/output channels supported by device.

bool isDefaultOutput

true if this is the default output device.

bool isDefaultInput

true if this is the default input device.

vector< unsigned int > sampleRates

Supported sample rates (queried from list of standard rates).

unsigned int preferredSampleRate

Preferred sample rate, e.g. for WASAPI the system sample rate.

RtAudioFormat nativeFormats

Bit mask of supported data formats.

struct RtAudio::StreamOptions

The structure for specifying stream options.

The following flags can be OR'ed together to allow a client to make changes to the default stream behavior:

  • RTAUDIO_NONINTERLEAVED: Use non-interleaved buffers (default = interleaved).
  • RTAUDIO_MINIMIZE_LATENCY: Attempt to set stream parameters for lowest possible latency.
  • RTAUDIO_HOG_DEVICE: Attempt grab device for exclusive use.
  • RTAUDIO_SCHEDULE_REALTIME: Attempt to select realtime scheduling for callback thread.
  • RTAUDIO_ALSA_USE_DEFAULT: Use the "default" PCM device (ALSA only).

By default, RtAudio streams pass and receive audio data from the client in an interleaved format. By passing the RTAUDIO_NONINTERLEAVED flag to the openStream() function, audio data will instead be presented in non-interleaved buffers. In this case, each buffer argument in the RtAudioCallback function will point to a single array of data, with nFrames samples for each channel concatenated back-to-back. For example, the first sample of data for the second channel would be located at index nFrames (assuming the buffer pointer was recast to the correct data type for the stream).

Certain audio APIs offer a number of parameters that influence the I/O latency of a stream. By default, RtAudio will attempt to set these parameters internally for robust (glitch-free) performance (though some APIs, like Windows DirectSound, make this difficult). By passing the RTAUDIO_MINIMIZE_LATENCY flag to the openStream() function, internal stream settings will be influenced in an attempt to minimize stream latency, though possibly at the expense of stream performance.

If the RTAUDIO_HOG_DEVICE flag is set, RtAudio will attempt to open the input and/or output stream device(s) for exclusive use. Note that this is not possible with all supported audio APIs.

If the RTAUDIO_SCHEDULE_REALTIME flag is set, RtAudio will attempt to select realtime scheduling (round-robin) for the callback thread. The priority parameter will only be used if the RTAUDIO_SCHEDULE_REALTIME flag is set. It defines the thread's realtime priority.

If the RTAUDIO_ALSA_USE_DEFAULT flag is set, RtAudio will attempt to open the "default" PCM device when using the ALSA API. Note that this will override any specified input or output device id.

The numberOfBuffers parameter can be used to control stream latency in the Windows DirectSound, Linux OSS, and Linux Alsa APIs only. A value of two is usually the smallest allowed. Larger numbers can potentially result in more robust stream performance, though likely at the cost of stream latency. The value set by the user is replaced during execution of the RtAudio::openStream() function by the value actually used by the system.

The streamName parameter can be used to set the client name when using the Jack API. By default, the client name is set to RtApiJack. However, if you wish to create multiple instances of RtAudio with Jack, each instance must have a unique client name.

Class Members
RtAudioStreamFlags flags

A bit-mask of stream flags (RTAUDIO_NONINTERLEAVED, RTAUDIO_MINIMIZE_LATENCY, RTAUDIO_HOG_DEVICE, RTAUDIO_ALSA_USE_DEFAULT).

unsigned int numberOfBuffers

Number of stream buffers.

string streamName

A stream name (currently used only in Jack).

int priority

Scheduling priority of callback thread (only used with flag RTAUDIO_SCHEDULE_REALTIME).

struct RtAudio::StreamParameters

The structure for specifying input or output stream parameters.

Class Members
unsigned int deviceId

Device index (0 to getDeviceCount() - 1).

unsigned int nChannels

Number of channels.

unsigned int firstChannel

First channel index on device (default = 0).

Member Enumeration Documentation

Audio API specifier arguments.

Enumerator
UNSPECIFIED 

Search for a working compiled API.

LINUX_ALSA 

The Advanced Linux Sound Architecture API.

LINUX_PULSE 

The Linux PulseAudio API.

LINUX_OSS 

The Linux Open Sound System API.

UNIX_JACK 

The Jack Low-Latency Audio Server API.

MACOSX_CORE 

Macintosh OS-X Core Audio API.

WINDOWS_WASAPI 

The Microsoft WASAPI API.

WINDOWS_ASIO 

The Steinberg Audio Stream I/O API.

WINDOWS_DS 

The Microsoft DirectSound API.

RTAUDIO_DUMMY 

A compilable but non-functional API.

NUM_APIS 

Number of values in this enum.

Constructor & Destructor Documentation

RtAudio::RtAudio ( RtAudio::Api  api = UNSPECIFIED)

The class constructor.

The constructor performs minor initialization tasks. An exception can be thrown if no API support is compiled.

If no API argument is specified and multiple API support has been compiled, the default order of use is JACK, ALSA, OSS (Linux systems) and ASIO, DS (Windows systems).

RtAudio::~RtAudio ( )

The destructor.

If a stream is running or open, it will be stopped and closed automatically.

Member Function Documentation

static void RtAudio::getCompiledApi ( std::vector< RtAudio::Api > &  apis)
static

A static function to determine the available compiled audio APIs.

The values returned in the std::vector can be compared against the enumerated list values. Note that there can be more than one API compiled for certain operating systems.

static std::string RtAudio::getApiName ( RtAudio::Api  api)
static

Return the name of a specified compiled audio API.

This obtains a short lower-case name used for identification purposes. This value is guaranteed to remain identical across library versions. If the API is unknown, this function will return the empty string.

static std::string RtAudio::getApiDisplayName ( RtAudio::Api  api)
static

Return the display name of a specified compiled audio API.

This obtains a long name used for display purposes. If the API is unknown, this function will return the empty string.

static RtAudio::Api RtAudio::getCompiledApiByName ( const std::string &  name)
static

Return the compiled audio API having the given name.

A case insensitive comparison will check the specified name against the list of compiled APIs, and return the one which matches. On failure, the function returns UNSPECIFIED.

unsigned int RtAudio::getDeviceCount ( void  )
inline

A public function that queries for the number of audio devices available.

This function performs a system query of available devices each time it is called, thus supporting devices connected after instantiation. If a system error occurs during processing, a warning will be issued.

RtAudio::DeviceInfo RtAudio::getDeviceInfo ( unsigned int  device)
inline

Return an RtAudio::DeviceInfo structure for a specified device number.

Any device integer between 0 and getDeviceCount() - 1 is valid. If an invalid argument is provided, an RtAudioError (type = INVALID_USE) will be thrown. If a device is busy or otherwise unavailable, the structure member "probed" will have a value of "false" and all other members are undefined. If the specified device is the current default input or output device, the corresponding "isDefault" member will have a value of "true".

unsigned int RtAudio::getDefaultOutputDevice ( void  )
inline

A function that returns the index of the default output device.

If the underlying audio API does not provide a "default device", or if no devices are available, the return value will be 0. Note that this is a valid device identifier and it is the client's responsibility to verify that a device is available before attempting to open a stream.

unsigned int RtAudio::getDefaultInputDevice ( void  )
inline

A function that returns the index of the default input device.

If the underlying audio API does not provide a "default device", or if no devices are available, the return value will be 0. Note that this is a valid device identifier and it is the client's responsibility to verify that a device is available before attempting to open a stream.

void RtAudio::openStream ( RtAudio::StreamParameters outputParameters,
RtAudio::StreamParameters inputParameters,
RtAudioFormat  format,
unsigned int  sampleRate,
unsigned int *  bufferFrames,
RtAudioCallback  callback,
void *  userData = NULL,
RtAudio::StreamOptions options = NULL,
RtAudioErrorCallback  errorCallback = NULL 
)

A public function for opening a stream with the specified parameters.

An RtAudioError (type = SYSTEM_ERROR) is thrown if a stream cannot be opened with the specified parameters or an error occurs during processing. An RtAudioError (type = INVALID_USE) is thrown if any invalid device ID or channel number parameters are specified.

Parameters
outputParametersSpecifies output stream parameters to use when opening a stream, including a device ID, number of channels, and starting channel number. For input-only streams, this argument should be NULL. The device ID is an index value between 0 and getDeviceCount() - 1.
inputParametersSpecifies input stream parameters to use when opening a stream, including a device ID, number of channels, and starting channel number. For output-only streams, this argument should be NULL. The device ID is an index value between 0 and getDeviceCount() - 1.
formatAn RtAudioFormat specifying the desired sample data format.
sampleRateThe desired sample rate (sample frames per second).
*bufferFramesA pointer to a value indicating the desired internal buffer size in sample frames. The actual value used by the device is returned via the same pointer. A value of zero can be specified, in which case the lowest allowable value is determined.
callbackA client-defined function that will be invoked when input data is available and/or output data is needed.
userDataAn optional pointer to data that can be accessed from within the callback function.
optionsAn optional pointer to a structure containing various global stream options, including a list of OR'ed RtAudioStreamFlags and a suggested number of stream buffers that can be used to control stream latency. More buffers typically result in more robust performance, though at a cost of greater latency. If a value of zero is specified, a system-specific median value is chosen. If the RTAUDIO_MINIMIZE_LATENCY flag bit is set, the lowest allowable value is used. The actual value used is returned via the structure argument. The parameter is API dependent.
errorCallbackA client-defined function that will be invoked when an error has occurred.
void RtAudio::closeStream ( void  )
inline

A function that closes a stream and frees any associated stream memory.

If a stream is not open, this function issues a warning and returns (no exception is thrown).

void RtAudio::startStream ( void  )
inline

A function that starts a stream.

An RtAudioError (type = SYSTEM_ERROR) is thrown if an error occurs during processing. An RtAudioError (type = INVALID_USE) is thrown if a stream is not open. A warning is issued if the stream is already running.

void RtAudio::stopStream ( void  )
inline

Stop a stream, allowing any samples remaining in the output queue to be played.

An RtAudioError (type = SYSTEM_ERROR) is thrown if an error occurs during processing. An RtAudioError (type = INVALID_USE) is thrown if a stream is not open. A warning is issued if the stream is already stopped.

void RtAudio::abortStream ( void  )
inline

Stop a stream, discarding any samples remaining in the input/output queue.

An RtAudioError (type = SYSTEM_ERROR) is thrown if an error occurs during processing. An RtAudioError (type = INVALID_USE) is thrown if a stream is not open. A warning is issued if the stream is already stopped.

double RtAudio::getStreamTime ( void  )
inline

Returns the number of elapsed seconds since the stream was started.

If a stream is not open, an RtAudioError (type = INVALID_USE) will be thrown.

void RtAudio::setStreamTime ( double  time)
inline

Set the stream time to a time in seconds greater than or equal to 0.0.

If a stream is not open, an RtAudioError (type = INVALID_USE) will be thrown.

long RtAudio::getStreamLatency ( void  )
inline

Returns the internal stream latency in sample frames.

The stream latency refers to delay in audio input and/or output caused by internal buffering by the audio system and/or hardware. For duplex streams, the returned value will represent the sum of the input and output latencies. If a stream is not open, an RtAudioError (type = INVALID_USE) will be thrown. If the API does not report latency, the return value will be zero.

unsigned int RtAudio::getStreamSampleRate ( void  )
inline

Returns actual sample rate in use by the stream.

On some systems, the sample rate used may be slightly different than that specified in the stream parameters. If a stream is not open, an RtAudioError (type = INVALID_USE) will be thrown.


The documentation for this class was generated from the following file:

©2001-2021 Gary P. Scavone, McGill University. All Rights Reserved.
Maintained by Gary P. Scavone.