From patchwork Wed Aug 3 10:38:42 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 16926 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 1D714BE173 for ; Wed, 3 Aug 2022 10:38:59 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 41FA363310; Wed, 3 Aug 2022 12:38:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1659523138; bh=IquhD3DaBZ3HABENPUiNSYR+Ht87AA9rS8cyqHVxfNs=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:Cc:From; b=SX403EiIL5grsL6uc2XYKC1YOdrOCrrlvockWCn2Ujxe4imFPidD8DhS7KwX7FBhO hbSsdW9qBvKD/CB9O0dW6Hkjq4M54bQm7dvAKzeXINQgVnCTluVkKLZjNTuTtQyfHu 2WaPyy/mJkgEGYNOatjn5YMwcdZ9FnLzHrg52RzmVkovWhXBLJRjWRQJLcXGB6HFop W7p2XOS4rjKb1IfuLcjQWAy4z7yggc/e1NXz3NfxY83Cgeo2x72Gg+OUdxtyEdh1vI 3ypjWSIsLVqfL8+KEBNhC4oq9ROMjmgXTTHusGLIaJ57vbl4r0o6VGsi+Q8GKdeKYc RQPTQBJomv0XQ== Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [217.70.183.197]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 4542C603E6 for ; Wed, 3 Aug 2022 12:38:57 +0200 (CEST) Received: (Authenticated sender: jacopo@jmondi.org) by mail.gandi.net (Postfix) with ESMTPSA id 3BAE01C0002; Wed, 3 Aug 2022 10:38:54 +0000 (UTC) To: libcamera-devel@lists.libcamera.org Date: Wed, 3 Aug 2022 12:38:42 +0200 Message-Id: <20220803103849.26144-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.37.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v5 0/7] libcamera: Map multiple V4L2 formats to a single libcamera::format 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: Jacopo Mondi via libcamera-devel From: Jacopo Mondi Reply-To: Jacopo Mondi Cc: jozef@mlich.cz, Pavel Machek Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" This series addresses the requirement of mapping multiple V4L2 pixel formats to a single libcamera format. Specifically, it allows to map V4L2_PIX_FMT_JPEG and V4L2_PIX_FMT_MJPEG to libcamera::formats::MJPEG. When testing on Pinephone I was able to capture JPEG (but not to inspect images) and YUYV. This time the sensor didn't fail me, and I was able to run a preview stream on the pinephone using the SDL backend. v4->v5: - Use std::hash specialization - Address Laurent's comment on 5/6 - Add a tiny patch for the developer guide v3->v4: - Move 2/6 at the beginning and simplify it - Biggest change is in V4L2VideoDevice where formats are now collected in an unordered_set<> requiring V4L2PixelFormat to be instrumented with an Hash function object to allow it to be stored in an unordered STL container - Minor changes in comments/wording and Laurent's tags v2->v3: - Resorted patches as suggested by Laurent - Remove 'multiplanar' argument in the call chain - Cache the V4L2VideoDevice formats at open() time v1->v2: - Add a missing conversion using the video device in Simple converter - Map formats::MJPEG to V4L2_PIX_FMT_JPEG in v4l2 formats enumeration Jacopo Mondi (7): libcamera: formats: Reimplement V4L2 PixelFormatInfo::info() libcamera: formats: Merge V4L2 single and multi formats guides: pipeline handler: Remove rogue spaces libcamera: v4l2_videodevice: Reintroduce toV4L2PixelFormat() libcamera: v4l2_pixelformat: Return the list of V4L2 formats libcamera: v4l2_videodevice: Match formats supported by the device libcamera: formats: Map V4L2_PIX_FMT_JPEG to formats::MJPEG Documentation/guides/pipeline-handler.rst | 9 +- include/libcamera/internal/formats.h | 5 +- include/libcamera/internal/v4l2_pixelformat.h | 18 +- include/libcamera/internal/v4l2_videodevice.h | 6 + src/libcamera/formats.cpp | 318 ++++-------------- src/libcamera/pipeline/ipu3/cio2.cpp | 2 +- src/libcamera/pipeline/ipu3/imgu.cpp | 2 +- .../pipeline/raspberrypi/raspberrypi.cpp | 34 +- src/libcamera/pipeline/rkisp1/rkisp1_path.cpp | 6 +- src/libcamera/pipeline/simple/converter.cpp | 10 +- src/libcamera/pipeline/simple/simple.cpp | 4 +- src/libcamera/pipeline/uvcvideo/uvcvideo.cpp | 6 +- src/libcamera/pipeline/vimc/vimc.cpp | 8 +- src/libcamera/v4l2_pixelformat.cpp | 24 +- src/libcamera/v4l2_videodevice.cpp | 61 +++- src/v4l2/v4l2_camera_proxy.cpp | 6 +- test/libtest/buffer_source.cpp | 2 +- 17 files changed, 211 insertions(+), 310 deletions(-) --- 2.37.1