new qt5 qml GL video sink
authorMatthew Waters <matthew@centricular.com>
Mon, 6 Jul 2015 13:10:51 +0000 (23:10 +1000)
committerMatthew Waters <matthew@centricular.com>
Fri, 10 Jul 2015 05:25:26 +0000 (15:25 +1000)
commitb1bbdceeb2cf055f8a57785b058ce3db8f84514b
treeb136a27ba867fbec52b0cc87589c66b091e57eb9
new qt5 qml GL video sink

Very much in the same spirit as the Gtk GL sink

Two things are provided
1. A QQuickItem subclass that renders out RGBA filled GstGLMemory
   buffers that is instantiated from qml.
2. A sink element that will push buffers into (1)

To use
1. Declare the GstGLVideoItem in qml with an appropriate
   objectName property set.
2. Get the aforementioned GstGLVideoItem from qml using something like

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

QObject *rootObject = engine.rootObjects().first();
QQuickItem *videoItem = rootObject->findChild<QQuickItem *> ("videoItem");

3. Set the videoItem on the sink

https://bugzilla.gnome.org/show_bug.cgi?id=752185
14 files changed:
ext/qt/.gitignore [new file with mode: 0644]
ext/qt/Makefile.am [new file with mode: 0644]
ext/qt/gstplugin.cc [new file with mode: 0644]
ext/qt/gstqsgtexture.cc [new file with mode: 0644]
ext/qt/gstqsgtexture.h [new file with mode: 0644]
ext/qt/gstqtsink.cc [new file with mode: 0644]
ext/qt/gstqtsink.h [new file with mode: 0644]
ext/qt/qtitem.cc [new file with mode: 0644]
ext/qt/qtitem.h [new file with mode: 0644]
tests/examples/qt/qml/.gitignore [new file with mode: 0644]
tests/examples/qt/qml/main.cpp [new file with mode: 0644]
tests/examples/qt/qml/main.qml [new file with mode: 0644]
tests/examples/qt/qml/play.pro [new file with mode: 0644]
tests/examples/qt/qml/qml.qrc [new file with mode: 0644]