diff options
| author | Anuj Mittal <anuj.mittal@intel.com> | 2022-04-05 15:23:42 +0800 |
|---|---|---|
| committer | Anuj Mittal <anuj.mittal@intel.com> | 2022-04-07 15:25:03 +0800 |
| commit | 23e680f9567be2b90bd8c607a6654644268cff51 (patch) | |
| tree | 3eac59000d9d18cbf3c687622e7ea32c17f184da | |
| parent | 68e00896f2c669044f6ad8cbbc9958332254a4e4 (diff) | |
| download | meta-intel-23e680f9567be2b90bd8c607a6654644268cff51.tar.gz | |
libyami/libyami-utils: remove recipes
Project not maintained anymore.
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
| -rw-r--r-- | conf/include/maintainers.inc | 2 | ||||
| -rw-r--r-- | recipes-multimedia/libyami/libyami-utils/0001-Fix-build-with-clang.patch | 96 | ||||
| -rw-r--r-- | recipes-multimedia/libyami/libyami-utils_1.3.2.bb | 26 | ||||
| -rw-r--r-- | recipes-multimedia/libyami/libyami_1.3.2.bb | 24 |
4 files changed, 0 insertions, 148 deletions
diff --git a/conf/include/maintainers.inc b/conf/include/maintainers.inc index d6f2306a..5f969b71 100644 --- a/conf/include/maintainers.inc +++ b/conf/include/maintainers.inc | |||
| @@ -27,8 +27,6 @@ RECIPE_MAINTAINER:pn-level-zero = "Naveen Saini <naveen.kumar.saini@intel.com>" | |||
| 27 | RECIPE_MAINTAINER:pn-libipt = "Naveen Saini <naveen.kumar.saini@intel.com>" | 27 | RECIPE_MAINTAINER:pn-libipt = "Naveen Saini <naveen.kumar.saini@intel.com>" |
| 28 | RECIPE_MAINTAINER:pn-libva-intel = "Anuj Mittal <anuj.mittal@intel.com>" | 28 | RECIPE_MAINTAINER:pn-libva-intel = "Anuj Mittal <anuj.mittal@intel.com>" |
| 29 | RECIPE_MAINTAINER:pn-libva-intel-utils = "Anuj Mittal <anuj.mittal@intel.com>" | 29 | RECIPE_MAINTAINER:pn-libva-intel-utils = "Anuj Mittal <anuj.mittal@intel.com>" |
| 30 | RECIPE_MAINTAINER:pn-libyami = "Anuj Mittal <anuj.mittal@intel.com>" | ||
| 31 | RECIPE_MAINTAINER:pn-libyami-utils = "Anuj Mittal <anuj.mittal@intel.com>" | ||
| 32 | RECIPE_MAINTAINER:pn-libxcam = "Naveen Saini <naveen.kumar.saini@intel.com>" | 30 | RECIPE_MAINTAINER:pn-libxcam = "Naveen Saini <naveen.kumar.saini@intel.com>" |
| 33 | RECIPE_MAINTAINER:pn-linux-intel = "Anuj Mittal <anuj.mittal@intel.com>" | 31 | RECIPE_MAINTAINER:pn-linux-intel = "Anuj Mittal <anuj.mittal@intel.com>" |
| 34 | RECIPE_MAINTAINER:pn-linux-intel-rt = "Anuj Mittal <anuj.mittal@intel.com>" | 32 | RECIPE_MAINTAINER:pn-linux-intel-rt = "Anuj Mittal <anuj.mittal@intel.com>" |
diff --git a/recipes-multimedia/libyami/libyami-utils/0001-Fix-build-with-clang.patch b/recipes-multimedia/libyami/libyami-utils/0001-Fix-build-with-clang.patch deleted file mode 100644 index f7de9d16..00000000 --- a/recipes-multimedia/libyami/libyami-utils/0001-Fix-build-with-clang.patch +++ /dev/null | |||
| @@ -1,96 +0,0 @@ | |||
| 1 | From f2e6d2ecfea635ab952649156e31ca893d4b1a47 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Sat, 12 Aug 2017 08:49:20 -0700 | ||
| 4 | Subject: [PATCH] Fix build with clang | ||
| 5 | |||
| 6 | Fix errors e.g. | ||
| 7 | error: comparison of constant -1 with expression of type 'char' is always true [-Werror,-Wtautological-constant-out-of-range-compare]error: comparison of constant -1 with expression of type 'char' is always true [-Werror,-Wtautological-constant-out-of-range-compare] | ||
| 8 | |||
| 9 | and | ||
| 10 | |||
| 11 | psnr.cpp:225:17: error: bool literal returned from 'main' [-Werror,-Wmain] | ||
| 12 | |||
| 13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 14 | Upstream-Status: Pending | ||
| 15 | |||
| 16 | --- | ||
| 17 | tests/decodehelp.cpp | 2 +- | ||
| 18 | tests/encodehelp.h | 2 +- | ||
| 19 | tests/vpp.cpp | 2 +- | ||
| 20 | tests/yamitranscode.cpp | 2 +- | ||
| 21 | testscripts/psnr.cpp | 4 ++-- | ||
| 22 | 5 files changed, 6 insertions(+), 6 deletions(-) | ||
| 23 | |||
| 24 | diff --git a/tests/decodehelp.cpp b/tests/decodehelp.cpp | ||
| 25 | index b27b977..62cca63 100644 | ||
| 26 | --- a/tests/decodehelp.cpp | ||
| 27 | +++ b/tests/decodehelp.cpp | ||
| 28 | @@ -81,7 +81,7 @@ bool processCmdLine(int argc, char** argv, DecodeParameter* parameters) | ||
| 29 | { NULL, no_argument, NULL, 0 } | ||
| 30 | }; | ||
| 31 | |||
| 32 | - char opt; | ||
| 33 | + int opt; | ||
| 34 | while ((opt = getopt_long_only(argc, argv, "h:m:n:i:f:o:w:?", long_opts,&option_index)) != -1){ | ||
| 35 | switch (opt) { | ||
| 36 | case 'h': | ||
| 37 | diff --git a/tests/encodehelp.h b/tests/encodehelp.h | ||
| 38 | index 63580a4..651ec08 100644 | ||
| 39 | --- a/tests/encodehelp.h | ||
| 40 | +++ b/tests/encodehelp.h | ||
| 41 | @@ -109,7 +109,7 @@ static VideoRateControl string_to_rc_mode(char *str) | ||
| 42 | |||
| 43 | static bool process_cmdline(int argc, char *argv[]) | ||
| 44 | { | ||
| 45 | - char opt; | ||
| 46 | + int opt; | ||
| 47 | const struct option long_opts[] = { | ||
| 48 | { "help", no_argument, NULL, 'h' }, | ||
| 49 | { "qp", required_argument, NULL, 0 }, | ||
| 50 | diff --git a/tests/vpp.cpp b/tests/vpp.cpp | ||
| 51 | index 5a60c0a..52da43b 100644 | ||
| 52 | --- a/tests/vpp.cpp | ||
| 53 | +++ b/tests/vpp.cpp | ||
| 54 | @@ -151,7 +151,7 @@ public: | ||
| 55 | private: | ||
| 56 | bool processCmdLine(int argc, char* argv[]) | ||
| 57 | { | ||
| 58 | - char opt; | ||
| 59 | + int opt; | ||
| 60 | const struct option long_opts[] = { | ||
| 61 | { "help", no_argument, NULL, 'h' }, | ||
| 62 | { "sharpening", required_argument, NULL, 's' }, | ||
| 63 | diff --git a/tests/yamitranscode.cpp b/tests/yamitranscode.cpp | ||
| 64 | index 6207209..00164ce 100755 | ||
| 65 | --- a/tests/yamitranscode.cpp | ||
| 66 | +++ b/tests/yamitranscode.cpp | ||
| 67 | @@ -100,7 +100,7 @@ static VideoRateControl string_to_rc_mode(char *str) | ||
| 68 | |||
| 69 | static bool processCmdLine(int argc, char *argv[], TranscodeParams& para) | ||
| 70 | { | ||
| 71 | - char opt; | ||
| 72 | + int opt; | ||
| 73 | const struct option long_opts[] = { | ||
| 74 | { "help", no_argument, NULL, 'h' }, | ||
| 75 | { "qp", required_argument, NULL, 0 }, | ||
| 76 | diff --git a/testscripts/psnr.cpp b/testscripts/psnr.cpp | ||
| 77 | index 5cc24c9..68bd668 100644 | ||
| 78 | --- a/testscripts/psnr.cpp | ||
| 79 | +++ b/testscripts/psnr.cpp | ||
| 80 | @@ -215,14 +215,14 @@ int main(int argc, char *argv[]) | ||
| 81 | const char* psnrresult = "average_psnr.txt"; | ||
| 82 | int width=0,height=0; | ||
| 83 | int standardpsnr = NORMAL_PSNR; | ||
| 84 | - char opt; | ||
| 85 | + int opt; | ||
| 86 | while ((opt = getopt(argc, argv, "h:W:H:i:o:s:?")) != -1) | ||
| 87 | { | ||
| 88 | switch (opt) { | ||
| 89 | case 'h': | ||
| 90 | case '?': | ||
| 91 | print_help(argv[0]); | ||
| 92 | - return false; | ||
| 93 | + return -1; | ||
| 94 | case 'i': | ||
| 95 | filename1 = optarg; | ||
| 96 | break; | ||
diff --git a/recipes-multimedia/libyami/libyami-utils_1.3.2.bb b/recipes-multimedia/libyami/libyami-utils_1.3.2.bb deleted file mode 100644 index 8956bd04..00000000 --- a/recipes-multimedia/libyami/libyami-utils_1.3.2.bb +++ /dev/null | |||
| @@ -1,26 +0,0 @@ | |||
| 1 | SUMMARY = "Applications and Scripts for libyami." | ||
| 2 | DESCRIPTION = "Applications and Scripts for libyami." | ||
| 3 | |||
| 4 | HOMEPAGE = "https://github.com/intel/libyami-utils" | ||
| 5 | BUGTRACKER = "https://github.com/intel/libyami-utils/issues/new" | ||
| 6 | |||
| 7 | LICENSE = "Apache-2.0" | ||
| 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" | ||
| 9 | |||
| 10 | SRC_URI = "git://github.com/intel/libyami-utils.git;branch=master;protocol=https \ | ||
| 11 | file://0001-Fix-build-with-clang.patch \ | ||
| 12 | " | ||
| 13 | SRCREV = "c3d25b64b05aeb0c4eecc140aef617cfeced6b8e" | ||
| 14 | S = "${WORKDIR}/git" | ||
| 15 | |||
| 16 | DEPENDS = "libva libyami" | ||
| 17 | |||
| 18 | inherit autotools pkgconfig features_check | ||
| 19 | |||
| 20 | REQUIRED_DISTRO_FEATURES = "opengl" | ||
| 21 | |||
| 22 | PACKAGECONFIG = "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}" | ||
| 23 | |||
| 24 | # --enable-x11 needs libva-x11 | ||
| 25 | # gles-tests fail to build without x11: see https://github.com/intel/libyami-utils/issues/91 | ||
| 26 | PACKAGECONFIG[x11] = "--enable-x11 --enable-egl,--disable-x11 --disable-egl, virtual/libx11" | ||
diff --git a/recipes-multimedia/libyami/libyami_1.3.2.bb b/recipes-multimedia/libyami/libyami_1.3.2.bb deleted file mode 100644 index ad84bb4f..00000000 --- a/recipes-multimedia/libyami/libyami_1.3.2.bb +++ /dev/null | |||
| @@ -1,24 +0,0 @@ | |||
| 1 | SUMMARY = "Yami is media infrastructure base on libva" | ||
| 2 | DESCRIPTION = "Yet Another Media Infrastructure \ | ||
| 3 | light weight hardware codec library base on VA-API " | ||
| 4 | |||
| 5 | HOMEPAGE = "https://github.com/intel/libyami" | ||
| 6 | BUGTRACKER = "https://github.com/intel/libyami/issues/new" | ||
| 7 | |||
| 8 | LICENSE = "Apache-2.0" | ||
| 9 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=3b83ef96387f14655fc854ddc3c6bd57" | ||
| 10 | |||
| 11 | SRC_URI = "git://github.com/intel/libyami.git;branch=apache;protocol=https \ | ||
| 12 | " | ||
| 13 | SRCREV = "08606d0a43e0ef15e5b61cc13563169370ce8715" | ||
| 14 | S = "${WORKDIR}/git" | ||
| 15 | |||
| 16 | CXXFLAGS:append = " -Wno-error" | ||
| 17 | |||
| 18 | PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "x11", "", d)}" | ||
| 19 | PACKAGECONFIG[x11] = "--enable-x11,--disable-x11,virtual/libx11 libxrandr libxrender" | ||
| 20 | |||
| 21 | DEPENDS = "libva" | ||
| 22 | inherit autotools pkgconfig features_check | ||
| 23 | |||
| 24 | REQUIRED_DISTRO_FEATURES = "opengl" | ||
