summaryrefslogtreecommitdiff
path: root/include/android/metadata/system
AgeCommit message (Expand)Author
2019-08-12include: android: Add SPDX tagsJacopo Mondi
2019-08-12include: android: Add Android headers from CrosJacopo Mondi
d='n11' href='#n11'>11 12 13 14 15 16 17 18 19 20 21 22 23
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2019, Raspberry Pi (Trading) Limited
 *
 * awb_algorithm.hpp - AWB control algorithm interface
 */
#pragma once

#include "algorithm.hpp"

namespace RPiController {

class AwbAlgorithm : public Algorithm
{
public:
	AwbAlgorithm(Controller *controller) : Algorithm(controller) {}
	// An AWB algorithm must provide the following:
	virtual unsigned int GetConvergenceFrames() const = 0;
	virtual void SetMode(std::string const &mode_name) = 0;
	virtual void SetManualGains(double manual_r, double manual_b) = 0;
};

} // namespace RPiController