| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
In case ret is False, fallthrough to default case.
CID #1320705
|
|
|
|
|
|
|
|
| |
Value in tex is overwritten before being used. Removing it.
CID 1320715
https://bugzilla.gnome.org/show_bug.cgi?id=754253
|
|
|
|
|
|
|
|
|
|
| |
Including:
- Necessary configure checks
- Necessary compile time platform checks
- Necessary runtime qt android platform detection
- Escaping GLsync definition with Qt's GLES2 implementation
https://bugzilla.gnome.org/show_bug.cgi?id=754466
|
|
|
|
|
|
|
|
| |
For example moc will bail out when given arguments it does not
know about. The moc specific MOC_CPPFLAGS can still be used
to pass flags to moc.
https://bugzilla.gnome.org/show_bug.cgi?id=754466
|
|
|
|
|
|
| |
libqtsink -> libgstqtsink
https://bugzilla.gnome.org/show_bug.cgi?id=754466
|
|
|
|
|
|
|
| |
Otherwise we could include headers/configurations that will
never been installed.
https://bugzilla.gnome.org/show_bug.cgi?id=754732
|
|
|
|
|
|
|
| |
Otherwise when building with --as-needed we would need to link to
a GL or GLES library.
https://bugzilla.gnome.org/show_bug.cgi?id=754732
|
|
|
|
|
|
| |
Otherwise, we'll just crash at runtime because the gl context is NULL
https://bugzilla.gnome.org/show_bug.cgi?id=754108
|
| |
|
|
|
|
| |
From GStreamer's GL context into the QML context
|
|
|
|
| |
We only require moc building at build time.
|
|
|
|
| |
Separate generated files, from disted files
|
|
|
|
|
|
| |
They require to get_proc_address some functions through the
platform specific {glX,egl}GetProcAddress rather than the default
GL library symbol lookup.
|
| |
|
|
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
|