summaryrefslogtreecommitdiffstats
path: root/recipes-multimedia
diff options
context:
space:
mode:
authorCarlos Rafael Giani <dv@pseudoterminal.org>2014-06-28 00:13:07 +0200
committerOtavio Salvador <otavio@ossystems.com.br>2014-06-28 14:35:54 -0300
commitfd0927c411034130eccf6e0557e468e30fecc69c (patch)
tree267e597919f2c0f43140bbb412c83f1556d504c3 /recipes-multimedia
parentab90b896f4bf09a8ced37c6e1511686217d053b9 (diff)
downloadmeta-fsl-arm-fd0927c411034130eccf6e0557e468e30fecc69c.tar.gz
gstreamer1.0-plugins-imx: select X11/Wayland/FB EGL platform if appropriate
Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-multimedia')
-rw-r--r--recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.9.6.bb8
1 files changed, 7 insertions, 1 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.9.6.bb b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.9.6.bb
index 5074a2c..71d95f1 100644
--- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.9.6.bb
+++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.9.6.bb
@@ -14,7 +14,13 @@ S = "${WORKDIR}/git"
14inherit waf 14inherit waf
15 15
16# configure the eglvivsink element to use the appropiate EGL platform code 16# configure the eglvivsink element to use the appropiate EGL platform code
17EGLVIVSINK_PLATFORM = "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', 'fb', d)}" 17# X11 if x11 is present in DISTRO_FEATURES
18# Wayland if x11 is not present in DISTRO_FEATURES, but wayland is
19# Framebuffer otherwise
20EGLVIVSINK_PLATFORM = "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', \
21 base_contains('DISTRO_FEATURES', 'wayland', 'wayland', \
22 'fb', d),d)}"
23
18EXTRA_OECONF = "--egl-platform=${EGLVIVSINK_PLATFORM} --kernel-headers=${STAGING_KERNEL_DIR}/include" 24EXTRA_OECONF = "--egl-platform=${EGLVIVSINK_PLATFORM} --kernel-headers=${STAGING_KERNEL_DIR}/include"
19 25
20# LIBV is used by gst-plugins-package.inc to specify the GStreamer version (0.10 vs 1.0) 26# LIBV is used by gst-plugins-package.inc to specify the GStreamer version (0.10 vs 1.0)