summaryrefslogtreecommitdiff
path: root/test/log/log_process.cpp
diff options
context:
space:
mode:
authorPaul Elder <paul.elder@ideasonboard.com>2021-11-22 19:16:13 +0900
committerPaul Elder <paul.elder@ideasonboard.com>2021-12-22 16:06:37 -0600
commit955c996ea6e1200f1b5a002fd411b27c150db805 (patch)
treedcc21dbf430d0c6e4142744f69502094c709e41c /test/log/log_process.cpp
parent8ff5a8d548eee7c2cb14b355867debdb29e75419 (diff)
android: camera_capabilities: Add messages for lack of FULL support
Print messages when some feature is missing that causes hardware level FULL to not be supported. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'test/log/log_process.cpp')
0 files changed, 0 insertions, 0 deletions
f='#n101'>101 102 103 104 105 106
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2021, Ideas On Board
 *
 * algorithm.h - ISP control algorithm interface
 */
#pragma once

#include <memory>
#include <stdint.h>
#include <string>

#include <libcamera/controls.h>

namespace libcamera {

class YamlObject;

namespace ipa {

template<typename _Module>
class Algorithm
{
public:
	using Module = _Module;

	virtual ~Algorithm() {}

	virtual int init([[maybe_unused]] typename Module::Context &context,
			 [[maybe_unused]] const YamlObject &tuningData)
	{
		return 0;
	}

	virtual int configure([[maybe_unused]] typename Module::Context &context,