From 530d45a14d4f5f4d7d185f3dae45c473dbfa3a58 Mon Sep 17 00:00:00 2001 From: Carlos Rafael Giani Date: Thu, 6 Feb 2014 17:04:15 +0100 Subject: [PATCH] gstreamer1.0-imx: Add GStreamer 1.0 plugins gstreamer-imx is an ongoing project to write GStreamer 1.0 plugins for using the i.MX VPU,IPU, and GPU. With the plugins, the VPU en- and decoding features can be used, the IPU can transform images (deinterlacing, colorspace conversion etc.), and the GPU can display frames using OpenGL ES and the Vivante direct textures. Currently, the plugins have only been tested with the i.MX6 SoC series. All plugins are based on appropriate GStreamer base classes. Physical memory metadata structures make it possible to avoid costly frame copies, making it possible to use transcoding chains that do not involve CPU copies for example. This recipe is sent to meta-fsl-arm to make these plugins more visible and available to others. Signed-off-by: Carlos Rafael Giani --- .../gstreamer/gstreamer1.0-imx_0.9.2.bb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 meta-fsl-arm/recipes-multimedia/gstreamer/gstreamer1.0-imx_0.9.2.bb diff --git a/meta-fsl-arm/recipes-multimedia/gstreamer/gstreamer1.0-imx_0.9.2.bb b/meta-fsl-arm/recipes-multimedia/gstreamer/gstreamer1.0-imx_0.9.2.bb new file mode 100644 index 00000000..2bbd3f9c --- /dev/null +++ b/meta-fsl-arm/recipes-multimedia/gstreamer/gstreamer1.0-imx_0.9.2.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "GStreamer 1.0 plugins for i.MX platforms" +LICENSE = "LGPLv2+" +LIC_FILES_CHKSUM = "file://LICENSE;md5=55ca817ccb7d5b5b66355690e9abc605" +SECTION = "multimedia" +DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base libfslvpuwrap virtual/kernel virtual/egl \ + virtual/libgles2 ${@base_contains('DISTRO_FEATURES', 'x11', 'virtual/libx11', '', d)}" + +SRCBRANCH ?= "master" +SRCREV = "331f268b3bc282351b82c3548e703ea04be72b2c" +SRC_URI = "git://github.com/Freescale/gstreamer-imx.git;branch=${SRCBRANCH}" + +S = "${WORKDIR}/git" + +inherit waf + +CFLAGS += "-I${STAGING_KERNEL_DIR}/include" + +# configure the eglvivsink element to use the appropiate EGL platform code +EGLVIVSINK_PLATFORM = "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', 'fb', d)}" +EXTRA_OECONF = "--egl-platform=${EGLVIVSINK_PLATFORM}" + +# LIBV is used by gst-plugins-package.inc to specify the GStreamer version (0.10 vs 1.0) +LIBV = "1.0" +require recipes-multimedia/gstreamer/gst-plugins-package.inc + +# the following line is required to produce one package for each plugin +PACKAGES_DYNAMIC = "^${PN}-.*" + +COMPATIBLE_MACHINE = "(mx6)" -- 2.40.1