Home · All Namespaces · All Classes · Grouped Classes · Modules · Functions |
The QAudio namespace provides a container for miscellaneous Audio functionality. More...
#include <QAudio>
The QAudio namespace provides a container for miscellaneous Audio functionality.
The QAudio namespace defines various functions and enums that are used globally by the QAudio library.
Defines the types of audio features that a particular audio device is capable of. The QAudio::AudioCapabilities defines all capabilities supported by the audio device. For instance, InputOnly | OutputOnly signifies that the Audio Device is capable of Input or Output capability at a particular time, but not both. InputOnly | OutputOnly | InputAndOuput specifies that the device can be used in full duplex or half duplex modes.
Constant | Value | Description |
---|---|---|
QAudio::None | 0x0 | No capabilities. |
QAudio::InputOnly | 0x01 | Only input capability is supported. |
QAudio::OutputOnly | 0x02 | Only output capability is supported. |
QAudio::InputAndOutput | 0x04 | Both input and output capabilities are supported. |
The AudioCapabilities type is a typedef for QFlags<AudioCapability>. It stores an OR combination of AudioCapability values.
Copyright © 2009 Trolltech | Trademarks | Qt Extended 4.4.3 |