diff options
author | 2016-12-15 16:57:16 +0000 | |
---|---|---|
committer | 2016-12-15 16:57:16 +0000 | |
commit | 3f95bcd72a9889544451806fd7a4af53d01658c2 (patch) | |
tree | 0dea226c9b05605bd820c238407020ee613d06e7 | |
parent | a66ded20b5ccbe7ac7b9acadaa896e192d6033b2 (diff) | |
download | meta-qcom-3f95bcd72a9889544451806fd7a4af53d01658c2.tar.gz meta-qcom-3f95bcd72a9889544451806fd7a4af53d01658c2.tar.bz2 meta-qcom-3f95bcd72a9889544451806fd7a4af53d01658c2.zip |
gstreamer1.0-plugins-bad: default to using gles2/egl for x11
Older version of gstreamer neeeded Desktop GL for glimagesink to work well. This
is no longer the case, so let's default to using gles2/egl from now on. This is
fine for gst 1.8 and above.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
-rw-r--r-- | recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend index b40701d..7b47dbc 100644 --- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend +++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend @@ -1,5 +1,2 @@ -GST_BAD_OPENGL_FEATURES= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'opengl', 'gles2', d)}" - -# We want OpenGL with freedreno for our machines -PACKAGECONFIG_GL_apq8064 = "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', '${GST_BAD_OPENGL_FEATURES}', '', d)}" -PACKAGECONFIG_GL_apq8016 = "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', '${GST_BAD_OPENGL_FEATURES}', '', d)}" +PACKAGECONFIG_GL_apq8064 = "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gles2 egl', '', d)}" +PACKAGECONFIG_GL_apq8016 = "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gles2 egl', '', d)}" |