libcamera: Move ipa includes to the same level as libcamera
The ipa includes are located in include/libcamera/ipa/. This gives an incorrect impression that they are a sub-part of the rest of the libcamera API, while they are the API towards the IPA the same way that include/libcamera/ contains the API towards applications. To clarify this, move them to include/ipa/. The IPA headers are however still part of libcamera, so installing them to ${prefix}/include/ipa/ would make little sense. To fix this, move the application facing API to ${prefix}/include/libcamera/libcamera/ when installed, and the IPA to ${prefix}/include/libcamera/ipa/. When major versions of libcamera will be released, they could then be installed side by side in ${prefix}/include/libcamera-${version}/. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
parent
cecfeed61e
commit
1e704c84a9
17 changed files with 35 additions and 22 deletions
22
include/ipa/ipa_interface.h
Normal file
22
include/ipa/ipa_interface.h
Normal file
|
@ -0,0 +1,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__ */
|
Loading…
Add table
Add a link
Reference in a new issue