From patchwork Tue Aug 2 16:01:30 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 16910 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 4ECB0BE173 for ; Tue, 2 Aug 2022 16:01:48 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id B64376330E; Tue, 2 Aug 2022 18:01:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1659456107; bh=WlxdisO7Awj3N/zGOzhtDUOzNxFtZqEvfXSfZI9QK2c=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:Cc:From; b=VxTnJylc2Wir955o5Ydy0uKqyvkpGeb3T4vpC70sxPXEZUwdVxRfX9huefHfCmosl 6lGefUMvBXBD4dXwnBbWyHQU5uhNBc7CWvwyWvm2dQT2pInWsfLExkWBvjAEHcFYRy uLmsqmb8693EdJw3qXY1HQxSU15/hq3646sjJPlNUIoZ+smno3Je2/T8P96FlAgz2S mIbTB+aEWMPC9QxtNTwYeFKsLGw8+l+yR9Hb+rljkGCYFqMngBK8aZwNN5ou9XB6WP YNjGUqGKVwA1NACxFr0qFe/rGZmBOGPgl9hCdOm3obJRGsAZpozlWE7r1Y1kiIDKEJ uXj3loaBldaNQ== Received: from relay2-d.mail.gandi.net (relay2-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::222]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 40CEB603E7 for ; Tue, 2 Aug 2022 18:01:46 +0200 (CEST) Received: (Authenticated sender: jacopo@jmondi.org) by mail.gandi.net (Postfix) with ESMTPSA id 502BB40006; Tue, 2 Aug 2022 16:01:44 +0000 (UTC) To: libcamera-devel@lists.libcamera.org Date: Tue, 2 Aug 2022 18:01:30 +0200 Message-Id: <20220802160136.63075-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.37.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v4 0/6] 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. 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 (6): libcamera: formats: Reimplement V4L2 PixelFormatInfo::info() libcamera: formats: Merge V4L2 single and multi formats 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 | 20 +- 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 | 53 ++- src/libcamera/v4l2_videodevice.cpp | 62 +++- src/v4l2/v4l2_camera_proxy.cpp | 6 +- test/libtest/buffer_source.cpp | 2 +- 17 files changed, 241 insertions(+), 312 deletions(-) --- 2.37.1