The includes that are not used can be removed. Signed-off-by: Milan Zamazal <mzamazal@redhat.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
35 lines
609 B
C++
35 lines
609 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* Image Processing Algorithm interface
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <libcamera/base/flags.h>
|
|
#include <libcamera/base/signal.h>
|
|
|
|
#include <libcamera/controls.h>
|
|
#include <libcamera/framebuffer.h>
|
|
#include <libcamera/geometry.h>
|
|
|
|
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 */
|