summaryrefslogtreecommitdiff
path: root/include/ipa/ipa_interface.h
blob: 2c5eb1fd524311cb20a7e458f6dc34fe46c4e455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* 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__

namespace libcamera {

class IPAInterface
{
public:
	virtual ~IPAInterface() {}

	virtual int init() = 0;
};

} /* namespace libcamera */

#endif /* __LIBCAMERA_IPA_INTERFACE_H__ */