Updated IID, services, and controls to use qt-project URL
Instead of com.nokia.qt we should use org.qt-project.qt. All the identifiers have also been updated to use pure lowercase, and where used the version numbers have been updated to 5.0. Change-Id: Ib209327f5205f5a086a5932394504a8a52e1f712 Reviewed-by: Dmytro Poplavskiy <dmytro.poplavskiy@nokia.com>
This commit is contained in:
@@ -102,7 +102,7 @@ void MediaExample::MediaControl()
|
|||||||
{
|
{
|
||||||
//! [Request control]
|
//! [Request control]
|
||||||
QMediaPlayerControl *control = qobject_cast<QMediaPlayerControl *>(
|
QMediaPlayerControl *control = qobject_cast<QMediaPlayerControl *>(
|
||||||
mediaService->requestControl("com.nokia.Qt.QMediaPlayerControl/1.0"));
|
mediaService->requestControl("org.qt-project.qt.mediaplayercontrol/5.0"));
|
||||||
//! [Request control]
|
//! [Request control]
|
||||||
Q_UNUSED(control);
|
Q_UNUSED(control);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ struct Q_MULTIMEDIA_EXPORT QAudioSystemFactoryInterface
|
|||||||
};
|
};
|
||||||
|
|
||||||
#define QAudioSystemFactoryInterface_iid \
|
#define QAudioSystemFactoryInterface_iid \
|
||||||
"com.nokia.qt.QAudioSystemFactoryInterface"
|
"org.qt-project.qt.audiosystemfactory/5.0"
|
||||||
Q_DECLARE_INTERFACE(QAudioSystemFactoryInterface, QAudioSystemFactoryInterface_iid)
|
Q_DECLARE_INTERFACE(QAudioSystemFactoryInterface, QAudioSystemFactoryInterface_iid)
|
||||||
|
|
||||||
class Q_MULTIMEDIA_EXPORT QAudioSystemPlugin : public QObject, public QAudioSystemFactoryInterface
|
class Q_MULTIMEDIA_EXPORT QAudioSystemPlugin : public QObject, public QAudioSystemFactoryInterface
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
The functionality provided by this control is exposed to application
|
The functionality provided by this control is exposed to application
|
||||||
code through the QAudioDecoder class.
|
code through the QAudioDecoder class.
|
||||||
|
|
||||||
The interface name of QAudioDecoderControl is \c com.nokia.Qt.QAudioDecoderControl/1.0 as
|
The interface name of QAudioDecoderControl is \c org.qt-project.qt.audiodecodercontrol/5.0 as
|
||||||
defined in QAudioDecoderControl_iid.
|
defined in QAudioDecoderControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QAudioDecoder
|
\sa QMediaService::requestControl(), QAudioDecoder
|
||||||
@@ -69,7 +69,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QAudioDecoderControl_iid
|
\macro QAudioDecoderControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QAudioDecoderControl/1.0
|
\c org.qt-project.qt.audiodecodercontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QAudioDecoderControl class.
|
Defines the interface name of the QAudioDecoderControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ protected:
|
|||||||
QAudioDecoderControl(QObject* parent = 0);
|
QAudioDecoderControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QAudioDecoderControl_iid "com.nokia.Qt.QAudioDecoderControl/1.0"
|
#define QAudioDecoderControl_iid "org.qt-project.qt.audiodecodercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QAudioDecoderControl, QAudioDecoderControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QAudioDecoderControl, QAudioDecoderControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
The functionality provided by this control is exposed to application code through the
|
The functionality provided by this control is exposed to application code through the
|
||||||
QMediaRecorder class.
|
QMediaRecorder class.
|
||||||
|
|
||||||
The interface name of QAudioEncoderControl is \c com.nokia.Qt.QAudioEncoderControl/1.0 as
|
The interface name of QAudioEncoderControl is \c org.qt-project.qt.audioencodercontrol/5.0 as
|
||||||
defined in QAudioEncoderControl_iid.
|
defined in QAudioEncoderControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QMediaRecorder
|
\sa QMediaService::requestControl(), QMediaRecorder
|
||||||
@@ -71,7 +71,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QAudioEncoderControl_iid
|
\macro QAudioEncoderControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.AudioEncoderControl/1.0
|
\c org.qt-project.qt.audioencodercontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QAudioEncoderControl class.
|
Defines the interface name of the QAudioEncoderControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ protected:
|
|||||||
QAudioEncoderControl(QObject *parent = 0);
|
QAudioEncoderControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QAudioEncoderControl_iid "com.nokia.Qt.QAudioEncoderControl/1.0"
|
#define QAudioEncoderControl_iid "org.qt-project.qt.audioencodercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QAudioEncoderControl, QAudioEncoderControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QAudioEncoderControl, QAudioEncoderControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
\ingroup multimedia
|
\ingroup multimedia
|
||||||
\ingroup multimedia_control
|
\ingroup multimedia_control
|
||||||
|
|
||||||
The interface name of QCameraCaptureBufferFormatControl is \c com.nokia.Qt.QCameraCaptureBufferFormatControl/1.0 as
|
The interface name of QCameraCaptureBufferFormatControl is \c org.qt-project.qt.cameracapturebufferformatcontrol/5.0 as
|
||||||
defined in QCameraCaptureBufferFormatControl_iid.
|
defined in QCameraCaptureBufferFormatControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl()
|
\sa QMediaService::requestControl()
|
||||||
@@ -63,7 +63,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraCaptureBufferFormatControl_iid
|
\macro QCameraCaptureBufferFormatControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraCaptureBufferFormatControl/1.0
|
\c org.qt-project.qt.cameracapturebufferformatcontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraCaptureBufferFormatControl class.
|
Defines the interface name of the QCameraCaptureBufferFormatControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ protected:
|
|||||||
QCameraCaptureBufferFormatControl(QObject* parent = 0);
|
QCameraCaptureBufferFormatControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraCaptureBufferFormatControl_iid "com.nokia.Qt.QCameraCaptureBufferFormatControl/1.0"
|
#define QCameraCaptureBufferFormatControl_iid "org.qt-project.qt.cameracapturebufferformatcontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraCaptureBufferFormatControl, QCameraCaptureBufferFormatControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraCaptureBufferFormatControl, QCameraCaptureBufferFormatControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
\ingroup multimedia
|
\ingroup multimedia
|
||||||
\ingroup multimedia_control
|
\ingroup multimedia_control
|
||||||
|
|
||||||
The interface name of QCameraCaptureDestinationControl is \c com.nokia.Qt.QCameraCaptureDestinationControl/1.0 as
|
The interface name of QCameraCaptureDestinationControl is \c org.qt-project.qt.cameracapturedestinationcontrol/5.0 as
|
||||||
defined in QCameraCaptureDestinationControl_iid.
|
defined in QCameraCaptureDestinationControl_iid.
|
||||||
|
|
||||||
|
|
||||||
@@ -65,7 +65,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraCaptureDestinationControl_iid
|
\macro QCameraCaptureDestinationControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraCaptureDestinationControl/1.0
|
\c org.qt-project.qt.cameracapturedestinationcontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraCaptureDestinationControl class.
|
Defines the interface name of the QCameraCaptureDestinationControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ protected:
|
|||||||
QCameraCaptureDestinationControl(QObject* parent = 0);
|
QCameraCaptureDestinationControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraCaptureDestinationControl_iid "com.nokia.Qt.QCameraCaptureDestinationControl/1.0"
|
#define QCameraCaptureDestinationControl_iid "org.qt-project.qt.cameracapturedestinationcontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraCaptureDestinationControl, QCameraCaptureDestinationControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraCaptureDestinationControl, QCameraCaptureDestinationControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
This service is provided by a QMediaService object via
|
This service is provided by a QMediaService object via
|
||||||
QMediaService::control(). It is used by QCamera.
|
QMediaService::control(). It is used by QCamera.
|
||||||
|
|
||||||
The interface name of QCameraControl is \c com.nokia.Qt.QCameraControl/1.0 as
|
The interface name of QCameraControl is \c org.qt-project.qt.cameracontrol/5.0 as
|
||||||
defined in QCameraControl_iid.
|
defined in QCameraControl_iid.
|
||||||
|
|
||||||
|
|
||||||
@@ -70,7 +70,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraControl_iid
|
\macro QCameraControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraControl/1.0
|
\c org.qt-project.qt.cameracontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraControl class.
|
Defines the interface name of the QCameraControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ protected:
|
|||||||
QCameraControl(QObject* parent = 0);
|
QCameraControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraControl_iid "com.nokia.Qt.QCameraControl/1.0"
|
#define QCameraControl_iid "org.qt-project.qt.cameracontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraControl, QCameraControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraControl, QCameraControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
|
|
||||||
\endtable
|
\endtable
|
||||||
|
|
||||||
The interface name of QCameraExposureControl is \c com.nokia.Qt.QCameraExposureControl/1.0 as
|
The interface name of QCameraExposureControl is \c org.qt-project.qt.cameraexposurecontrol/5.0 as
|
||||||
defined in QCameraExposureControl_iid.
|
defined in QCameraExposureControl_iid.
|
||||||
|
|
||||||
\sa QCamera
|
\sa QCamera
|
||||||
@@ -74,7 +74,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraExposureControl_iid
|
\macro QCameraExposureControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraExposureControl/1.0
|
\c org.qt-project.qt.cameraexposurecontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraExposureControl class.
|
Defines the interface name of the QCameraExposureControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -94,7 +94,7 @@ protected:
|
|||||||
QCameraExposureControl(QObject* parent = 0);
|
QCameraExposureControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraExposureControl_iid "com.nokia.Qt.QCameraExposureControl/1.0"
|
#define QCameraExposureControl_iid "org.qt-project.qt.cameraexposurecontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraExposureControl, QCameraExposureControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraExposureControl, QCameraExposureControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -67,7 +67,7 @@
|
|||||||
if that type of feedback can be modified. Any attempts to change a locked feedback type will be
|
if that type of feedback can be modified. Any attempts to change a locked feedback type will be
|
||||||
ignored.
|
ignored.
|
||||||
|
|
||||||
The interface name of QCameraFeedbackControl is \c com.nokia.Qt.QCameraFeedbackControl/1.0 as
|
The interface name of QCameraFeedbackControl is \c org.qt-project.qt.camerafeedbackcontrol/5.0 as
|
||||||
defined in QCameraFeedbackControl_iid.
|
defined in QCameraFeedbackControl_iid.
|
||||||
|
|
||||||
\sa QCamera
|
\sa QCamera
|
||||||
@@ -98,7 +98,7 @@
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraFeedbackControl_iid
|
\macro QCameraFeedbackControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraFeedbackControl/1.0
|
\c org.qt-project.qt.camerafeedbackcontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraFeedbackControl class.
|
Defines the interface name of the QCameraFeedbackControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ protected:
|
|||||||
QCameraFeedbackControl(QObject* parent = 0);
|
QCameraFeedbackControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraFeedbackControl_iid "com.nokia.Qt.QCameraFeedbackControl/1.0"
|
#define QCameraFeedbackControl_iid "org.qt-project.qt.camerafeedbackcontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraFeedbackControl, QCameraFeedbackControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraFeedbackControl, QCameraFeedbackControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
Some camera devices may not have flash hardware, or may not be configurable. In that
|
Some camera devices may not have flash hardware, or may not be configurable. In that
|
||||||
case, there will be no QCameraFlashControl available.
|
case, there will be no QCameraFlashControl available.
|
||||||
|
|
||||||
The interface name of QCameraFlashControl is \c com.nokia.Qt.QCameraFlashControl/1.0 as
|
The interface name of QCameraFlashControl is \c org.qt-project.qt.cameraflashcontrol/5.0 as
|
||||||
defined in QCameraFlashControl_iid.
|
defined in QCameraFlashControl_iid.
|
||||||
|
|
||||||
\sa QCamera
|
\sa QCamera
|
||||||
@@ -71,7 +71,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraFlashControl_iid
|
\macro QCameraFlashControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraFlashControl/1.0
|
\c org.qt-project.qt.cameraflashcontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraFlashControl class.
|
Defines the interface name of the QCameraFlashControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ protected:
|
|||||||
QCameraFlashControl(QObject* parent = 0);
|
QCameraFlashControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraFlashControl_iid "com.nokia.Qt.QCameraFlashControl/1.0"
|
#define QCameraFlashControl_iid "org.qt-project.qt.cameraflashcontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraFlashControl, QCameraFlashControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraFlashControl, QCameraFlashControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
\ingroup multimedia
|
\ingroup multimedia
|
||||||
\ingroup multimedia_control
|
\ingroup multimedia_control
|
||||||
|
|
||||||
The interface name of QCameraFocusControl is \c com.nokia.Qt.QCameraFocusControl/1.0 as
|
The interface name of QCameraFocusControl is \c org.qt-project.qt.camerafocuscontrol/5.0 as
|
||||||
defined in QCameraFocusControl_iid.
|
defined in QCameraFocusControl_iid.
|
||||||
|
|
||||||
|
|
||||||
@@ -66,7 +66,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraFocusControl_iid
|
\macro QCameraFocusControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraFocusControl/1.0
|
\c org.qt-project.qt.camerafocuscontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraFocusControl class.
|
Defines the interface name of the QCameraFocusControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ protected:
|
|||||||
QCameraFocusControl(QObject* parent = 0);
|
QCameraFocusControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraFocusControl_iid "com.nokia.Qt.QCameraFocusControl/1.0"
|
#define QCameraFocusControl_iid "org.qt-project.qt.camerafocuscontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraFocusControl, QCameraFocusControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraFocusControl, QCameraFocusControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
\ingroup multimedia
|
\ingroup multimedia
|
||||||
\ingroup multimedia_control
|
\ingroup multimedia_control
|
||||||
|
|
||||||
The interface name of QCameraImageCaptureControl is \c com.nokia.Qt.QCameraImageCaptureControl/1.0 as
|
The interface name of QCameraImageCaptureControl is \c org.qt-project.qt.cameraimagecapturecontrol/5.0 as
|
||||||
defined in QCameraImageCaptureControl_iid.
|
defined in QCameraImageCaptureControl_iid.
|
||||||
|
|
||||||
|
|
||||||
@@ -65,7 +65,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraImageCaptureControl_iid
|
\macro QCameraImageCaptureControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraImageCaptureControl/1.0
|
\c org.qt-project.qt.cameraimagecapturecontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraImageCaptureControl class.
|
Defines the interface name of the QCameraImageCaptureControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ protected:
|
|||||||
QCameraImageCaptureControl(QObject* parent = 0);
|
QCameraImageCaptureControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraImageCaptureControl_iid "com.nokia.Qt.QCameraImageCaptureControl/1.0"
|
#define QCameraImageCaptureControl_iid "org.qt-project.qt.cameraimagecapturecontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraImageCaptureControl, QCameraImageCaptureControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraImageCaptureControl, QCameraImageCaptureControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ namespace
|
|||||||
for controlling image processing parameters, like white balance,
|
for controlling image processing parameters, like white balance,
|
||||||
contrast, saturation, sharpening and denoising.
|
contrast, saturation, sharpening and denoising.
|
||||||
|
|
||||||
The interface name of QCameraImageProcessingControl is \c com.nokia.Qt.QCameraImageProcessingControl/1.0 as
|
The interface name of QCameraImageProcessingControl is \c org.qt-project.qt.cameraimageprocessingcontrol/5.0 as
|
||||||
defined in QCameraImageProcessingControl_iid.
|
defined in QCameraImageProcessingControl_iid.
|
||||||
|
|
||||||
Camera service may choose the parameters of image processing pipeline depending
|
Camera service may choose the parameters of image processing pipeline depending
|
||||||
@@ -91,7 +91,7 @@ namespace
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraImageProcessingControl_iid
|
\macro QCameraImageProcessingControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraImageProcessingControl/1.0
|
\c org.qt-project.qt.cameraimageprocessingcontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraImageProcessingControl class.
|
Defines the interface name of the QCameraImageProcessingControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ protected:
|
|||||||
QCameraImageProcessingControl(QObject* parent = 0);
|
QCameraImageProcessingControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraImageProcessingControl_iid "com.nokia.Qt.QCameraImageProcessingControl/1.0"
|
#define QCameraImageProcessingControl_iid "org.qt-project.qt.cameraimageprocessingcontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraImageProcessingControl, QCameraImageProcessingControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraImageProcessingControl, QCameraImageProcessingControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
This service is provided by a QMediaService object via
|
This service is provided by a QMediaService object via
|
||||||
QMediaService::control(). It is used by QCamera.
|
QMediaService::control(). It is used by QCamera.
|
||||||
|
|
||||||
The interface name of QCameraLocksControl is \c com.nokia.Qt.QCameraLocksControl/1.0 as
|
The interface name of QCameraLocksControl is \c org.qt-project.qt.cameralockscontrol/5.0 as
|
||||||
defined in QCameraLocksControl_iid.
|
defined in QCameraLocksControl_iid.
|
||||||
|
|
||||||
|
|
||||||
@@ -70,7 +70,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraLocksControl_iid
|
\macro QCameraLocksControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraLocksControl/1.0
|
\c org.qt-project.qt.cameralockscontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraLocksControl class.
|
Defines the interface name of the QCameraLocksControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ protected:
|
|||||||
QCameraLocksControl(QObject* parent = 0);
|
QCameraLocksControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraLocksControl_iid "com.nokia.Qt.QCameraLocksControl/1.0"
|
#define QCameraLocksControl_iid "org.qt-project.qt.cameralockscontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraLocksControl, QCameraLocksControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraLocksControl, QCameraLocksControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
\brief The QCameraViewfinderResolutionControl class provides an abstract class
|
\brief The QCameraViewfinderResolutionControl class provides an abstract class
|
||||||
for controlling camera viewfinder parameters.
|
for controlling camera viewfinder parameters.
|
||||||
|
|
||||||
The interface name of QCameraViewfinderResolutionControl is \c com.nokia.Qt.QCameraViewfinderResolutionControl/1.0 as
|
The interface name of QCameraViewfinderResolutionControl is \c org.qt-project.qt.cameraviewfinderresolutioncontrol/5.0 as
|
||||||
defined in QCameraViewfinderResolutionControl_iid.
|
defined in QCameraViewfinderResolutionControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QCamera
|
\sa QMediaService::requestControl(), QCamera
|
||||||
@@ -64,7 +64,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraViewfinderResolutionControl_iid
|
\macro QCameraViewfinderResolutionControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraViewfinderResolutionControl/1.0
|
\c org.qt-project.qt.cameraviewfinderresolutioncontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraViewfinderResolutionControl class.
|
Defines the interface name of the QCameraViewfinderResolutionControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ protected:
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraViewfinderResolutionControl_iid "com.nokia.Qt.QCameraViewfinderControl/1.0"
|
#define QCameraViewfinderResolutionControl_iid "org.qt-project.qt.cameraviewfindercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraViewfinderResolutionControl, QCameraViewfinderResolutionControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraViewfinderResolutionControl, QCameraViewfinderResolutionControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
\ingroup multimedia
|
\ingroup multimedia
|
||||||
\ingroup multimedia_control
|
\ingroup multimedia_control
|
||||||
|
|
||||||
The interface name of QCameraZoomControl is \c com.nokia.Qt.QCameraZoomControl/1.0 as
|
The interface name of QCameraZoomControl is \c org.qt-project.qt.camerazoomcontrol/5.0 as
|
||||||
defined in QCameraZoomControl_iid.
|
defined in QCameraZoomControl_iid.
|
||||||
|
|
||||||
|
|
||||||
@@ -66,7 +66,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QCameraZoomControl_iid
|
\macro QCameraZoomControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QCameraZoomControl/1.0
|
\c org.qt-project.qt.camerazoomcontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QCameraZoomControl class.
|
Defines the interface name of the QCameraZoomControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ protected:
|
|||||||
QCameraZoomControl(QObject* parent = 0);
|
QCameraZoomControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QCameraZoomControl_iid "com.nokia.Qt.QCameraZoomControl/1.0"
|
#define QCameraZoomControl_iid "org.qt-project.qt.camerazoomcontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QCameraZoomControl, QCameraZoomControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QCameraZoomControl, QCameraZoomControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
provides functions for quering supported image \l {supportedImageCodecs()}{codecs} and
|
provides functions for quering supported image \l {supportedImageCodecs()}{codecs} and
|
||||||
\l {supportedResolutions()}{resolutions}.
|
\l {supportedResolutions()}{resolutions}.
|
||||||
|
|
||||||
The interface name of QImageEncoderControl is \c com.nokia.Qt.QImageEncoderControl/1.0 as
|
The interface name of QImageEncoderControl is \c org.qt-project.qt.imageencodercontrol/5.0 as
|
||||||
defined in QImageEncoderControl_iid.
|
defined in QImageEncoderControl_iid.
|
||||||
|
|
||||||
\sa QImageEncoderSettings, QMediaService::requestControl()
|
\sa QImageEncoderSettings, QMediaService::requestControl()
|
||||||
@@ -69,7 +69,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QImageEncoderControl_iid
|
\macro QImageEncoderControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QImageEncoderControl/1.0
|
\c org.qt-project.qt.imageencodercontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QImageEncoderControl class.
|
Defines the interface name of the QImageEncoderControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ protected:
|
|||||||
QImageEncoderControl(QObject *parent = 0);
|
QImageEncoderControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QImageEncoderControl_iid "com.nokia.Qt.QImageEncoderControl/1.0"
|
#define QImageEncoderControl_iid "org.qt-project.qt.imageencodercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QImageEncoderControl, QImageEncoderControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QImageEncoderControl, QImageEncoderControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
\l QAudioProbe is the client facing class for probing audio - this class is implemented by
|
\l QAudioProbe is the client facing class for probing audio - this class is implemented by
|
||||||
media backends to provide this functionality.
|
media backends to provide this functionality.
|
||||||
|
|
||||||
The interface name of QMediaAudioProbeControl is \c com.nokia.Qt.QMediaAudioProbeControl/1.0 as
|
The interface name of QMediaAudioProbeControl is \c org.qt-project.qt.mediaaudioprobecontrol/5.0 as
|
||||||
defined in QMediaAudioProbeControl_iid.
|
defined in QMediaAudioProbeControl_iid.
|
||||||
|
|
||||||
\sa QAudioProbe, QMediaService::requestControl(), QMediaPlayer, QCamera
|
\sa QAudioProbe, QMediaService::requestControl(), QMediaPlayer, QCamera
|
||||||
@@ -65,7 +65,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QMediaAudioProbeControl_iid
|
\macro QMediaAudioProbeControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QMediaAudioProbeControl/1.0
|
\c org.qt-project.qt.mediaaudioprobecontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMediaAudioProbeControl class.
|
Defines the interface name of the QMediaAudioProbeControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ protected:
|
|||||||
explicit QMediaAudioProbeControl(QObject *parent = 0);
|
explicit QMediaAudioProbeControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaAudioProbeControl_iid "com.nokia.Qt.QMediaAudioProbeControl/1.0"
|
#define QMediaAudioProbeControl_iid "org.qt-project.qt.mediaaudioprobecontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMediaAudioProbeControl, QMediaAudioProbeControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMediaAudioProbeControl, QMediaAudioProbeControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
An instance of QMediaObject (or its derived classes) can report any changes
|
An instance of QMediaObject (or its derived classes) can report any changes
|
||||||
in availability via this control.
|
in availability via this control.
|
||||||
|
|
||||||
The interface name of QMediaAvailabilityControl is \c com.nokia.Qt.QMediaAvailabilityControl/1.0 as
|
The interface name of QMediaAvailabilityControl is \c org.qt-project.qt.mediaavailabilitycontrol/5.0 as
|
||||||
defined in QMediaAvailabilityControl_iid.
|
defined in QMediaAvailabilityControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QMediaObject
|
\sa QMediaService::requestControl(), QMediaObject
|
||||||
@@ -66,7 +66,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QMediaAvailabilityControl_iid
|
\macro QMediaAvailabilityControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QMediaAvailabilityControl/1.0
|
\c org.qt-project.qt.mediaavailabilitycontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMediaAvailabilityControl class.
|
Defines the interface name of the QMediaAvailabilityControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ protected:
|
|||||||
QMediaAvailabilityControl(QObject* parent = 0);
|
QMediaAvailabilityControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaAvailabilityControl_iid "com.nokia.Qt.QMediaAvailabilityControl/1.0"
|
#define QMediaAvailabilityControl_iid "org.qt-project.qt.mediaavailabilitycontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMediaAvailabilityControl, QMediaAvailabilityControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMediaAvailabilityControl, QMediaAvailabilityControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
The functionality provided by this control is exposed to application code
|
The functionality provided by this control is exposed to application code
|
||||||
through the QMediaRecorder class.
|
through the QMediaRecorder class.
|
||||||
|
|
||||||
The interface name of QMediaContainerControl is \c com.nokia.Qt.QMediaContainerControl/1.0 as
|
The interface name of QMediaContainerControl is \c org.qt-project.qt.mediacontainercontrol/5.0 as
|
||||||
defined in QMediaContainerControl_iid.
|
defined in QMediaContainerControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QMediaRecorder
|
\sa QMediaService::requestControl(), QMediaRecorder
|
||||||
@@ -71,7 +71,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QMediaContainerControl_iid
|
\macro QMediaContainerControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QMediaContainerControl/1.0
|
\c org.qt-project.qt.mediacontainercontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMediaContainerControl class.
|
Defines the interface name of the QMediaContainerControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ protected:
|
|||||||
QMediaContainerControl(QObject *parent = 0);
|
QMediaContainerControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaContainerControl_iid "com.nokia.Qt.QMediaContainerControl/1.0"
|
#define QMediaContainerControl_iid "org.qt-project.qt.mediacontainercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMediaContainerControl, QMediaContainerControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMediaContainerControl, QMediaContainerControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -60,7 +60,7 @@
|
|||||||
code through the QMediaPlayer class.
|
code through the QMediaPlayer class.
|
||||||
|
|
||||||
The interface name of QMediaGaplessPlaybackControl is
|
The interface name of QMediaGaplessPlaybackControl is
|
||||||
\c com.nokia.Qt.QMediaGaplessPlaybackControl/1.0 as defined in QMediaGaplessPlaybackControl_iid.
|
\c org.qt-project.qt.mediagaplessplaybackcontrol/5.0 as defined in QMediaGaplessPlaybackControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QMediaPlayer
|
\sa QMediaService::requestControl(), QMediaPlayer
|
||||||
*/
|
*/
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
/*!
|
/*!
|
||||||
\macro QMediaGaplessPlaybackControl_iid
|
\macro QMediaGaplessPlaybackControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QMediaGaplessPlaybackControl/1.0
|
\c org.qt-project.qt.mediagaplessplaybackcontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMediaGaplessPlaybackControl class.
|
Defines the interface name of the QMediaGaplessPlaybackControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ protected:
|
|||||||
QMediaGaplessPlaybackControl(QObject* parent = 0);
|
QMediaGaplessPlaybackControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaGaplessPlaybackControl_iid "com.nokia.Qt.QMediaGaplessPlaybackControl/1.0"
|
#define QMediaGaplessPlaybackControl_iid "org.qt-project.qt.mediagaplessplaybackcontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMediaGaplessPlaybackControl, QMediaGaplessPlaybackControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMediaGaplessPlaybackControl, QMediaGaplessPlaybackControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ protected:
|
|||||||
QMediaNetworkAccessControl(QObject *parent = 0);
|
QMediaNetworkAccessControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaNetworkAccessControl_iid "com.nokia.Qt.QMediaNetworkAccessControl/1.0"
|
#define QMediaNetworkAccessControl_iid "org.qt-project.qt.medianetworkaccesscontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMediaNetworkAccessControl, QMediaNetworkAccessControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMediaNetworkAccessControl, QMediaNetworkAccessControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
The functionality provided by this control is exposed to application
|
The functionality provided by this control is exposed to application
|
||||||
code through the QMediaPlayer class.
|
code through the QMediaPlayer class.
|
||||||
|
|
||||||
The interface name of QMediaPlayerControl is \c com.nokia.Qt.QMediaPlayerControl/1.0 as
|
The interface name of QMediaPlayerControl is \c org.qt-project.qt.mediaplayercontrol/5.0 as
|
||||||
defined in QMediaPlayerControl_iid.
|
defined in QMediaPlayerControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QMediaPlayer
|
\sa QMediaService::requestControl(), QMediaPlayer
|
||||||
@@ -77,7 +77,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QMediaPlayerControl_iid
|
\macro QMediaPlayerControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QMediaPlayerControl/1.0
|
\c org.qt-project.qt.mediaplayercontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMediaPlayerControl class.
|
Defines the interface name of the QMediaPlayerControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ protected:
|
|||||||
QMediaPlayerControl(QObject* parent = 0);
|
QMediaPlayerControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaPlayerControl_iid "com.nokia.Qt.QMediaPlayerControl/1.0"
|
#define QMediaPlayerControl_iid "org.qt-project.qt.mediaplayercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMediaPlayerControl, QMediaPlayerControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMediaPlayerControl, QMediaPlayerControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
The functionality provided by the control is exposed to application code
|
The functionality provided by the control is exposed to application code
|
||||||
through the QMediaPlaylist class.
|
through the QMediaPlaylist class.
|
||||||
|
|
||||||
The interface name of QMediaPlaylistControl is \c com.nokia.Qt.QMediaPlaylistControl/1.0 as
|
The interface name of QMediaPlaylistControl is \c org.qt-project.qt.mediaplaylistcontrol/5.0 as
|
||||||
defined in QMediaPlaylistControl_iid.
|
defined in QMediaPlaylistControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QMediaPlayer
|
\sa QMediaService::requestControl(), QMediaPlayer
|
||||||
@@ -76,7 +76,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QMediaPlaylistControl_iid
|
\macro QMediaPlaylistControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QMediaPlaylistControl/1.0
|
\c org.qt-project.qt.mediaplaylistcontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMediaPlaylistControl class.
|
Defines the interface name of the QMediaPlaylistControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ protected:
|
|||||||
QMediaPlaylistControl(QObject* parent = 0);
|
QMediaPlaylistControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaPlaylistControl_iid "com.nokia.Qt.QMediaPlaylistControl/1.0"
|
#define QMediaPlaylistControl_iid "org.qt-project.qt.mediaplaylistcontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMediaPlaylistControl, QMediaPlaylistControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMediaPlaylistControl, QMediaPlaylistControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
advance the playlist with QMediaPlaylist::next() when playback of the
|
advance the playlist with QMediaPlaylist::next() when playback of the
|
||||||
current media is finished.
|
current media is finished.
|
||||||
|
|
||||||
The interface name of QMediaPlaylistSourceControl is \c com.nokia.Qt.QMediaPlaylistSourceControl/1.0 as
|
The interface name of QMediaPlaylistSourceControl is \c org.qt-project.qt.mediaplaylistsourcecontrol/5.0 as
|
||||||
defined in QMediaPlaylistSourceControl_iid.
|
defined in QMediaPlaylistSourceControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QMediaPlayer
|
\sa QMediaService::requestControl(), QMediaPlayer
|
||||||
@@ -77,7 +77,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QMediaPlaylistSourceControl_iid
|
\macro QMediaPlaylistSourceControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QMediaPlaylistSourceControl/1.0
|
\c org.qt-project.qt.mediaplaylistsourcecontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMediaPlaylistSourceControl class.
|
Defines the interface name of the QMediaPlaylistSourceControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ protected:
|
|||||||
QMediaPlaylistSourceControl(QObject* parent = 0);
|
QMediaPlaylistSourceControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaPlaylistSourceControl_iid "com.nokia.Qt.QMediaPlaylistSourceControl/1.0"
|
#define QMediaPlaylistSourceControl_iid "org.qt-project.qt.mediaplaylistsourcecontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMediaPlaylistSourceControl, QMediaPlaylistSourceControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMediaPlaylistSourceControl, QMediaPlaylistSourceControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
The functionality provided by this control is exposed to application
|
The functionality provided by this control is exposed to application
|
||||||
code through the QMediaRecorder class.
|
code through the QMediaRecorder class.
|
||||||
|
|
||||||
The interface name of QMediaRecorderControl is \c com.nokia.Qt.QMediaRecorderControl/1.0 as
|
The interface name of QMediaRecorderControl is \c org.qt-project.qt.mediarecordercontrol/5.0 as
|
||||||
defined in QMediaRecorderControl_iid.
|
defined in QMediaRecorderControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QMediaRecorder
|
\sa QMediaService::requestControl(), QMediaRecorder
|
||||||
@@ -73,7 +73,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QMediaRecorderControl_iid
|
\macro QMediaRecorderControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QMediaRecorderControl/1.0
|
\c org.qt-project.qt.mediarecordercontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMediaRecorderControl class.
|
Defines the interface name of the QMediaRecorderControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ protected:
|
|||||||
QMediaRecorderControl(QObject* parent = 0);
|
QMediaRecorderControl(QObject* parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaRecorderControl_iid "com.nokia.Qt.QMediaRecorderControl/1.0"
|
#define QMediaRecorderControl_iid "org.qt-project.qt.mediarecordercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMediaRecorderControl, QMediaRecorderControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMediaRecorderControl, QMediaRecorderControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ namespace
|
|||||||
The QMediaStreamsControl class provides descriptions of the available media streams
|
The QMediaStreamsControl class provides descriptions of the available media streams
|
||||||
and allows individual streams to be activated and deactivated.
|
and allows individual streams to be activated and deactivated.
|
||||||
|
|
||||||
The interface name of QMediaStreamsControl is \c com.nokia.Qt.MediaStreamsControl as
|
The interface name of QMediaStreamsControl is \c org.qt-project.qt.mediastreamscontrol/5.0 as
|
||||||
defined in QMediaStreamsControl_iid.
|
defined in QMediaStreamsControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl()
|
\sa QMediaService::requestControl()
|
||||||
@@ -78,7 +78,7 @@ namespace
|
|||||||
/*!
|
/*!
|
||||||
\macro QMediaStreamsControl_iid
|
\macro QMediaStreamsControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.MediaStreamsControl
|
\c org.qt-project.qt.mediastreamscontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMediaStreamsControl class.
|
Defines the interface name of the QMediaStreamsControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ protected:
|
|||||||
QMediaStreamsControl(QObject *parent = 0);
|
QMediaStreamsControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaStreamsControl_iid "com.nokia.Qt.QMediaStreamsControl/1.0"
|
#define QMediaStreamsControl_iid "org.qt-project.qt.mediastreamscontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMediaStreamsControl, QMediaStreamsControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMediaStreamsControl, QMediaStreamsControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
\l QVideoProbe is the client facing class for probing video - this class is implemented by
|
\l QVideoProbe is the client facing class for probing video - this class is implemented by
|
||||||
media backends to provide this functionality.
|
media backends to provide this functionality.
|
||||||
|
|
||||||
The interface name of QMediaVideoProbeControl is \c com.nokia.Qt.QMediaVideoProbeControl/1.0 as
|
The interface name of QMediaVideoProbeControl is \c org.qt-project.qt.mediavideoprobecontrol/5.0 as
|
||||||
defined in QMediaVideoProbeControl_iid.
|
defined in QMediaVideoProbeControl_iid.
|
||||||
|
|
||||||
\sa QVideoProbe, QMediaService::requestControl(), QMediaPlayer, QCamera
|
\sa QVideoProbe, QMediaService::requestControl(), QMediaPlayer, QCamera
|
||||||
@@ -65,7 +65,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QMediaVideoProbeControl_iid
|
\macro QMediaVideoProbeControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QMediaVideoProbeControl/1.0
|
\c org.qt-project.qt.mediavideoprobecontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMediaVideoProbeControl class.
|
Defines the interface name of the QMediaVideoProbeControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ protected:
|
|||||||
explicit QMediaVideoProbeControl(QObject *parent = 0);
|
explicit QMediaVideoProbeControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaVideoProbeControl_iid "com.nokia.Qt.QMediaVideoProbeControl/1.0"
|
#define QMediaVideoProbeControl_iid "org.qt-project.qt.mediavideoprobecontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMediaVideoProbeControl, QMediaVideoProbeControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMediaVideoProbeControl, QMediaVideoProbeControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
service may implement QMetaDataReaderControl.
|
service may implement QMetaDataReaderControl.
|
||||||
|
|
||||||
The interface name of QMetaDataReaderControl is
|
The interface name of QMetaDataReaderControl is
|
||||||
\c com.nokia.Qt.QMetaDataReaderControl/1.0 as defined in
|
\c org.qt-project.qt.metadatareadercontrol/5.0 as defined in
|
||||||
QMetaDataReaderControl_iid.
|
QMetaDataReaderControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QMediaObject
|
\sa QMediaService::requestControl(), QMediaObject
|
||||||
@@ -77,7 +77,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QMetaDataReaderControl_iid
|
\macro QMetaDataReaderControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QMetaDataReaderControl/1.0
|
\c org.qt-project.qt.metadatareadercontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMetaDataReaderControl class.
|
Defines the interface name of the QMetaDataReaderControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ protected:
|
|||||||
QMetaDataReaderControl(QObject *parent = 0);
|
QMetaDataReaderControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMetaDataReaderControl_iid "com.nokia.Qt.QMetaDataReaderControl/1.0"
|
#define QMetaDataReaderControl_iid "org.qt-project.qt.metadatareadercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMetaDataReaderControl, QMetaDataReaderControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMetaDataReaderControl, QMetaDataReaderControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
potentially available in any of the media object classes. Any media
|
potentially available in any of the media object classes. Any media
|
||||||
service may implement QMetaDataControl.
|
service may implement QMetaDataControl.
|
||||||
|
|
||||||
The interface name of QMetaDataWriterControl is \c com.nokia.Qt.QMetaDataWriterControl/1.0 as
|
The interface name of QMetaDataWriterControl is \c org.qt-project.qt.metadatawritercontrol/5.0 as
|
||||||
defined in QMetaDataWriterControl_iid.
|
defined in QMetaDataWriterControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QMediaObject
|
\sa QMediaService::requestControl(), QMediaObject
|
||||||
@@ -76,7 +76,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QMetaDataWriterControl_iid
|
\macro QMetaDataWriterControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QMetaDataWriterControl/1.0
|
\c org.qt-project.qt.metadatawritercontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QMetaDataWriterControl class.
|
Defines the interface name of the QMetaDataWriterControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ protected:
|
|||||||
QMetaDataWriterControl(QObject *parent = 0);
|
QMetaDataWriterControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMetaDataWriterControl_iid "com.nokia.Qt.QMetaDataWriterControl/1.0"
|
#define QMetaDataWriterControl_iid "org.qt-project.qt.metadatawritercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QMetaDataWriterControl, QMetaDataWriterControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QMetaDataWriterControl, QMetaDataWriterControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
The functionality provided by this control is exposed to application code
|
The functionality provided by this control is exposed to application code
|
||||||
through the QRadioData class.
|
through the QRadioData class.
|
||||||
|
|
||||||
The interface name of QRadioDataControl is \c com.nokia.Qt.QRadioDataControl/5.0 as
|
The interface name of QRadioDataControl is \c org.qt-project.qt.radiodatacontrol/5.0 as
|
||||||
defined in QRadioDataControl_iid.
|
defined in QRadioDataControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QRadioData
|
\sa QMediaService::requestControl(), QRadioData
|
||||||
@@ -69,7 +69,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QRadioDataControl_iid
|
\macro QRadioDataControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QRadioDataControl/5.0
|
\c org.qt-project.qt.radiodatacontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QRadioDataControl class.
|
Defines the interface name of the QRadioDataControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ protected:
|
|||||||
QRadioDataControl(QObject *parent = 0);
|
QRadioDataControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QRadioDataControl_iid "com.nokia.Qt.QRadioDataControl/5.0"
|
#define QRadioDataControl_iid "org.qt-project.qt.radiodatacontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QRadioDataControl, QRadioDataControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QRadioDataControl, QRadioDataControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
The functionality provided by this control is exposed to application code
|
The functionality provided by this control is exposed to application code
|
||||||
through the QRadioTuner class.
|
through the QRadioTuner class.
|
||||||
|
|
||||||
The interface name of QRadioTunerControl is \c com.nokia.Qt.QRadioTunerControl/1.0 as
|
The interface name of QRadioTunerControl is \c org.qt-project.qt.radiotunercontrol/5.0 as
|
||||||
defined in QRadioTunerControl_iid.
|
defined in QRadioTunerControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QRadioTuner
|
\sa QMediaService::requestControl(), QRadioTuner
|
||||||
@@ -75,7 +75,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QRadioTunerControl_iid
|
\macro QRadioTunerControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QRadioTunerControl/1.0
|
\c org.qt-project.qt.radiotunercontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QRadioTunerControl class.
|
Defines the interface name of the QRadioTunerControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ protected:
|
|||||||
QRadioTunerControl(QObject *parent = 0);
|
QRadioTunerControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QRadioTunerControl_iid "com.nokia.Qt.QRadioTunerControl/1.0"
|
#define QRadioTunerControl_iid "org.qt-project.qt.radiotunercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QRadioTunerControl, QRadioTunerControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QRadioTunerControl, QRadioTunerControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -56,14 +56,14 @@ QT_BEGIN_NAMESPACE
|
|||||||
available on a system and allows one to be selected as the endpoint of a
|
available on a system and allows one to be selected as the endpoint of a
|
||||||
media service.
|
media service.
|
||||||
|
|
||||||
The interface name of QVideoDeviceControl is \c com.nokia.Qt.VideoDeviceControl as
|
The interface name of QVideoDeviceControl is \c org.qt-project.qt.videodevicecontrol/5.0 as
|
||||||
defined in QVideoDeviceControl_iid.
|
defined in QVideoDeviceControl_iid.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\macro QVideoDeviceControl_iid
|
\macro QVideoDeviceControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.VideoDeviceControl
|
\c org.qt-project.qt.videodevicecontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QVideoDeviceControl class.
|
Defines the interface name of the QVideoDeviceControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ protected:
|
|||||||
QVideoDeviceControl(QObject *parent = 0);
|
QVideoDeviceControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QVideoDeviceControl_iid "com.nokia.Qt.QVideoDeviceControl/1.0"
|
#define QVideoDeviceControl_iid "org.qt-project.qt.videodevicecontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QVideoDeviceControl, QVideoDeviceControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QVideoDeviceControl, QVideoDeviceControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
The functionality provided by this control is exposed to application code
|
The functionality provided by this control is exposed to application code
|
||||||
through the QMediaRecorder class.
|
through the QMediaRecorder class.
|
||||||
|
|
||||||
The interface name of QVideoEncoderControl is \c com.nokia.Qt.QVideoEncoderControl/1.0 as
|
The interface name of QVideoEncoderControl is \c org.qt-project.qt.videoencodercontrol/5.0 as
|
||||||
defined in QVideoEncoderControl_iid.
|
defined in QVideoEncoderControl_iid.
|
||||||
|
|
||||||
\sa QMediaRecorder, QVideoEncoderSettings, QMediaService::requestControl()
|
\sa QMediaRecorder, QVideoEncoderSettings, QMediaService::requestControl()
|
||||||
@@ -73,7 +73,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QVideoEncoderControl_iid
|
\macro QVideoEncoderControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QVideoEncoderControl/1.0
|
\c org.qt-project.qt.videoencodercontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QVideoEncoderControl class.
|
Defines the interface name of the QVideoEncoderControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ protected:
|
|||||||
QVideoEncoderControl(QObject *parent = 0);
|
QVideoEncoderControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QVideoEncoderControl_iid "com.nokia.Qt.QVideoEncoderControl/1.0"
|
#define QVideoEncoderControl_iid "org.qt-project.qt.videoencodercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QVideoEncoderControl, QVideoEncoderControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QVideoEncoderControl, QVideoEncoderControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
|
|
||||||
QVideoRendererControl is one of a number of possible video output controls.
|
QVideoRendererControl is one of a number of possible video output controls.
|
||||||
|
|
||||||
The interface name of QVideoRendererControl is \c com.nokia.Qt.QVideoRendererControl/1.0 as
|
The interface name of QVideoRendererControl is \c org.qt-project.qt.videorenderercontrol/5.0 as
|
||||||
defined in QVideoRendererControl_iid.
|
defined in QVideoRendererControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QVideoWidget
|
\sa QMediaService::requestControl(), QVideoWidget
|
||||||
@@ -70,7 +70,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QVideoRendererControl_iid
|
\macro QVideoRendererControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QVideoRendererControl/1.0
|
\c org.qt-project.qt.videorenderercontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QVideoRendererControl class.
|
Defines the interface name of the QVideoRendererControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ protected:
|
|||||||
QVideoRendererControl(QObject *parent = 0);
|
QVideoRendererControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QVideoRendererControl_iid "com.nokia.Qt.QVideoRendererControl/1.0"
|
#define QVideoRendererControl_iid "org.qt-project.qt.videorenderercontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QVideoRendererControl, QVideoRendererControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QVideoRendererControl, QVideoRendererControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ public:
|
|||||||
virtual QAbstractVideoBuffer *prepareVideoBuffer(GstBuffer *buffer, int bytesPerLine) = 0;
|
virtual QAbstractVideoBuffer *prepareVideoBuffer(GstBuffer *buffer, int bytesPerLine) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QGstBufferPoolInterface_iid "com.nokia.Qt.QGstBufferPoolInterface"
|
#define QGstBufferPoolInterface_iid "org.qt-project.qt.gstbufferpool/5.0"
|
||||||
Q_DECLARE_INTERFACE(QGstBufferPoolInterface, QGstBufferPoolInterface_iid)
|
Q_DECLARE_INTERFACE(QGstBufferPoolInterface, QGstBufferPoolInterface_iid)
|
||||||
|
|
||||||
class QGstBufferPoolPlugin : public QObject, public QGstBufferPoolInterface
|
class QGstBufferPoolPlugin : public QObject, public QGstBufferPoolInterface
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ public:
|
|||||||
//returns true if message was processed and should be dropped, false otherwise
|
//returns true if message was processed and should be dropped, false otherwise
|
||||||
virtual bool processSyncMessage(const QGstreamerMessage &message) = 0;
|
virtual bool processSyncMessage(const QGstreamerMessage &message) = 0;
|
||||||
};
|
};
|
||||||
#define QGstreamerSyncMessageFilter_iid "com.nokia.Qt.QGstreamerSyncMessageFilter/1.0"
|
#define QGstreamerSyncMessageFilter_iid "org.qt-project.qt.gstreamersyncmessagefilter/5.0"
|
||||||
Q_DECLARE_INTERFACE(QGstreamerSyncMessageFilter, QGstreamerSyncMessageFilter_iid)
|
Q_DECLARE_INTERFACE(QGstreamerSyncMessageFilter, QGstreamerSyncMessageFilter_iid)
|
||||||
|
|
||||||
|
|
||||||
@@ -74,7 +74,7 @@ public:
|
|||||||
//returns true if message was processed and should be dropped, false otherwise
|
//returns true if message was processed and should be dropped, false otherwise
|
||||||
virtual bool processBusMessage(const QGstreamerMessage &message) = 0;
|
virtual bool processBusMessage(const QGstreamerMessage &message) = 0;
|
||||||
};
|
};
|
||||||
#define QGstreamerBusMessageFilter_iid "com.nokia.Qt.QGstreamerBusMessageFilter/1.0"
|
#define QGstreamerBusMessageFilter_iid "org.qt-project.qt.gstreamerbusmessagefilter/5.0"
|
||||||
Q_DECLARE_INTERFACE(QGstreamerBusMessageFilter, QGstreamerBusMessageFilter_iid)
|
Q_DECLARE_INTERFACE(QGstreamerBusMessageFilter, QGstreamerBusMessageFilter_iid)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
endpoints available on a system and allows one to be selected as the audio
|
endpoints available on a system and allows one to be selected as the audio
|
||||||
of a media service.
|
of a media service.
|
||||||
|
|
||||||
The interface name of QAudioEndpointSelector is \c com.nokia.Qt.QAudioEndpointSelector/1.0 as
|
The interface name of QAudioEndpointSelector is \c org.qt-project.qt.audioendpointselector/5.0 as
|
||||||
defined in QAudioEndpointSelector_iid.
|
defined in QAudioEndpointSelector_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl()
|
\sa QMediaService::requestControl()
|
||||||
@@ -64,7 +64,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QAudioEndpointSelector_iid
|
\macro QAudioEndpointSelector_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QAudioEndpointSelector/1.0
|
\c org.qt-project.qt.audioendpointselector/5.0
|
||||||
|
|
||||||
Defines the interface name of the QAudioEndpointSelector class.
|
Defines the interface name of the QAudioEndpointSelector class.
|
||||||
|
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ protected:
|
|||||||
QAudioEndpointSelector(QObject *parent = 0);
|
QAudioEndpointSelector(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QAudioEndpointSelector_iid "com.nokia.Qt.QAudioEndpointSelector/1.0"
|
#define QAudioEndpointSelector_iid "org.qt-project.qt.audioendpointselector/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QAudioEndpointSelector, QAudioEndpointSelector_iid)
|
Q_MEDIA_DECLARE_CONTROL(QAudioEndpointSelector, QAudioEndpointSelector_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -104,7 +104,7 @@ struct Q_MULTIMEDIA_EXPORT QMediaPlaylistIOInterface
|
|||||||
virtual QMediaPlaylistWriter *createWriter(QIODevice *device, const QByteArray &format) = 0;
|
virtual QMediaPlaylistWriter *createWriter(QIODevice *device, const QByteArray &format) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaPlaylistIOInterface_iid "com.nokia.Qt.QMediaPlaylistIOInterface"
|
#define QMediaPlaylistIOInterface_iid "org.qt-project.qt.mediaplaylistio/5.0"
|
||||||
Q_DECLARE_INTERFACE(QMediaPlaylistIOInterface, QMediaPlaylistIOInterface_iid);
|
Q_DECLARE_INTERFACE(QMediaPlaylistIOInterface, QMediaPlaylistIOInterface_iid);
|
||||||
|
|
||||||
class Q_MULTIMEDIA_EXPORT QMediaPlaylistIOPlugin : public QObject, public QMediaPlaylistIOInterface
|
class Q_MULTIMEDIA_EXPORT QMediaPlaylistIOPlugin : public QObject, public QMediaPlaylistIOInterface
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ protected:
|
|||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaBindableInterface_iid \
|
#define QMediaBindableInterface_iid \
|
||||||
"com.nokia.Qt.QMediaBindableInterface/1.0"
|
"org.qt-project.qt.mediabindable/5.0"
|
||||||
Q_DECLARE_INTERFACE(QMediaBindableInterface, QMediaBindableInterface_iid)
|
Q_DECLARE_INTERFACE(QMediaBindableInterface, QMediaBindableInterface_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ struct Q_MULTIMEDIA_EXPORT QMediaServiceProviderFactoryInterface
|
|||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaServiceProviderFactoryInterface_iid \
|
#define QMediaServiceProviderFactoryInterface_iid \
|
||||||
"com.nokia.Qt.QMediaServiceProviderFactoryInterface/1.0"
|
"org.qt-project.qt.mediaserviceproviderfactory/5.0"
|
||||||
Q_DECLARE_INTERFACE(QMediaServiceProviderFactoryInterface, QMediaServiceProviderFactoryInterface_iid)
|
Q_DECLARE_INTERFACE(QMediaServiceProviderFactoryInterface, QMediaServiceProviderFactoryInterface_iid)
|
||||||
|
|
||||||
|
|
||||||
@@ -124,7 +124,7 @@ struct Q_MULTIMEDIA_EXPORT QMediaServiceSupportedFormatsInterface
|
|||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaServiceSupportedFormatsInterface_iid \
|
#define QMediaServiceSupportedFormatsInterface_iid \
|
||||||
"com.nokia.Qt.QMediaServiceSupportedFormatsInterface/1.0"
|
"org.qt-project.qt.mediaservicesupportedformats/5.0"
|
||||||
Q_DECLARE_INTERFACE(QMediaServiceSupportedFormatsInterface, QMediaServiceSupportedFormatsInterface_iid)
|
Q_DECLARE_INTERFACE(QMediaServiceSupportedFormatsInterface, QMediaServiceSupportedFormatsInterface_iid)
|
||||||
|
|
||||||
|
|
||||||
@@ -136,7 +136,7 @@ struct Q_MULTIMEDIA_EXPORT QMediaServiceSupportedDevicesInterface
|
|||||||
};
|
};
|
||||||
|
|
||||||
#define QMediaServiceSupportedDevicesInterface_iid \
|
#define QMediaServiceSupportedDevicesInterface_iid \
|
||||||
"com.nokia.Qt.QMediaServiceSupportedDevicesInterface/1.0"
|
"org.qt-project.qt.mediaservicesupporteddevices/5.0"
|
||||||
Q_DECLARE_INTERFACE(QMediaServiceSupportedDevicesInterface, QMediaServiceSupportedDevicesInterface_iid)
|
Q_DECLARE_INTERFACE(QMediaServiceSupportedDevicesInterface, QMediaServiceSupportedDevicesInterface_iid)
|
||||||
|
|
||||||
|
|
||||||
@@ -149,7 +149,7 @@ struct Q_MULTIMEDIA_EXPORT QMediaServiceFeaturesInterface
|
|||||||
|
|
||||||
|
|
||||||
#define QMediaServiceFeaturesInterface_iid \
|
#define QMediaServiceFeaturesInterface_iid \
|
||||||
"com.nokia.Qt.QMediaServiceFeaturesInterface/1.0"
|
"org.qt-project.qt.mediaservicefeatures/5.0"
|
||||||
Q_DECLARE_INTERFACE(QMediaServiceFeaturesInterface, QMediaServiceFeaturesInterface_iid)
|
Q_DECLARE_INTERFACE(QMediaServiceFeaturesInterface, QMediaServiceFeaturesInterface_iid)
|
||||||
|
|
||||||
|
|
||||||
@@ -171,7 +171,7 @@ public:
|
|||||||
Required: QVideoOutputControl
|
Required: QVideoOutputControl
|
||||||
Optional: QVideoWindowControl, QVideoRendererControl, QVideoWidgetControl
|
Optional: QVideoWindowControl, QVideoRendererControl, QVideoWidgetControl
|
||||||
*/
|
*/
|
||||||
#define Q_MEDIASERVICE_MEDIAPLAYER "com.nokia.qt.mediaplayer"
|
#define Q_MEDIASERVICE_MEDIAPLAYER "org.qt-project.qt.mediaplayer"
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
Service with support for recording from audio sources
|
Service with support for recording from audio sources
|
||||||
@@ -181,7 +181,7 @@ public:
|
|||||||
Recommended: QAudioEncoderControl
|
Recommended: QAudioEncoderControl
|
||||||
Optional: QMediaContainerControl
|
Optional: QMediaContainerControl
|
||||||
*/
|
*/
|
||||||
#define Q_MEDIASERVICE_AUDIOSOURCE "com.nokia.qt.audiosource"
|
#define Q_MEDIASERVICE_AUDIOSOURCE "org.qt-project.qt.audiosource"
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
Service with support for camera use.
|
Service with support for camera use.
|
||||||
@@ -195,7 +195,7 @@ public:
|
|||||||
Required: QVideoOutputControl
|
Required: QVideoOutputControl
|
||||||
Optional: QVideoWindowControl, QVideoRendererControl, QVideoWidgetControl
|
Optional: QVideoWindowControl, QVideoRendererControl, QVideoWidgetControl
|
||||||
*/
|
*/
|
||||||
#define Q_MEDIASERVICE_CAMERA "com.nokia.qt.camera"
|
#define Q_MEDIASERVICE_CAMERA "org.qt-project.qt.camera"
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
Service with support for radio tuning.
|
Service with support for radio tuning.
|
||||||
@@ -205,14 +205,14 @@ public:
|
|||||||
Recommended: QAudioEncoderControl
|
Recommended: QAudioEncoderControl
|
||||||
Optional: QMediaContainerControl
|
Optional: QMediaContainerControl
|
||||||
*/
|
*/
|
||||||
#define Q_MEDIASERVICE_RADIO "com.nokia.qt.radio"
|
#define Q_MEDIASERVICE_RADIO "org.qt-project.qt.radio"
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
Service with support for decoding audio.
|
Service with support for decoding audio.
|
||||||
Required Controls: QAudioDecoderControl
|
Required Controls: QAudioDecoderControl
|
||||||
Optional: that streams control
|
Optional: that streams control
|
||||||
*/
|
*/
|
||||||
#define Q_MEDIASERVICE_AUDIODECODER "com.nokia.qt.audiodecode"
|
#define Q_MEDIASERVICE_AUDIODECODER "org.qt-project.qt.audiodecode"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ public:
|
|||||||
virtual QSGVideoNode *createNode(const QVideoSurfaceFormat &format) = 0;
|
virtual QSGVideoNode *createNode(const QVideoSurfaceFormat &format) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QSGVideoNodeFactoryInterface_iid "com.nokia.Qt.QSGVideoNodeFactoryInterface"
|
#define QSGVideoNodeFactoryInterface_iid "org.qt-project.qt.sgvideonodefactory/5.0"
|
||||||
Q_DECLARE_INTERFACE(QSGVideoNodeFactoryInterface, QSGVideoNodeFactoryInterface_iid)
|
Q_DECLARE_INTERFACE(QSGVideoNodeFactoryInterface, QSGVideoNodeFactoryInterface_iid)
|
||||||
|
|
||||||
class QSGVideoNodeFactoryPlugin : public QObject, public QSGVideoNodeFactoryInterface
|
class QSGVideoNodeFactoryPlugin : public QObject, public QSGVideoNodeFactoryInterface
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
|
|
||||||
QVideoWidgetControl is one of number of possible video output controls.
|
QVideoWidgetControl is one of number of possible video output controls.
|
||||||
|
|
||||||
The interface name of QVideoWidgetControl is \c com.nokia.Qt.QVideoWidgetControl/1.0 as
|
The interface name of QVideoWidgetControl is \c org.qt-project.qt.videowidgetcontrol/5.0 as
|
||||||
defined in QVideoWidgetControl_iid.
|
defined in QVideoWidgetControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QVideoWidget
|
\sa QMediaService::requestControl(), QVideoWidget
|
||||||
@@ -71,7 +71,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QVideoWidgetControl_iid
|
\macro QVideoWidgetControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QVideoWidgetControl/1.0
|
\c org.qt-project.qt.videowidgetcontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QVideoWidgetControl class.
|
Defines the interface name of the QVideoWidgetControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -94,7 +94,7 @@ protected:
|
|||||||
QVideoWidgetControl(QObject *parent = 0);
|
QVideoWidgetControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QVideoWidgetControl_iid "com.nokia.Qt.QVideoWidgetControl/1.0"
|
#define QVideoWidgetControl_iid "org.qt-project.qt.videowidgetcontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QVideoWidgetControl, QVideoWidgetControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QVideoWidgetControl, QVideoWidgetControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
|
|
||||||
QVideoWindowControl is one of a number of possible video output controls.
|
QVideoWindowControl is one of a number of possible video output controls.
|
||||||
|
|
||||||
The interface name of QVideoWindowControl is \c com.nokia.Qt.QVideoWindowControl/1.0 as
|
The interface name of QVideoWindowControl is \c org.qt-project.qt.videowindowcontrol/5.0 as
|
||||||
defined in QVideoWindowControl_iid.
|
defined in QVideoWindowControl_iid.
|
||||||
|
|
||||||
\sa QMediaService::requestControl(), QVideoWidget
|
\sa QMediaService::requestControl(), QVideoWidget
|
||||||
@@ -70,7 +70,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
/*!
|
/*!
|
||||||
\macro QVideoWindowControl_iid
|
\macro QVideoWindowControl_iid
|
||||||
|
|
||||||
\c com.nokia.Qt.QVideoWindowControl/1.0
|
\c org.qt-project.qt.videowindowcontrol/5.0
|
||||||
|
|
||||||
Defines the interface name of the QVideoWindowControl class.
|
Defines the interface name of the QVideoWindowControl class.
|
||||||
|
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ protected:
|
|||||||
QVideoWindowControl(QObject *parent = 0);
|
QVideoWindowControl(QObject *parent = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QVideoWindowControl_iid "com.nokia.Qt.QVideoWindowControl/1.0"
|
#define QVideoWindowControl_iid "org.qt-project.qt.videowindowcontrol/5.0"
|
||||||
Q_MEDIA_DECLARE_CONTROL(QVideoWindowControl, QVideoWindowControl_iid)
|
Q_MEDIA_DECLARE_CONTROL(QVideoWindowControl, QVideoWindowControl_iid)
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"Keys": ["com.nokia.qt.audiosource"]
|
"Keys": ["org.qt-project.qt.audiosource"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ class AudioCaptureServicePlugin : public QMediaServiceProviderPlugin
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
Q_PLUGIN_METADATA(IID "com.nokia.Qt.QMediaServiceProviderFactoryInterface/1.0" FILE "audiocapture.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.qt.mediaserviceproviderfactory/5.0" FILE "audiocapture.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
QMediaService* create(QString const& key);
|
QMediaService* create(QString const& key);
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"Keys": ["com.nokia.qt.camera", "com.nokia.qt.mediaplayer"]
|
"Keys": ["org.qt-project.qt.camera", "org.qt-project.qt.mediaplayer"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ class DSServicePlugin
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_INTERFACES(QMediaServiceSupportedDevicesInterface)
|
Q_INTERFACES(QMediaServiceSupportedDevicesInterface)
|
||||||
Q_INTERFACES(QMediaServiceFeaturesInterface)
|
Q_INTERFACES(QMediaServiceFeaturesInterface)
|
||||||
Q_PLUGIN_METADATA(IID "com.nokia.Qt.QMediaServiceProviderFactoryInterface/1.0", FILE "directshow.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.qt.mediaserviceproviderfactory/5.0", FILE "directshow.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
QMediaService* create(QString const& key);
|
QMediaService* create(QString const& key);
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"Keys": ["com.nokia.qt.mediaplayer", "com.nokia.qt.audiosource", "com.nokia.qt.camera", "com.nokia.qt.audiodecode"]
|
"Keys": ["org.qt-project.qt.mediaplayer", "org.qt-project.qt.audiosource", "org.qt-project.qt.camera", "org.qt-project.qt.audiodecode"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ class QGstreamerServicePlugin
|
|||||||
Q_INTERFACES(QMediaServiceSupportedDevicesInterface)
|
Q_INTERFACES(QMediaServiceSupportedDevicesInterface)
|
||||||
Q_INTERFACES(QMediaServiceFeaturesInterface)
|
Q_INTERFACES(QMediaServiceFeaturesInterface)
|
||||||
Q_INTERFACES(QMediaServiceSupportedFormatsInterface)
|
Q_INTERFACES(QMediaServiceSupportedFormatsInterface)
|
||||||
Q_PLUGIN_METADATA(IID "com.nokia.Qt.QMediaServiceProviderFactoryInterface/1.0" FILE "gstreamer.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.qt.mediaserviceproviderfactory/5.0" FILE "gstreamer.json")
|
||||||
public:
|
public:
|
||||||
QMediaService* create(QString const& key);
|
QMediaService* create(QString const& key);
|
||||||
void release(QMediaService *service);
|
void release(QMediaService *service);
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ public:
|
|||||||
//void readyChanged(bool);
|
//void readyChanged(bool);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QGstreamerVideoRendererInterface_iid "com.nokia.Qt.QGstreamerVideoRendererInterface/1.0"
|
#define QGstreamerVideoRendererInterface_iid "org.qt-project.qt.gstreamervideorenderer/5.0"
|
||||||
Q_DECLARE_INTERFACE(QGstreamerVideoRendererInterface, QGstreamerVideoRendererInterface_iid)
|
Q_DECLARE_INTERFACE(QGstreamerVideoRendererInterface, QGstreamerVideoRendererInterface_iid)
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ QT_USE_NAMESPACE
|
|||||||
class QM3uPlaylistPlugin : public QMediaPlaylistIOPlugin
|
class QM3uPlaylistPlugin : public QMediaPlaylistIOPlugin
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_PLUGIN_METADATA(IID "com.nokia.Qt.QMediaPlaylistIOInterface" FILE "m3u.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.qt.mediaplaylistio/5.0" FILE "m3u.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit QM3uPlaylistPlugin(QObject *parent = 0);
|
explicit QM3uPlaylistPlugin(QObject *parent = 0);
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ class QPulseAudioPlugin : public QAudioSystemPlugin
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
Q_PLUGIN_METADATA(IID "com.nokia.qt.QAudioSystemFactoryInterface" FILE "pulseaudio.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.qt.audiosystemfactory/5.0" FILE "pulseaudio.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
QPulseAudioPlugin(QObject *parent = 0);
|
QPulseAudioPlugin(QObject *parent = 0);
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"Keys": ["com.nokia.qt.mediaplayer"]
|
"Keys": ["org.qt-project.qt.mediaplayer"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ class QT7ServicePlugin
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_INTERFACES(QMediaServiceFeaturesInterface)
|
Q_INTERFACES(QMediaServiceFeaturesInterface)
|
||||||
Q_PLUGIN_METADATA(IID "com.nokia.Qt.QMediaServiceProviderFactoryInterface/1.0" FILE "qt7.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.qt.mediaserviceproviderfactory/5.0" FILE "qt7.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
QT7ServicePlugin();
|
QT7ServicePlugin();
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
#define QT7VideoOutput_iid \
|
#define QT7VideoOutput_iid \
|
||||||
"com.nokia.Qt.QT7VideoOutput/1.0"
|
"org.qt-project.qt.QT7VideoOutput/5.0"
|
||||||
Q_DECLARE_INTERFACE(QT7VideoOutput, QT7VideoOutput_iid)
|
Q_DECLARE_INTERFACE(QT7VideoOutput, QT7VideoOutput_iid)
|
||||||
|
|
||||||
class QT7VideoWindowControl : public QVideoWindowControl, public QT7VideoOutput
|
class QT7VideoWindowControl : public QVideoWindowControl, public QT7VideoOutput
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ class MockServicePlugin1 : public QMediaServiceProviderPlugin,
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_INTERFACES(QMediaServiceSupportedFormatsInterface)
|
Q_INTERFACES(QMediaServiceSupportedFormatsInterface)
|
||||||
Q_INTERFACES(QMediaServiceSupportedDevicesInterface)
|
Q_INTERFACES(QMediaServiceSupportedDevicesInterface)
|
||||||
Q_PLUGIN_METADATA(IID "com.nokia.Qt.QMediaServiceProviderFactoryInterface/1.0" FILE "mockserviceplugin1.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.qt.mediaserviceproviderfactory/5.0" FILE "mockserviceplugin1.json")
|
||||||
public:
|
public:
|
||||||
QStringList keys() const
|
QStringList keys() const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"Keys": ["com.nokia.qt.mediaplayer"]
|
"Keys": ["org.qt-project.qt.mediaplayer"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ class MockServicePlugin2 : public QMediaServiceProviderPlugin,
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_INTERFACES(QMediaServiceSupportedFormatsInterface)
|
Q_INTERFACES(QMediaServiceSupportedFormatsInterface)
|
||||||
Q_INTERFACES(QMediaServiceFeaturesInterface)
|
Q_INTERFACES(QMediaServiceFeaturesInterface)
|
||||||
Q_PLUGIN_METADATA(IID "com.nokia.Qt.QMediaServiceProviderFactoryInterface/1.0" FILE "mockserviceplugin2.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.qt.mediaserviceproviderfactory/5.0" FILE "mockserviceplugin2.json")
|
||||||
public:
|
public:
|
||||||
QStringList keys() const
|
QStringList keys() const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"Keys": ["com.nokia.qt.mediaplayer", "com.nokia.qt.radio"]
|
"Keys": ["org.qt-project.qt.mediaplayer", "org.qt-project.qt.radio"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ class MockServicePlugin3 : public QMediaServiceProviderPlugin,
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_INTERFACES(QMediaServiceSupportedDevicesInterface)
|
Q_INTERFACES(QMediaServiceSupportedDevicesInterface)
|
||||||
Q_PLUGIN_METADATA(IID "com.nokia.Qt.QMediaServiceProviderFactoryInterface/1.0" FILE "mockserviceplugin3.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.qt.mediaserviceproviderfactory/5.0" FILE "mockserviceplugin3.json")
|
||||||
public:
|
public:
|
||||||
QStringList keys() const
|
QStringList keys() const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"Keys": ["com.nokia.qt.mediaplayer", "com.nokia.qt.audiosource"]
|
"Keys": ["org.qt-project.qt.mediaplayer", "org.qt-project.qt.audiosource"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ class MockServicePlugin4 : public QMediaServiceProviderPlugin,
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_INTERFACES(QMediaServiceSupportedFormatsInterface)
|
Q_INTERFACES(QMediaServiceSupportedFormatsInterface)
|
||||||
Q_INTERFACES(QMediaServiceFeaturesInterface)
|
Q_INTERFACES(QMediaServiceFeaturesInterface)
|
||||||
Q_PLUGIN_METADATA(IID "com.nokia.Qt.QMediaServiceProviderFactoryInterface/1.0" FILE "mockserviceplugin4.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.qt.mediaserviceproviderfactory/5.0" FILE "mockserviceplugin4.json")
|
||||||
public:
|
public:
|
||||||
QStringList keys() const
|
QStringList keys() const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"Keys": ["com.nokia.qt.mediaplayer"]
|
"Keys": ["org.qt-project.qt.mediaplayer"]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user