summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/multimedia/qmediaserviceprovider.cpp6
-rw-r--r--src/multimedia/video/qabstractvideofilter.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/multimedia/qmediaserviceprovider.cpp b/src/multimedia/qmediaserviceprovider.cpp
index fe372ac5f..563af846a 100644
--- a/src/multimedia/qmediaserviceprovider.cpp
+++ b/src/multimedia/qmediaserviceprovider.cpp
@@ -850,19 +850,19 @@ QMediaServiceProvider *QMediaServiceProvider::defaultServiceProvider()
/*!
\since 5.3
- \fn QMediaServiceSupportedDevicesInterface::defaultDevice(const QByteArray &service) const
+ \fn QByteArray QMediaServiceSupportedDevicesInterface::defaultDevice(const QByteArray &service) const
Returns the default device for a \a service type.
*/
/*!
- \fn QMediaServiceSupportedDevicesInterface::devices(const QByteArray &service) const
+ \fn QList<QByteArray> QMediaServiceSupportedDevicesInterface::devices(const QByteArray &service) const
Returns a list of devices available for a \a service type.
*/
/*!
- \fn QMediaServiceSupportedDevicesInterface::deviceDescription(const QByteArray &service, const QByteArray &device)
+ \fn QString QMediaServiceSupportedDevicesInterface::deviceDescription(const QByteArray &service, const QByteArray &device)
Returns the description of a \a device available for a \a service type.
*/
diff --git a/src/multimedia/video/qabstractvideofilter.cpp b/src/multimedia/video/qabstractvideofilter.cpp
index f26d3c341..ccfe9ccdd 100644
--- a/src/multimedia/video/qabstractvideofilter.cpp
+++ b/src/multimedia/video/qabstractvideofilter.cpp
@@ -259,7 +259,7 @@ QVideoFilterRunnable::~QVideoFilterRunnable()
}
/*!
- Constructs a new QAbstractVideoFilter instance.
+ Constructs a new QAbstractVideoFilter instance with parent object \a parent.
*/
QAbstractVideoFilter::QAbstractVideoFilter(QObject *parent) :
QObject(parent),