mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
8d6f745b78
1. glcontextid function is replaced by gstreamer gst_gl_context_new_wrapped . 2. call gst_init before gst_gl_display_new , seems gst_gl_display_new depends on gst_allocator_register , which only worked after gst_init called 3. flush gstreamer OpenGL context before using shared texture, fix flicker problem. https://bugzilla.gnome.org/show_bug.cgi?id=735566 |
||
---|---|---|
.. | ||
.gitignore | ||
AsyncQueue.h | ||
cocoa_utils.mm | ||
gstthread.cpp | ||
gstthread.h | ||
main.cpp | ||
pipeline.cpp | ||
pipeline.h | ||
qglrenderer.cpp | ||
qglrenderer.h | ||
qglwtextureshare.pro | ||
README |
This example illustrates how to integrate Gstreamer GL plugin with Qt. In particular it uses glupload with fakesink elements to create texture with decoded video frame. This texture is shared with QGLWidget derived class, which paints a cube with video texture on each face. To compile the example, include and library paths might be adjusted in .pro file according to your installation of the gstreamer and corresponding development files. Most probably, the adjustments will be necessary on Windows. To run the example simply start executable file after compilation. If there is no command line arguments provided, then videotestsrc element will be used to generate video. The following pipeline will be created in this case: videotestsrc ! video/x-raw, width=640, height=480, framerate=(fraction)30/1 ! glupload ! fakesink sync=1 It is also possible to provide the video file name as a first command line parameter, i.e. ./qglwtextureshare myvideo.ogv . In this case, the following pipeline will be executed: filesrc location=myvideo.ogv ! decodebin2 ! glupload ! fakesink sync=1 I would appreciate any feedback and improvement suggestions for this example. Have fun :-) Andrey Nechypurenko (andreynech@gmail.com)