diff options
author | Anuj Mittal <anuj.mittal@intel.com> | 2020-10-08 23:37:55 +0800 |
---|---|---|
committer | Anuj Mittal <anuj.mittal@intel.com> | 2020-10-08 23:56:14 +0800 |
commit | 4b9d6cbc33d3d62e0535c696863305f691c6c726 (patch) | |
tree | 8abad77086a2760d6feb793f00d189572aaaf0ce /recipes-multimedia/mediasdk | |
parent | 4480afe686804c8ec30cd5900e914414d446a541 (diff) | |
download | meta-intel-4b9d6cbc33d3d62e0535c696863305f691c6c726.tar.gz |
intel-mediasdk: remove older version
Commit b9c01736 introduced a new recipe instead of upgrading an older
one. Remove the recipe with older version.
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Diffstat (limited to 'recipes-multimedia/mediasdk')
-rw-r--r-- | recipes-multimedia/mediasdk/intel-mediasdk_20.2.1.bb | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/recipes-multimedia/mediasdk/intel-mediasdk_20.2.1.bb b/recipes-multimedia/mediasdk/intel-mediasdk_20.2.1.bb deleted file mode 100644 index f2d6551d..00000000 --- a/recipes-multimedia/mediasdk/intel-mediasdk_20.2.1.bb +++ /dev/null | |||
@@ -1,59 +0,0 @@ | |||
1 | SUMMARY = "Intel(R) Media SDK for hardware accelerated media processing" | ||
2 | DESCRIPTION = "Intel(R) Media SDK provides an API to access hardware-accelerated \ | ||
3 | video decode, encode and filtering on IntelĀ® platforms with integrated graphics." | ||
4 | |||
5 | HOMEPAGE = "https://github.com/Intel-Media-SDK/MediaSDK" | ||
6 | BUGTRACKER = "https://github.com/Intel-Media-SDK/MediaSDK/issues" | ||
7 | |||
8 | LICENSE = "MIT" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3cb331af679cd8f968bf799a9c55b46e" | ||
10 | |||
11 | CVE_DETAILS = "intel:media_sdk" | ||
12 | |||
13 | # Only for 64 bit until media-driver issues aren't fixed | ||
14 | COMPATIBLE_HOST = '(x86_64).*-linux' | ||
15 | COMPATIBLE_HOST_x86-x32 = "null" | ||
16 | |||
17 | inherit features_check | ||
18 | REQUIRED_DISTRO_FEATURES = "opengl" | ||
19 | |||
20 | DEPENDS += "libdrm libva intel-media-driver" | ||
21 | |||
22 | PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "dri3", "", d)} \ | ||
23 | ${@bb.utils.contains("DISTRO_FEATURES", "wayland", "wayland", "", d)} \ | ||
24 | samples \ | ||
25 | " | ||
26 | |||
27 | PACKAGECONFIG[dri3] = "-DENABLE_X11_DRI3=ON, -DENABLE_X11_DRI3=OFF" | ||
28 | PACKAGECONFIG[itt] = "-DENABLE_ITT=ON, -DENABLE_ITT=OFF, itt" | ||
29 | PACKAGECONFIG[opencl] = "-DENABLE_OPENCL=ON, -DENABLE_OPENCL=OFF, ocl-icd opencl-clhpp opencl-headers" | ||
30 | PACKAGECONFIG[samples] = "-DBUILD_SAMPLES=ON, -DBUILD_SAMPLES=OFF" | ||
31 | PACKAGECONFIG[wayland] = "-DENABLE_WAYLAND=ON, -DENABLE_WAYLAND=OFF, wayland wayland-native" | ||
32 | |||
33 | SRC_URI = "git://github.com/Intel-Media-SDK/MediaSDK.git;protocol=https;branch=${BPN}-20.2;lfs=0 \ | ||
34 | file://0001-FindOpenCL.cmake-don-t-look-for-driver-at-build-time.patch \ | ||
35 | file://0001-FindITT.cmake-fix-detection-of-header-library.patch \ | ||
36 | " | ||
37 | SRCREV = "f7ae8497b3e58a0ef8ad4ac94256f04928c20456" | ||
38 | S = "${WORKDIR}/git" | ||
39 | |||
40 | UPSTREAM_CHECK_GITTAGREGEX = "^intel-mediasdk-(?P<pver>(\d+(\.\d+)+))$" | ||
41 | |||
42 | inherit cmake pkgconfig | ||
43 | |||
44 | EXTRA_OECMAKE += "-DMFX_INCLUDE=${S}/api/include" | ||
45 | |||
46 | do_install_append() { | ||
47 | mv ${D}${datadir}/mfx/samples ${D}${libdir}/mfx/samples | ||
48 | } | ||
49 | |||
50 | PACKAGE_BEFORE_PN = " ${PN}-samples" | ||
51 | |||
52 | FILES_${PN} += " \ | ||
53 | ${libdir}/mfx \ | ||
54 | ${datadir}/mfx/plugins.cfg \ | ||
55 | " | ||
56 | |||
57 | FILES_${PN}-samples = "${libdir}/mfx/samples" | ||
58 | |||
59 | INSANE_SKIP_${PN}-samples += "staticdev" | ||