summaryrefslogtreecommitdiffstats
path: root/src/plugins/multimedia/gstreamer/qgstreamerplugin.cpp
blob: 66ad7f712ac9e5d5db5547d8fd483c65ce91f155 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include <QtMultimedia/private/qplatformmediaplugin_p.h>

#include <qgstreamerintegration_p.h>

QT_BEGIN_NAMESPACE

class QGstreamerMediaPlugin : public QPlatformMediaPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID QPlatformMediaPlugin_iid FILE "gstreamer.json")

public:
    QGstreamerMediaPlugin() = default;

    QPlatformMediaIntegration* create(const QString &name) override
    {
        if (name == u"gstreamer")
            return new QGstreamerIntegration;
        return nullptr;
    }
};

QT_END_NAMESPACE

#include "qgstreamerplugin.moc"