From patchwork Sat May 2 02:10:42 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: 3657 Return-Path: Received: from bin-mail-out-05.binero.net (bin-mail-out-05.binero.net [195.74.38.228]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 6AF74603F1 for ; Sat, 2 May 2020 04:11:22 +0200 (CEST) X-Halon-ID: 2967e8fc-8c1a-11ea-aeed-005056917f90 Authorized-sender: niklas@soderlund.pp.se Received: from bismarck.berto.se (p4fca2392.dip0.t-ipconnect.de [79.202.35.146]) by bin-vsp-out-02.atm.binero.net (Halon) with ESMTPA id 2967e8fc-8c1a-11ea-aeed-005056917f90; Sat, 02 May 2020 04:11:20 +0200 (CEST) From: =?utf-8?q?Niklas_S=C3=B6derlund?= To: libcamera-devel@lists.libcamera.org Date: Sat, 2 May 2020 04:10:42 +0200 Message-Id: <20200502021045.785979-1-niklas.soderlund@ragnatech.se> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v3 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 02:11:22 -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 | 24 +++ src/qcam/main_window.cpp | 174 ++++++++++++++---- src/qcam/main_window.h | 12 +- src/qcam/meson.build | 21 ++- 6 files changed, 354 insertions(+), 43 deletions(-) create mode 100644 src/qcam/dng_writer.cpp create mode 100644 src/qcam/dng_writer.h