I'm integrating a (pure) RTP stream into a Qt 5.15.2 Application using GStreamer 1.16.1. Within QML there is "import org.freedesktop.gstreamer.GLVideoItem 1.0" and "GstGLVideoItem" as suggested by the GStreamer play-sample https://github.com/GStreamer/gst-plugins-good/blob/1.16.1/tests/examples/qt/qmlsink/main.qml
Unfortunately, I cannot find any documentation or further help about the "GstGLVideoItem" or potential other QML items for GStreamer.
Does anybody know where to find e.g. all properties of "GstGLVideoItem"?
Namely, I wonder if there is information about the video stream, such as FPS or width and height.
According to the source there aren't much properties for
GstGLVideoItem.The source for
GstGLVideoItemcan be found here. The header shows that it is derived fromQQuickItem, so it has all the QMLItemproperties plus the two listed in the header (depending on the version you are using).There is also the function
setDAR(gint, gint)which is publicly available.