summaryrefslogtreecommitdiff
path: root/src/ipa/ipa_vimc.cpp
blob: abc06e7f5fd5002c25dd05ef3c032adc648222bb (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * ipa_vimc.cpp - Vimc Image Processing Algorithm module
 */

#include <iostream>

#include <ipa/ipa_interface.h>
#include <ipa/ipa_module_info.h>

namespace libcamera {

class IPAVimc : public IPAInterface
{
public:
	int init();
};

int IPAVimc::init()
{
	std::cout << "initializing vimc IPA!" << std::endl;
	return 0;
}

/*
 * External IPA module interface
 */

extern "C" {
const struct IPAModuleInfo ipaModuleInfo = {
	IPA_MODULE_API_VERSION,
	0,
	"PipelineHandlerVimc",
	"Dummy IPA for Vimc",
	LICENSE,
};

IPAInterface *ipaCreate()
{
	return new IPAVimc();
}
};

}; /* namespace libcamera */