QtGStreamer
1.2.0
|
#include <QGst/Ui/GraphicsVideoSurface>
Inherits QObject.
Public Member Functions | |
GraphicsVideoSurface (QGraphicsView *parent) | |
ElementPtr | videoSink () const |
Helper class for painting video on a QGraphicsView.
This is a helper class that represents a video surface on a QGraphicsView. This is not a QGraphicsItem, though, it is just a helper class to bind the video sink to a specific view. To use it, create a GraphicsVideoWidget, add it to your scene and connect it with this surface.
Example
This class internally creates and uses either a "qtglvideosink" or a "qtvideosink" element ("qt5glvideosink" / "qt5videosink" in Qt5). This element is created the first time it is requested and a reference is kept internally.
To make use of OpenGL hardware acceleration (using qtglvideosink), you need to set a QGLWidget as the viewport of the QGraphicsView. Note that you must do this before the video sink element is requested for the first time using the videoSink() method, as this method needs to find a GL context to be able to construct qtglvideosink and query the hardware about supported features. Using OpenGL acceleration is recommended. If you don't use it, painting will be done in software with QImage and QPainter (using qtvideosink).
This class can also be used to paint video on QML.
Example:
Definition at line 91 of file graphicsvideosurface.h.
ElementPtr QGst::Ui::GraphicsVideoSurface::videoSink | ( | ) | const |
Returns the video sink element that provides this surface's image. The element will be constructed the first time that this function is called. The surface will always keep a reference to this element.
Definition at line 44 of file graphicsvideosurface.cpp.