Gstreamer QT Overlay

From RidgeRun Developer Connection
Revision as of 16:06, 7 February 2017 by Mgruner (talk | contribs) (Created page with "= Overview = GstQtOverlay is a GStreamer plug-in that renders QT graphics on top of a video stream. This rendering occurs directly into the image buffer, rather than in phys...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Overview

GstQtOverlay is a GStreamer plug-in that renders QT graphics on top of a video stream. This rendering occurs directly into the image buffer, rather than in physical graphics memory, which brings together the best of the two worlds:

  • Modularity and extensibility of GStreamer
  • Beauty and flexibility of QT

Now, GUIs will be available not only at the video display, but also on file recordings and network streaming, for example.

GstQtOverlay makes heavy use of OpenGL in order to achieve the overlay rendering with high performance. The pixels blit and memory transfers are done by the GPU and DMA accelerators, allowing real time operation at HD resolutions. As a consequence, the CPU remains free for other processing.

Graphics are modeled using QT's QML, which enables fast, powerful and dynamic GUI implementation. QML is loaded at runtime so there is no need to recompile the plug-in in order to change the GUI. This speeds up development time, eases quick prototyping and reduces time-to-market without hurting significantly performance. A single GstQtOverlay is fit for many different GUIs.

Architecture

Quick Start Guide

FAQ

  • 'Can I use external events to interact with my GUI?'

Yes. See X

  • 'Is QML enough for my GUI?'

Yes (most likely). QML support is great, there's a lot of documentation and examples available.

  • 'Can I create my own custom QML components?

Yes. See this guide.

  • 'Can I use animations?'

Not yet. We expect to support this in future releases

  • 'Does my HW support GstQtOverlay?'

Check X

Examples