summaryrefslogtreecommitdiff
path: root/include/libcamera/ipa/ipa_interface.h
blob: 5d99e2cf19f8a82219c1e46601c3bb6a19945203 (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
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * ipa_interface.h - Image Processing Algorithm interface
 */
#ifndef __LIBCAMERA_IPA_INTERFACE_H__
#define __LIBCAMERA_IPA_INTERFACE_H__

#include <stddef.h>
#include <stdint.h>

#include <map>
#include <vector>

#include <libcamera/buffer.h>
#include <libcamera/controls.h>
#include <libcamera/geometry.h>
#include <libcamera/signal.h>

namespace libcamera {

/*
 * Structs that are defined in core.mojom and have the skipHeader tag must be
 * forward-declared or #included here.
 */

struct CameraSensorInfo;

class IPAInterface
{
public:
	virtual ~IPAInterface() = default;
};

} /* namespace libcamera */

extern "C" {
libcamera::IPAInterface *ipaCreate();
}

#endif /* __LIBCAMERA_IPA_INTERFACE_H__ */