summaryrefslogtreecommitdiff
path: root/playback/player/qt/main.cpp
blob: 9a8adf6150f1d25d8a4f3623450442c5504ce7b9 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* GStreamer
 *
 * Copyright (C) 2015 Alexandre Moreno <alexmorenocano@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#include <QApplication>
#include <QQmlApplicationEngine>
#include <QCommandLineParser>
#include <QStringList>
#include <QUrl>

#include "player.h"
#include "imagesample.h"

int main(int argc, char *argv[])
{
    QGuiApplication app(argc, argv);
    int result;

    QCommandLineParser parser;
    parser.setApplicationDescription("GstPlayer");
    parser.addHelpOption();
    parser.addPositionalArgument("urls",
        QCoreApplication::translate("main", "URLs to play, optionally."), "[urls...]");
    parser.process(app);

    QList<QUrl> media_files;

    const QStringList args = parser.positionalArguments();
    foreach (const QString file, args) {
        media_files << QUrl::fromUserInput(file);
    }

    qmlRegisterType<Player>("Player", 1, 0, "Player");
    qmlRegisterType<ImageSample>("ImageSample", 1, 0, "ImageSample");

    /* the plugin must be loaded before loading the qml file to register the
     * GstGLVideoItem qml item
     * FIXME Add a QQmlExtensionPlugin into qmlglsink to register GstGLVideoItem
     * with the QML engine, then remove this */
    gst_init(NULL,NULL);
    GstElement *sink = gst_element_factory_make ("qmlglsink", NULL);
    gst_object_unref(sink);


    QQmlApplicationEngine engine;
    engine.load(QUrl(QStringLiteral("qrc:/main.qml")));

    QObject *rootObject = engine.rootObjects().first();

    Player *player = rootObject->findChild<Player*>("player");

    QQuickItem *videoItem = rootObject->findChild<QQuickItem*>("videoItem");
    player->setVideoOutput(videoItem);

    if (!media_files.isEmpty())
        player->setPlaylist(media_files);

    result = app.exec();

    gst_deinit ();
    return result;
}