@@ -26,6 +26,17 @@ namespace lsc {
* \brief Boolean flag for the LscAlgorithm enable status
*/
+/**
+ * \struct FrameContext
+ * \brief The lsc frame context
+ *
+ * \var FrameContext::enabled
+ * \brief Boolean flag for the LscAlgorithm enable status
+ *
+ * \var FrameContext::update
+ * \brief Boolean flag for the LscAlgorithm updated status
+ */
+
} /* namespace lsc */
} /* namespace ipa */
@@ -17,6 +17,11 @@ struct ActiveState {
bool enabled;
};
+struct FrameContext {
+ bool enabled;
+ bool update;
+};
+
} /* namespace lsc */
} /* namespace ipa */
Introduce the Lsc algorithm frame context in lsc.h. Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> --- src/ipa/libipa/lsc.cpp | 11 +++++++++++ src/ipa/libipa/lsc.h | 5 +++++ 2 files changed, 16 insertions(+)