The ipa_interface.h file includes a number of headers that are not directly used. Remove them, and add them to the source files that include ipa_interface.h as required. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Milan Zamazal <mzamazal@redhat.com>
28 lines
439 B
C++
28 lines
439 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* Image Processing Algorithm interface
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace libcamera {
|
|
|
|
/*
|
|
* Structs and enums that are defined in core.mojom that have the skipHeader
|
|
* tag must be #included here.
|
|
*/
|
|
|
|
class IPAInterface
|
|
{
|
|
public:
|
|
virtual ~IPAInterface() = default;
|
|
};
|
|
|
|
extern "C" {
|
|
libcamera::IPAInterface *ipaCreate();
|
|
}
|
|
|
|
} /* namespace libcamera */
|