1 | // Copyright (C) 2024 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | #ifndef GSTREAMER_PLATFORMSPECIFICINTERFACE_P_H |
4 | #define GSTREAMER_PLATFORMSPECIFICINTERFACE_P_H |
5 | |
6 | // |
7 | // W A R N I N G |
8 | // ------------- |
9 | // |
10 | // This file is not part of the Qt API. It exists purely as an |
11 | // implementation detail. This header file may change from version to |
12 | // version without notice, or even be removed. |
13 | // |
14 | // We mean it. |
15 | // |
16 | |
17 | #include <QtMultimedia/private/qplatformmediaintegration_p.h> |
18 | |
19 | typedef struct _GstPipeline GstPipeline; // NOLINT (bugprone-reserved-identifier) |
20 | typedef struct _GstElement GstElement; // NOLINT (bugprone-reserved-identifier) |
21 | |
22 | QT_BEGIN_NAMESPACE |
23 | |
24 | class Q_MULTIMEDIA_EXPORT QGStreamerPlatformSpecificInterface |
25 | : public QAbstractPlatformSpecificInterface |
26 | { |
27 | public: |
28 | ~QGStreamerPlatformSpecificInterface() override; |
29 | |
30 | static QGStreamerPlatformSpecificInterface *instance(); |
31 | |
32 | virtual QAudioDevice makeCustomGStreamerAudioInput(const QByteArray &gstreamerPipeline) = 0; |
33 | virtual QAudioDevice makeCustomGStreamerAudioOutput(const QByteArray &gstreamerPipeline) = 0; |
34 | virtual QCamera *makeCustomGStreamerCamera(const QByteArray &gstreamerPipeline, |
35 | QObject *parent) = 0; |
36 | |
37 | // Note: ownership of GstElement is not transferred |
38 | virtual QCamera *makeCustomGStreamerCamera(GstElement *, QObject *parent) = 0; |
39 | |
40 | virtual GstPipeline *gstPipeline(QMediaPlayer *) = 0; |
41 | virtual GstPipeline *gstPipeline(QMediaCaptureSession *) = 0; |
42 | }; |
43 | |
44 | QT_END_NAMESPACE |
45 | |
46 | #endif // GSTREAMER_PLATFORMSPECIFICINTERFACE_P_H |
47 |