From patchwork Sat Jan 12 14:46:16 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 216 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id AF69A60B2E for ; Sat, 12 Jan 2019 15:46:28 +0100 (CET) Received: from pendragon.bb.dnainternet.fi (dfj612yhrgyx302h3jwwy-3.rev.dnainternet.fi [IPv6:2001:14ba:21f5:5b00:ce28:277f:58d7:3ca4]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 29D89513 for ; Sat, 12 Jan 2019 15:46:28 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1547304388; bh=31sGYmM9yzDtloOmMhRB/INVNNXx40346fjwYgtHFfw=; h=From:To:Subject:Date:From; b=HX+ucPY8B0wSS0Ck8EfGdGQr5pjoNRX4WKHYEQlzJwsSxwroL/LEOQHrVGjiHrXz1 ImKvT3PqnEtWdU6Ask9SpuMQjOLDJdmWVdzLZyNe9d/E0vhSqMPj9ydUUeuATFYB6W nx3ooQKsUG2dO7r9ecB0Vh5ngdXVpdUcbKZZLGYU= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Sat, 12 Jan 2019 16:46:16 +0200 Message-Id: <20190112144619.5816-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 0/3] Pipeline handler refactoring and documentation improvements 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: Sat, 12 Jan 2019 14:46:28 -0000 Hello, This small series refactories the pipeline handler factory class to avoid the cumbersome factory handling caused by usage of the factory name in the API. See patch 1/3 for details. It then goes on to improving the camera manager documentation and excluding pipeline handler implementations from the generated documentation because I was tired of the last few Doxygen warnings. We now have a warning-free documentation build \o/ Laurent Pinchart (3): libcamera: pipeline_handler: Don't index factories by name libcamera: camera_manager: Improve class documentation Documentation: Exclude pipeline handlers directory Documentation/Doxyfile.in | 2 +- src/libcamera/camera_manager.cpp | 76 ++++++++++++-------- src/libcamera/include/pipeline_handler.h | 29 ++++---- src/libcamera/pipeline_handler.cpp | 91 +++++++----------------- 4 files changed, 87 insertions(+), 111 deletions(-)