Files
external_libcamera/include/libcamera/ipa/ipa_interface.h
Laurent Pinchart b318101ada libcamera: ipa: Drop unneded includes from ipa_interface.h
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>
2024-09-03 15:25:55 +03:00

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 */