diff options
author | Karthik Ramanan <a0393906@ti.com> | 2016-11-11 13:50:02 +0530 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2016-11-13 20:08:11 +0000 |
commit | 472427989fff11e09615067de8e63cf98919df2a (patch) | |
tree | 55bf6f9ac69fd296614fa46285d73ec922749139 /meta-agl-bsp/meta-ti/recipes-arago/gstreamer/gstreamer1.0-plugins-bad_1.6.3.bbappend | |
parent | 2380bc09b584ae176f2275c6ac72d94ebfbf7c3b (diff) |
dra7xx-evm: platform specific additions for gst-bad
This patch introduces certain allocators and sinks that will
use the platform specific components and provide the base
functionality for the GStreamer accelerator plugins.
Change-Id: Iad16f61eefb8c71933efb9109652aed008939203
Signed-off-by: Karthik Ramanan <a0393906@ti.com>
Diffstat (limited to 'meta-agl-bsp/meta-ti/recipes-arago/gstreamer/gstreamer1.0-plugins-bad_1.6.3.bbappend')
-rw-r--r-- | meta-agl-bsp/meta-ti/recipes-arago/gstreamer/gstreamer1.0-plugins-bad_1.6.3.bbappend | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta-agl-bsp/meta-ti/recipes-arago/gstreamer/gstreamer1.0-plugins-bad_1.6.3.bbappend b/meta-agl-bsp/meta-ti/recipes-arago/gstreamer/gstreamer1.0-plugins-bad_1.6.3.bbappend new file mode 100644 index 000000000..bfcd75036 --- /dev/null +++ b/meta-agl-bsp/meta-ti/recipes-arago/gstreamer/gstreamer1.0-plugins-bad_1.6.3.bbappend @@ -0,0 +1,41 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" + +PACKAGECONFIG = "faad" + +# gstreamer is now also included on Keystone, be mindful of any Graphics dependencies +PACKAGECONFIG_append_omap-a15 = " ${@bb.utils.contains('DISTRO_FEATURES','wayland','wayland','',d)}" +PACKAGECONFIG_append_ti43x = " ${@bb.utils.contains('DISTRO_FEATURES','wayland','wayland','',d)}" +PACKAGECONFIG_append_ti33x = " ${@bb.utils.contains('DISTRO_FEATURES','wayland','wayland','',d)}" + +DEPENDS_append_omap-a15 = " \ + libdce \ + libdrm \ +" + +DEPENDS_append_ti43x = " \ + libdrm \ +" + +DEPENDS_append_ti33x = " \ + libdrm \ +" + +SRC_URI_append_ti43x = " \ +" + +SRC_URI_append_ti33x = " \ +" + +PACKAGE_ARCH = "${MACHINE_ARCH}" + +BRANCH ?= "master" + +SRC_URI = "git://git.ti.com/glsdk/gstreamer1-0-plugins-bad.git;protocol=git;branch=${BRANCH} \ + " + +S = "${WORKDIR}/git" + +SRCREV_omap-a15 = "f0694b5fcec997036ef7df4d382b28e833c8ebfd" +SRCREV = "d0160ca810be30bf2b2e7681f5047933402efb52" + +PR = "r21" |