mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-24 17:15:07 +03:00
libcamera: ipa_interface: add header
Define an IPAInterface class which will contain an IPA implementation. The methods that the IPAInterface exposes form the interface to the IPA implementation, hence the name. IPA module shared objects will implement this class. This also means that IPA module shared objects must be implemented in C++, so remove the C test IPA module. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
629e9301c5
commit
46ae1775b0
7 changed files with 51 additions and 9 deletions
27
src/libcamera/ipa_interface.cpp
Normal file
27
src/libcamera/ipa_interface.cpp
Normal file
|
@ -0,0 +1,27 @@
|
|||
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||||
/*
|
||||
* Copyright (C) 2019, Google Inc.
|
||||
*
|
||||
* ipa_interface.cpp - Image Processing Algorithm interface
|
||||
*/
|
||||
|
||||
#include <libcamera/ipa/ipa_interface.h>
|
||||
|
||||
/**
|
||||
* \file ipa_interface.h
|
||||
* \brief Image Processing Algorithm interface
|
||||
*/
|
||||
|
||||
namespace libcamera {
|
||||
|
||||
/**
|
||||
* \class IPAInterface
|
||||
* \brief Interface for IPA implementation
|
||||
*/
|
||||
|
||||
/**
|
||||
* \fn IPAInterface::init()
|
||||
* \brief Initialise the IPAInterface
|
||||
*/
|
||||
|
||||
} /* namespace libcamera */
|
|
@ -10,6 +10,7 @@ libcamera_sources = files([
|
|||
'event_notifier.cpp',
|
||||
'formats.cpp',
|
||||
'geometry.cpp',
|
||||
'ipa_interface.cpp',
|
||||
'ipa_module.cpp',
|
||||
'log.cpp',
|
||||
'media_device.cpp',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue