src/multimedia/audio/qaudio.cpp
changeset 3 41300fa6a67c
parent 0 1918ee327afb
child 4 3b1da2848fc7
equal deleted inserted replaced
2:56cd8111b7f7 3:41300fa6a67c
    69 */
    69 */
    70 
    70 
    71 /*!
    71 /*!
    72     \enum QAudio::Error
    72     \enum QAudio::Error
    73 
    73 
    74     \value NoError       No errors have occurred
    74     \value NoError         No errors have occurred
    75     \value OpenError     An error opening the audio device
    75     \value OpenError       An error opening the audio device
    76     \value IOError       An error occurred during read/write of audio device
    76     \value IOError         An error occurred during read/write of audio device
    77     \value UnderrunError Audio data is not being fed to the audio device at a fast enough rate
    77     \value UnderrunError   Audio data is not being fed to the audio device at a fast enough rate
    78     \value FatalError    A non-recoverable error has occurred, the audio device is not usable at this time.
    78     \value FatalError      A non-recoverable error has occurred, the audio device is not usable at this time.
    79 */
    79 */
    80 
    80 
    81 /*!
    81 /*!
    82     \enum QAudio::State
    82     \enum QAudio::State
    83 
    83 
    84     \value ActiveState   Audio data is being processed, this state is set after start() is called
    84     \value ActiveState     Audio data is being processed, this state is set after start() is called
    85                          and while audio data is available to be processed.
    85                            and while audio data is available to be processed.
    86     \value SuspendState  The audio device is in a suspended state, this state will only be entered
    86     \value SuspendedState  The audio device is in a suspended state, this state will only be entered
    87                          after suspend() is called.
    87                            after suspend() is called.
    88     \value StopState     The audio device is closed, not processing any audio data
    88     \value StoppedState    The audio device is closed, not processing any audio data
    89     \value IdleState     The QIODevice passed in has no data and audio system's buffer is empty, this state
    89     \value IdleState       The QIODevice passed in has no data and audio system's buffer is empty, this state
    90                          is set after start() is called and while no audio data is available to be processed.
    90                            is set after start() is called and while no audio data is available to be processed.
    91 */
    91 */
    92 
    92 
    93 /*!
    93 /*!
    94     \enum QAudio::Mode
    94     \enum QAudio::Mode
    95 
    95