summaryrefslogtreecommitdiff
path: root/src/ipa/rkisp1/ipa_context.h
diff options
context:
space:
mode:
authorJean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>2021-11-18 14:43:24 +0100
committerJean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>2021-11-29 20:41:37 +0100
commitb6fa52fc5bdc928daee0fd2fc33208bfdf0477d1 (patch)
tree15334fee65f4b87e2cc676f6cc63d79111b34dcc /src/ipa/rkisp1/ipa_context.h
parentc2da6aab2154731c539eb645e02df4505843010d (diff)
ipa: rkisp1: Introduce IPAContext
Before using any algorithm, we want the IPAContext to be ready for those. Introduce the IPAContext following the existing design from IPA::IPU3. Each algorithm will then introduce the needed fields. Signed-off-by: Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/ipa/rkisp1/ipa_context.h')
-rw-r--r--src/ipa/rkisp1/ipa_context.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/ipa/rkisp1/ipa_context.h b/src/ipa/rkisp1/ipa_context.h
new file mode 100644
index 00000000..919139dd
--- /dev/null
+++ b/src/ipa/rkisp1/ipa_context.h
@@ -0,0 +1,28 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+/*
+ * Copyright (C) 2021, Ideas On Board
+ *
+ * ipa_context.h - RkISP1 IPA Context
+ *
+ */
+
+#pragma once
+
+namespace libcamera {
+
+namespace ipa::rkisp1 {
+
+struct IPASessionConfiguration {
+};
+
+struct IPAFrameContext {
+};
+
+struct IPAContext {
+ IPASessionConfiguration configuration;
+ IPAFrameContext frameContext;
+};
+
+} /* namespace ipa::rkisp1 */
+
+} /* namespace libcamera*/