From patchwork Sat May 2 12:13:53 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Niklas_S=C3=B6derlund?= X-Patchwork-Id: 3661 Return-Path: Received: from vsp-unauthed02.binero.net (vsp-unauthed02.binero.net [195.74.38.227]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id E498F603F4 for ; Sat, 2 May 2020 14:14:04 +0200 (CEST) X-Halon-ID: 64939de9-8c6e-11ea-89d0-0050569116f7 Authorized-sender: niklas@soderlund.pp.se Received: from bismarck.berto.se (p4fca2392.dip0.t-ipconnect.de [79.202.35.146]) by bin-vsp-out-03.atm.binero.net (Halon) with ESMTPA id 64939de9-8c6e-11ea-89d0-0050569116f7; Sat, 02 May 2020 14:14:00 +0200 (CEST) From: =?utf-8?q?Niklas_S=C3=B6derlund?= To: libcamera-devel@lists.libcamera.org Date: Sat, 2 May 2020 14:13:53 +0200 Message-Id: <20200502121356.1045727-1-niklas.soderlund@ragnatech.se> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v4 0/3] qcam: Add RAW capture support 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-List-Received-Date: Sat, 02 May 2020 12:14:05 -0000 Hi, This series adds basic DNG capture support to qcam. A new UI button is added and enabled if a raw stream have been configured. Pushing the button result in a DNG file being saved. Niklas Söderlund (3): qcam: Allow for a second raw stream to be configured qcam: Add DNGWriter qcam: Add RAW capture support src/qcam/assets/feathericons/feathericons.qrc | 1 + src/qcam/dng_writer.cpp | 165 ++++++++++++++++ src/qcam/dng_writer.h | 28 +++ src/qcam/main_window.cpp | 178 ++++++++++++++---- src/qcam/main_window.h | 12 +- src/qcam/meson.build | 20 +- 6 files changed, 361 insertions(+), 43 deletions(-) create mode 100644 src/qcam/dng_writer.cpp create mode 100644 src/qcam/dng_writer.h