From patchwork Fri Mar 1 11:51:34 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 689 Return-Path: Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 1A5D3610BF for ; Fri, 1 Mar 2019 12:52:44 +0100 (CET) X-Originating-IP: 2.224.242.101 Received: from uno.lan (2-224-242-101.ip172.fastwebnet.it [2.224.242.101]) (Authenticated sender: jacopo@jmondi.org) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 86C15C000D; Fri, 1 Mar 2019 11:52:42 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Fri, 1 Mar 2019 12:51:34 +0100 Message-Id: <20190301115139.11060-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v6 0/5] v4l2_(sub)dev: improvements and tests X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Mar 2019 11:52:44 -0000 Hello, v6 with the only patches that had open review comments, I have pushed the remaining part of the series to master: libcamera: v4l2_subdevice: Store media entity libcamera: v4l2_subdevice: Inherit from Loggable libcamera: v4l2_subdevice: Update crop/compose rectangle libcamera: v4l2_device: Expose the device node path test: v4l2_subdevice: Add format handling test test: v4l2_device: Add format handling test Two new patches (just cosmetic updates) and comments on 1/5 and 4/5 from Laurent addressed. With your acks I would like to merge these soon as well. Thanks j Jacopo Mondi (5): libcamera: v4l2_subdevice: Implement ENUM_FRAME_SIZES test: v4l2_subdevice: Add ListFormat test libcamera: v4l2_subdevice: Cosmetic update libcamera: v4l2_device: Add support for META_CAPTURE devices libcamera: v4l2_device: Cosmetic update src/libcamera/geometry.cpp | 34 ++ src/libcamera/include/geometry.h | 12 + src/libcamera/include/v4l2_device.h | 26 +- src/libcamera/include/v4l2_subdevice.h | 11 +- src/libcamera/v4l2_device.cpp | 472 +++++++++++++------------ src/libcamera/v4l2_subdevice.cpp | 104 +++++- test/v4l2_subdevice/list_formats.cpp | 81 +++++ test/v4l2_subdevice/meson.build | 1 + 8 files changed, 508 insertions(+), 233 deletions(-) create mode 100644 test/v4l2_subdevice/list_formats.cpp --- 2.20.1