summaryrefslogtreecommitdiff
path: root/src/ipa/ipu3/algorithms/algorithm.h
blob: 234b2bd77f72fd63839df05327f19e7bbea3e12b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2021, Ideas On Board
 *
 * algorithm.h - IPU3 control algorithm interface
 */

#pragma once

#include <libcamera/ipa/ipu3_ipa_interface.h>

#include <libipa/algorithm.h>

#include "ipa_context.h"

namespace libcamera {

namespace ipa::ipu3 {

using Algorithm = libcamera::ipa::Algorithm<IPAContext, IPAFrameContext,
					    IPAConfigInfo, ipu3_uapi_params,
					    ipu3_uapi_stats_3a>;

} /* namespace ipa::ipu3 */

} /* namespace libcamera */