From patchwork Fri Aug 5 18:18:45 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 16987 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 9876CBE173 for ; Fri, 5 Aug 2022 18:18:59 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 95FAB6332B; Fri, 5 Aug 2022 20:18:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1659723538; bh=AA9zKY7PsJ5YghOpXlMXVpFkXXn3Vh4+DrR0KF4iYKU=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=dLolfw2fnipW3K9B0rhb6C3AmqCX9K3tfcP8ozpiam2wVsVPUGICsFFmTiwBgvEp9 jtYiRHMJn3Gke1s72XqYu8zJwyibOAuUNiLHxVYouVzBllosHzD5Zd1vDXF31ojVEM tquB4k2hgVKO2MYA+Im4wyeq7Bp6UHJfgaEjmArxh1pMoZMFyNahzi/JtfBZSUdM3j HEPQEd0zaRwD00kK8DJ8voaG5+trj23hwniHVH6MdnyyGpzt4sEcRqqoAQUlvlhxKH Nq7xjKakLs/5MA1NOB0e/SDmesqkTd01cU0mE/gvE/3db8Rl/qng96Ccmp0ncKecpO nRUQw9BvBQKxw== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 9D1AE603E4 for ; Fri, 5 Aug 2022 20:18:57 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="lJxkRoDv"; dkim-atps=neutral Received: from perceval.ideasonboard.com (unknown [IPv6:2401:4900:1f3e:69e0:a479:4ccc:ab2a:bf48]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 4C821480; Fri, 5 Aug 2022 20:18:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1659723537; bh=AA9zKY7PsJ5YghOpXlMXVpFkXXn3Vh4+DrR0KF4iYKU=; h=From:To:Cc:Subject:Date:From; b=lJxkRoDvfWz0ZgnckF57AZOJsv3l2agNe78uULmPvLl1ck531TbjLGR8gU6ig35wk DxLp8sGrYcFbmUPZyvY1b2MHzfrhx6prxpS49EAXX0kCjcSb1neze4mG/DU2DunMZl bFC6rre7h1ZZCD7X8rzglQFPmRAe6+K63dJJE9r4= To: libcamera-devel@lists.libcamera.org Date: Fri, 5 Aug 2022 23:48:45 +0530 Message-Id: <20220805181850.848886-1-umang.jain@ideasonboard.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 0/5] IMGU standalone streaming X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Umang Jain via libcamera-devel From: Umang Jain Reply-To: Umang Jain Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Standalone tools / patches that came out to verify the IMGU one-frame delay in hardware. Each patch should be explanatory from the commit message. Umang Jain (5): utils: ipu3-process: Stream multiple frames using v4l2-ctl utils: ipu3: Helper to generate IMGU input streaming file utils: ipu3-gen-imgu-input: Generate frames with different b/g utils: ipu3: Executable helper to read statistics utils: ipu3: ipu3-process Save generated stats to a file utils/ipu3/ipu3-gen-imgu-input.sh | 82 +++++++++++++++ utils/ipu3/ipu3-process.sh | 55 +++++++--- utils/ipu3/ipu3-read-stats.c | 168 ++++++++++++++++++++++++++++++ utils/ipu3/meson.build | 2 + 4 files changed, 291 insertions(+), 16 deletions(-) create mode 100755 utils/ipu3/ipu3-gen-imgu-input.sh create mode 100644 utils/ipu3/ipu3-read-stats.c