From patchwork Mon Feb 25 12:10:31 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 614 Return-Path: Received: from relay11.mail.gandi.net (relay11.mail.gandi.net [217.70.178.231]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 3A516600FB for ; Mon, 25 Feb 2019 13:10:18 +0100 (CET) Received: from uno.lan (2-224-242-101.ip172.fastwebnet.it [2.224.242.101]) (Authenticated sender: jacopo@jmondi.org) by relay11.mail.gandi.net (Postfix) with ESMTPSA id B47E110000C; Mon, 25 Feb 2019 12:10:17 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Mon, 25 Feb 2019 13:10:31 +0100 Message-Id: <20190225121037.11415-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 0/6] 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: Mon, 25 Feb 2019 12:10:18 -0000 Hello, this series collects rework of patches I have sent last week under the "[PATCH 0/3] libcamera: v4l2_subdev and v4l2_device mixed" title, and adds tests for format handling on v4l2 subdevice and v4l2 device. Thanks j Jacopo Mondi (6): libcamera: v4l2_subdevice: Store media entity libcamera: v4l2_subdevice: Implement ENUM_FRAME_SIZES libcamera: v4l2_device: Add support for META_CAPTURE devices test: v4l2_subdevice: Add format handling test test: v4l2_subdevice: Add ListFormat test test: v4l2_device: Add format handling test src/libcamera/include/v4l2_device.h | 4 + src/libcamera/include/v4l2_subdevice.h | 13 ++- src/libcamera/v4l2_device.cpp | 38 +++++--- src/libcamera/v4l2_subdevice.cpp | 102 +++++++++++++++++++- test/meson.build | 1 + test/v4l2_device/meson.build | 1 + test/v4l2_device/test_formats.cpp | 65 +++++++++++++ test/v4l2_subdevice/list_formats.cpp | 76 +++++++++++++++ test/v4l2_subdevice/meson.build | 11 +++ test/v4l2_subdevice/test_formats.cpp | 79 +++++++++++++++ test/v4l2_subdevice/v4l2_subdevice_test.cpp | 90 +++++++++++++++++ test/v4l2_subdevice/v4l2_subdevice_test.h | 36 +++++++ 12 files changed, 499 insertions(+), 17 deletions(-) create mode 100644 test/v4l2_device/test_formats.cpp create mode 100644 test/v4l2_subdevice/list_formats.cpp create mode 100644 test/v4l2_subdevice/meson.build create mode 100644 test/v4l2_subdevice/test_formats.cpp create mode 100644 test/v4l2_subdevice/v4l2_subdevice_test.cpp create mode 100644 test/v4l2_subdevice/v4l2_subdevice_test.h --- 2.20.1