summaryrefslogtreecommitdiffstats
path: root/common/recipes-multimedia/gstreamer
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-12-15 13:59:57 +0000
committerCalifornia Sullivan <california.l.sullivan@intel.com>2016-12-15 10:27:18 -0800
commit466196fa2f619aa3d37ad6bfe13c11c72f910d16 (patch)
treee83ba8988f11c41ac195ce46159c5967834fd5cf /common/recipes-multimedia/gstreamer
parent04899c330de0560f128e259acf10ace42f1c1c1e (diff)
downloadmeta-intel-466196fa2f619aa3d37ad6bfe13c11c72f910d16.tar.gz
vaapi: remove as recipes moved to oe-core
libva and gstreamer-vaapi are now part of oe-core, so remove them. The package names were changed to reflect the naming scheme, so update the machine configurations to follow. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
Diffstat (limited to 'common/recipes-multimedia/gstreamer')
-rw-r--r--common/recipes-multimedia/gstreamer/gstreamer-vaapi-1.0_1.8.2.bb6
-rw-r--r--common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc36
-rw-r--r--common/recipes-multimedia/gstreamer/gstreamer-vaapi/install-tests.patch43
3 files changed, 0 insertions, 85 deletions
diff --git a/common/recipes-multimedia/gstreamer/gstreamer-vaapi-1.0_1.8.2.bb b/common/recipes-multimedia/gstreamer/gstreamer-vaapi-1.0_1.8.2.bb
deleted file mode 100644
index 3343baeb..00000000
--- a/common/recipes-multimedia/gstreamer/gstreamer-vaapi-1.0_1.8.2.bb
+++ /dev/null
@@ -1,6 +0,0 @@
1require gstreamer-vaapi.inc
2
3DEPENDS += "gstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-bad"
4
5SRC_URI[md5sum] = "5683e0e950160f6a4b5bcd47176baad0"
6SRC_URI[sha256sum] = "5479e86f593d80c00bbd4a43b16b2027cb935412a2bb22c9ba4ac085627a9229"
diff --git a/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc b/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc
deleted file mode 100644
index 6dea9cfc..00000000
--- a/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc
+++ /dev/null
@@ -1,36 +0,0 @@
1SUMMARY = "VA-API support to GStreamer"
2DESCRIPTION = "gstreamer-vaapi consists of a collection of VA-API \
3based plugins for GStreamer and helper libraries: `vaapidecode', \
4`vaapiconvert', and `vaapisink'."
5
6REALPN = "gstreamer-vaapi"
7FILESPATH = "${@base_set_filespath(["${FILE_DIRNAME}/${REALPN}", "${FILE_DIRNAME}/${REALPN}"], d)}"
8
9LICENSE = "LGPLv2.1+"
10LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"
11
12DEPENDS = "libva"
13
14SRC_URI = "https://gstreamer.freedesktop.org/src/${REALPN}/${REALPN}-${PV}.tar.xz \
15 "
16
17S = "${WORKDIR}/${REALPN}-${PV}"
18
19inherit autotools pkgconfig gtk-doc
20
21PACKAGES =+ "${PN}-tests"
22
23PACKAGECONFIG ??= "drm \
24 ${@bb.utils.contains("DISTRO_FEATURES", "opengl x11", "glx", "", d)} \
25 ${@bb.utils.contains("DISTRO_FEATURES", "wayland", "wayland", "", d)} \
26 ${@bb.utils.contains("DISTRO_FEATURES", "x11", "x11", "", d)}"
27
28PACKAGECONFIG[drm] = "--enable-drm,--disable-drm,udev libdrm"
29PACKAGECONFIG[glx] = "--enable-glx,--disable-glx,virtual/mesa"
30PACKAGECONFIG[wayland] = "--enable-wayland,--disable-wayland,wayland"
31PACKAGECONFIG[x11] = "--enable-x11,--disable-x11,virtual/libx11 libxrandr libxrender"
32
33FILES_${PN} += "${libdir}/gstreamer-*/*.so"
34FILES_${PN}-dbg += "${libdir}/gstreamer-*/.debug"
35FILES_${PN}-dev += "${libdir}/gstreamer-*/*.la ${libdir}/gstreamer-*/*.a"
36FILES_${PN}-tests = "${bindir}/*"
diff --git a/common/recipes-multimedia/gstreamer/gstreamer-vaapi/install-tests.patch b/common/recipes-multimedia/gstreamer/gstreamer-vaapi/install-tests.patch
deleted file mode 100644
index d7def3a0..00000000
--- a/common/recipes-multimedia/gstreamer/gstreamer-vaapi/install-tests.patch
+++ /dev/null
@@ -1,43 +0,0 @@
1From 2791dfde0de0abe8100fa833dfe1a9c2e74c2629 Mon Sep 17 00:00:00 2001
2From: Jianxun Zhang <jianxun.zhang@linux.intel.com>
3Date: Thu, 21 Jan 2016 16:25:44 -0800
4Subject: [PATCH] Install tests
5
6This patch is updated for 0.6.1
7
8Upstream-Status: Inappropriate
9
10Signed-off-by: Jianxun Zhang <jianxun.zhang@linux.intel.com>
11---
12 tests/Makefile.am | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15diff --git a/tests/Makefile.am b/tests/Makefile.am
16index 3637d92..7cc6a97 100644
17--- a/tests/Makefile.am
18+++ b/tests/Makefile.am
19@@ -1,4 +1,4 @@
20-noinst_PROGRAMS = \
21+bin_PROGRAMS = \
22 simple-decoder \
23 test-decode \
24 test-display \
25@@ -9,13 +9,13 @@ noinst_PROGRAMS = \
26 $(NULL)
27
28 if USE_ENCODERS
29-noinst_PROGRAMS += \
30+bin_PROGRAMS += \
31 simple-encoder \
32 $(NULL)
33 endif
34
35 if USE_GLX
36-noinst_PROGRAMS += \
37+bin_PROGRAMS += \
38 test-textures \
39 $(NULL)
40 endif
41--
421.9.1
43