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.
The RtAudio::DeviceInfo structure is defined in RtAudio.h and provides a variety of information useful in assessing the capabilities of a device:
The following data formats are defined and fully supported by RtAudio:
The nativeFormats
member of the RtAudio::DeviceInfo 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::DeviceInfo structure is false, the remaining structure members are undefined and the device is probably unusable.
Some audio devices may require a minimum channel value greater than one. 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 queried values when attempting to open a stream.
©2001-2013 Gary P. Scavone, McGill University. All Rights Reserved. Maintained by Gary P. Scavone. |