diff options
author | Jacopo Mondi <jacopo@jmondi.org> | 2019-10-03 17:20:33 +0200 |
---|---|---|
committer | Jacopo Mondi <jacopo@jmondi.org> | 2019-10-08 15:37:15 +0200 |
commit | 4e51845a38d4684c4cc7ef724dbf45618b1a21e9 (patch) | |
tree | 9fb70d140c403ff2525387e9436b571aca8867ac /src/ipa/ipa_vimc.cpp | |
parent | c5d682a54882599070777ea131653b99d19d423b (diff) |
ipa: vimc: Rename ipa_dummy to ipa_vimc
The DummyIPA is actually a test IPA module for the virtual media
controller driver VIMC. Rename it accordingly to its usage.
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'src/ipa/ipa_vimc.cpp')
-rw-r--r-- | src/ipa/ipa_vimc.cpp | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/ipa/ipa_vimc.cpp b/src/ipa/ipa_vimc.cpp new file mode 100644 index 00000000..abc06e7f --- /dev/null +++ b/src/ipa/ipa_vimc.cpp @@ -0,0 +1,46 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +/* + * Copyright (C) 2019, Google Inc. + * + * ipa_vimc.cpp - Vimc Image Processing Algorithm module + */ + +#include <iostream> + +#include <ipa/ipa_interface.h> +#include <ipa/ipa_module_info.h> + +namespace libcamera { + +class IPAVimc : public IPAInterface +{ +public: + int init(); +}; + +int IPAVimc::init() +{ + std::cout << "initializing vimc IPA!" << std::endl; + return 0; +} + +/* + * External IPA module interface + */ + +extern "C" { +const struct IPAModuleInfo ipaModuleInfo = { + IPA_MODULE_API_VERSION, + 0, + "PipelineHandlerVimc", + "Dummy IPA for Vimc", + LICENSE, +}; + +IPAInterface *ipaCreate() +{ + return new IPAVimc(); +} +}; + +}; /* namespace libcamera */ |