diff options
| author | Anuj Mittal <anuj.mittal@intel.com> | 2018-05-03 16:17:53 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-11 07:49:37 +0100 |
| commit | 19df6ef6f3ec19c7751aab59c3609fb5320cee06 (patch) | |
| tree | d0a53e0d0bdaaa2b75ed4b7b30d034c35139a97f /meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.14.0.bb | |
| parent | c59b0012803eb10a1cb086fa9d926c2182ebc886 (diff) | |
| download | poky-19df6ef6f3ec19c7751aab59c3609fb5320cee06.tar.gz | |
gstreamer-vaapi: upgrade 1.12.4 -> 1.14.0
For changes, please see gstreamer-vaapi specific section at:
https://gstreamer.freedesktop.org/releases/1.14/
(From OE-Core rev: bf0b64717511d9f247b0395d5ae5889df2e08950)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.14.0.bb')
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.14.0.bb | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.14.0.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.14.0.bb new file mode 100644 index 0000000000..4f752a57b3 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.14.0.bb | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | SUMMARY = "VA-API support to GStreamer" | ||
| 2 | DESCRIPTION = "gstreamer-vaapi consists of a collection of VA-API \ | ||
| 3 | based plugins for GStreamer and helper libraries: `vaapidecode', \ | ||
| 4 | `vaapiconvert', and `vaapisink'." | ||
| 5 | |||
| 6 | REALPN = "gstreamer-vaapi" | ||
| 7 | FILESPATH = "${@base_set_filespath(["${FILE_DIRNAME}/${REALPN}", "${FILE_DIRNAME}/${REALPN}"], d)}" | ||
| 8 | |||
| 9 | LICENSE = "LGPLv2.1+" | ||
| 10 | LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c" | ||
| 11 | |||
| 12 | SRC_URI = "https://gstreamer.freedesktop.org/src/${REALPN}/${REALPN}-${PV}.tar.xz \ | ||
| 13 | " | ||
| 14 | |||
| 15 | SRC_URI[md5sum] = "248c3aafab59814e71eb4a6c334cb261" | ||
| 16 | SRC_URI[sha256sum] = "e4e31f085ef289bf1049398f641345979d20a1b11a80285744bba98504991df2" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/${REALPN}-${PV}" | ||
| 19 | DEPENDS = "libva gstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-bad" | ||
| 20 | |||
| 21 | inherit autotools pkgconfig gtk-doc distro_features_check upstream-version-is-even | ||
| 22 | |||
| 23 | REQUIRED_DISTRO_FEATURES ?= "opengl" | ||
| 24 | |||
| 25 | PACKAGES =+ "${PN}-tests" | ||
| 26 | |||
| 27 | # OpenGL packageconfig factored out to make it easy for distros | ||
| 28 | # and BSP layers to pick either glx, egl, or no GL. By default, | ||
| 29 | # try detecting X11 first, and if found (with OpenGL), use GLX, | ||
| 30 | # otherwise try to check if EGL can be used. | ||
| 31 | PACKAGECONFIG_GL ?= "${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'glx', \ | ||
| 32 | bb.utils.contains('DISTRO_FEATURES', 'opengl', 'egl', \ | ||
| 33 | '', d), d)}" | ||
| 34 | |||
| 35 | PACKAGECONFIG ??= "drm \ | ||
| 36 | ${PACKAGECONFIG_GL} \ | ||
| 37 | ${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}" | ||
| 38 | |||
| 39 | PACKAGECONFIG[drm] = "--enable-drm,--disable-drm,udev libdrm" | ||
| 40 | PACKAGECONFIG[egl] = "--enable-egl,--disable-egl,virtual/egl" | ||
| 41 | PACKAGECONFIG[glx] = "--enable-glx,--disable-glx,virtual/libgl" | ||
| 42 | PACKAGECONFIG[wayland] = "--enable-wayland,--disable-wayland,wayland" | ||
| 43 | PACKAGECONFIG[x11] = "--enable-x11,--disable-x11,virtual/libx11 libxrandr libxrender" | ||
| 44 | |||
| 45 | FILES_${PN} += "${libdir}/gstreamer-*/*.so" | ||
| 46 | FILES_${PN}-dbg += "${libdir}/gstreamer-*/.debug" | ||
| 47 | FILES_${PN}-dev += "${libdir}/gstreamer-*/*.la ${libdir}/gstreamer-*/*.a" | ||
| 48 | FILES_${PN}-tests = "${bindir}/*" | ||
