diff options
author | Julien Isorce <jisorce@oblong.com> | 2017-08-22 12:39:43 +0100 |
---|---|---|
committer | Julien Isorce <jisorce@oblong.com> | 2017-08-22 13:44:20 +0100 |
commit | 2d9720690cb5947d3fa97fef94f539a1bef8dab0 (patch) | |
tree | 67d9e72d553eeef67c9b3d2b8cb70d57871945da /ext | |
parent | 9403af81ef899c0698448b899ed8ae273378d5a0 (diff) |
qt: fix broken build due to commit 2fd84a6c for gstgl
https://bugzilla.gnome.org/show_bug.cgi?id=784779
Diffstat (limited to 'ext')
-rw-r--r-- | ext/qt/gstqsgtexture.cc | 1 | ||||
-rw-r--r-- | ext/qt/gstqtglutility.cc | 1 | ||||
-rw-r--r-- | ext/qt/gstqtsink.cc | 2 | ||||
-rw-r--r-- | ext/qt/qtwindow.cc | 1 |
4 files changed, 5 insertions, 0 deletions
diff --git a/ext/qt/gstqsgtexture.cc b/ext/qt/gstqsgtexture.cc index 7391806ba..2b314e0ee 100644 --- a/ext/qt/gstqsgtexture.cc +++ b/ext/qt/gstqsgtexture.cc @@ -27,6 +27,7 @@ #include <gst/video/video.h> #include <gst/gl/gl.h> +#include <gst/gl/gstglfuncs.h> #include "gstqsgtexture.h" #define GST_CAT_DEFAULT gst_qsg_texture_debug diff --git a/ext/qt/gstqtglutility.cc b/ext/qt/gstqtglutility.cc index d0f766874..ff8d87592 100644 --- a/ext/qt/gstqtglutility.cc +++ b/ext/qt/gstqtglutility.cc @@ -45,6 +45,7 @@ #include <qpa/qplatformnativeinterface.h> #include <gst/gl/viv-fb/gstgldisplay_viv_fb.h> #else +#include <gst/gl/egl/gstegl.h> #include <gst/gl/egl/gstgldisplay_egl.h> #endif #include <gst/gl/egl/gstglcontext_egl.h> diff --git a/ext/qt/gstqtsink.cc b/ext/qt/gstqtsink.cc index c7ac11ec6..31495feca 100644 --- a/ext/qt/gstqtsink.cc +++ b/ext/qt/gstqtsink.cc @@ -30,6 +30,8 @@ #include "gstqtsink.h" #include <QtGui/QGuiApplication> +#include <gst/gl/gstglfuncs.h> + #define GST_CAT_DEFAULT gst_debug_qt_gl_sink GST_DEBUG_CATEGORY (GST_CAT_DEFAULT); diff --git a/ext/qt/qtwindow.cc b/ext/qt/qtwindow.cc index 6f1df7edb..1151ddc08 100644 --- a/ext/qt/qtwindow.cc +++ b/ext/qt/qtwindow.cc @@ -25,6 +25,7 @@ #include <stdio.h> #include <gst/video/video.h> +#include <gst/gl/gstglfuncs.h> #include "qtwindow.h" #include "gstqsgtexture.h" #include "gstqtglutility.h" |