summaryrefslogtreecommitdiffstats
path: root/src/multimedia/controls/qaudiodecodercontrol_p.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/multimedia/controls/qaudiodecodercontrol_p.cpp')
-rw-r--r--src/multimedia/controls/qaudiodecodercontrol_p.cpp19
1 files changed, 14 insertions, 5 deletions
diff --git a/src/multimedia/controls/qaudiodecodercontrol_p.cpp b/src/multimedia/controls/qaudiodecodercontrol_p.cpp
index a6c178b17..d2e1c7e4f 100644
--- a/src/multimedia/controls/qaudiodecodercontrol_p.cpp
+++ b/src/multimedia/controls/qaudiodecodercontrol_p.cpp
@@ -174,6 +174,15 @@ QAudioDecoderControl::QAudioDecoderControl(QObject *parent):
*/
/*!
+ \fn QAudioDecoderControl::bufferAvailable() const
+
+ Returns true if a buffer is available to be read,
+ and false otherwise. If there is no buffer available, calling
+ the \l read() function may block until a buffer is available or
+ the end of the media is reached
+*/
+
+/*!
\fn QAudioDecoderControl::sourceChanged()
Signals that the current source of the decoder has changed.
@@ -186,7 +195,7 @@ QAudioDecoderControl::QAudioDecoderControl(QObject *parent):
Signals that the current audio format of the decoder has changed to \a format.
- \sa audioFormat(), setAudioFormat
+ \sa audioFormat(), setAudioFormat()
*/
/*!
@@ -195,7 +204,7 @@ QAudioDecoderControl::QAudioDecoderControl(QObject *parent):
Signals that the decoding has finished successfully.
If decoding fails, error signal is emitted instead.
- \sa start(), stop(), error
+ \sa start(), stop(), error()
*/
/*!
@@ -203,7 +212,7 @@ QAudioDecoderControl::QAudioDecoderControl(QObject *parent):
Signals that the current \a position of the decoder has changed.
- \sa durationChanged
+ \sa durationChanged()
*/
/*!
@@ -211,7 +220,7 @@ QAudioDecoderControl::QAudioDecoderControl(QObject *parent):
Signals that the estimated \a duration of the decoded data has changed.
- \sa positionChanged
+ \sa positionChanged()
*/
/*!
@@ -220,7 +229,7 @@ QAudioDecoderControl::QAudioDecoderControl(QObject *parent):
Any buffers returned should have this format.
- \sa setAudioFormat, audioFormatChanged
+ \sa setAudioFormat(), formatChanged()
*/
/*!