From patchwork Mon Aug 5 04:37:00 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 47284 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 17ECCC52D71 for ; Mon, 5 Aug 2024 04:37:24 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.975.1722832643304821104 for ; Sun, 04 Aug 2024 21:37:23 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: denix.org, ip: 64.68.198.64, mailfrom: denis@denix.org) Received: from localhost (localhost [127.0.0.1]) by mailout4.zoneedit.com (Postfix) with ESMTP id 992F140CAF; Mon, 5 Aug 2024 04:37:22 +0000 (UTC) Received: from mailout4.zoneedit.com ([127.0.0.1]) by localhost (zmo14-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id usPpOAEmxQ9A; Mon, 5 Aug 2024 04:37:22 +0000 (UTC) Received: from mail.denix.org (pool-100-15-87-159.washdc.fios.verizon.net [100.15.87.159]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 83D8640CB0; Mon, 5 Aug 2024 04:37:21 +0000 (UTC) Received: from thorin.han-sole.ts.net (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 3B1F3164058; Mon, 5 Aug 2024 00:37:21 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Cc: Denys Dmytriyenko Subject: [master][RFC PATCH 03/16] qt-opencv-opencl-opengl-multithreaded: deprecate Date: Mon, 5 Aug 2024 00:37:00 -0400 Message-Id: <20240805043713.172555-3-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20240805043713.172555-1-denis@denix.org> References: <20240805043713.172555-1-denis@denix.org> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Mon, 05 Aug 2024 04:37:24 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/15484 From: Denys Dmytriyenko Old analytics demos haven't been maintained for quite some time, remove. This demo used to offload processing tasks to DSP using heavily modified OpenCL/OpenCV forks of old versions of corresponding upstream projects. Signed-off-by: Denys Dmytriyenko --- ...-opencv-opencl-opengl-multithreaded_git.bb | 46 ------------------- ...group-arago-tisdk-multimedia-sdk-target.bb | 1 - 2 files changed, 47 deletions(-) delete mode 100644 meta-arago-demos/recipes-apps/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb diff --git a/meta-arago-demos/recipes-apps/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb b/meta-arago-demos/recipes-apps/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb deleted file mode 100644 index de672e28..00000000 --- a/meta-arago-demos/recipes-apps/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb +++ /dev/null @@ -1,46 +0,0 @@ -DESCRIPTION = "A simple multithreaded OpenCV example application using the Qt framework" -HOMEPAGE = "https://github.com/devernay/qt-opencv-multithreaded" -SECTION = "multimedia" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://COPYING;md5=e28b998056a1a513e87be11c5045e85b" - -inherit features_check - -REQUIRED_MACHINE_FEATURES = "dsp gpu" -REQUIRED_DISTRO_FEATURES = "opencv opencl opengl" - -DEPENDS += "opencv opencl virtual/egl ti-cgt6x-native clocl-native dsplib-c66x" - -COMPATIBLE_MACHINE = "dra7xx" - -PV = "1.3.3" -PR = "r3" - -BRANCH = "master" -SRC_URI = "git://git.ti.com/git/apps/qt-opencv-opencl-opengl-multithreaded.git;protocol=https;branch=${BRANCH}" - -SRCREV = "80051ec8befd921e40cfb74a49234ed045576bbc" - -S = "${WORKDIR}/git" - -inherit qt5 - -export TARGET_ROOTDIR = "${STAGING_DIR_HOST}" -export TI_OCL_CGT_INSTALL = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" -export TI_DSPLIB_DIR = "${STAGING_DIR_TARGET}/usr/share/ti/ti-dsplib-c66x-tree" - -CXXFLAGS:append = " -DOCV_NATIVE " - -do_compile() { - cd ${S} - oe_runmake -f oclMakefile - cd - - oe_runmake -} - -do_install() { - install -d ${D}/usr/bin - install -m 755 qt-opencv-opencl-opengl-multithreaded ${D}/usr/bin/qt-opencv-opencl-opengl-multithreaded -} - -RDEPENDS:${PN} += "opencv opencl-runtime" diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-target.bb index 62bcc0ea..121af56d 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-target.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-target.bb @@ -13,7 +13,6 @@ BARCODE_PKG = "" MULTIMEDIA = "" -# ${@['','qt-opencv-opencl-opengl-multithreaded-dev'][oe.utils.all_distro_features(d, 'opencv opencl opengl', True, False) and bb.utils.contains('MACHINE_FEATURES', 'gpu dsp', True, False, d)]} MULTIMEDIA:append:dra7xx = " \ hevc-arm-decoder-dev \ hevc-arm-decoder-staticdev \