From patchwork Fri May 1 15:27: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: 3651 Return-Path: Received: from vsp-unauthed02.binero.net (vsp-unauthed02.binero.net [195.74.38.227]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 16A7E603F3 for ; Fri, 1 May 2020 17:28:05 +0200 (CEST) X-Halon-ID: 54311306-8bc0-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 54311306-8bc0-11ea-aeed-005056917f90; Fri, 01 May 2020 17:28:03 +0200 (CEST) From: =?utf-8?q?Niklas_S=C3=B6derlund?= To: libcamera-devel@lists.libcamera.org Date: Fri, 1 May 2020 17:27:42 +0200 Message-Id: <20200501152745.437777-1-niklas.soderlund@ragnatech.se> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 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: Fri, 01 May 2020 15:28: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 | 152 ++++++++++++++++ src/qcam/dng_writer.h | 32 ++++ src/qcam/main_window.cpp | 165 ++++++++++++++---- src/qcam/main_window.h | 14 +- src/qcam/meson.build | 9 +- 6 files changed, 330 insertions(+), 43 deletions(-) create mode 100644 src/qcam/dng_writer.cpp create mode 100644 src/qcam/dng_writer.h