summaryrefslogtreecommitdiffstats
path: root/tests/manual/qml-gstreamer-rtp/qml-gstreamer-rtp.cpp
blob: 44e8f16596df3d06e00a77973749befee0ef438f (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
29
30
31
32
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QGuiApplication>
#include <QProcess>
#include <QQmlApplicationEngine>
#include <QtEnvironmentVariables>

int main(int argc, char *argv[])
{
    qputenv("QT_MEDIA_BACKEND", "gstreamer");

    QProcess process;
    process.startCommand(
            "gst-launch-1.0 videotestsrc ! x264enc ! udpsink host=127.0.0.1 port=50004");

    auto scopeGuard = qScopeGuard([&] {
        process.terminate();
        process.waitForFinished();
    });

    QGuiApplication app(argc, argv);
    QQmlApplicationEngine engine;

    process.waitForStarted();

    engine.load(QUrl("qrc:/qml-gstreamer-rtp.qml"));
    if (engine.rootObjects().isEmpty())
        return -1;

    return app.exec();
}