From 056a0fe0ab7555055281f80923e12750f52ce080 Mon Sep 17 00:00:00 2001 From: Stefan Klug Date: Mon, 11 Nov 2024 12:47:07 +0100 Subject: libcamera: internal: Move Matrix class into libcamera namespace The Matrix class no longer lives inside lipipa. Move it into the libcamera namespace to account for that. Signed-off-by: Stefan Klug Reviewed-by: Laurent Pinchart --- src/libcamera/matrix.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src') diff --git a/src/libcamera/matrix.cpp b/src/libcamera/matrix.cpp index 8346f0d3..55359aa2 100644 --- a/src/libcamera/matrix.cpp +++ b/src/libcamera/matrix.cpp @@ -5,7 +5,7 @@ * Matrix and related operations */ -#include "matrix.h" +#include "libcamera/internal/matrix.h" #include @@ -18,8 +18,6 @@ namespace libcamera { LOG_DEFINE_CATEGORY(Matrix) -namespace ipa { - /** * \class Matrix * \brief Matrix class @@ -144,6 +142,4 @@ bool matrixValidateYaml(const YamlObject &obj, unsigned int size) } #endif /* __DOXYGEN__ */ -} /* namespace ipa */ - } /* namespace libcamera */ -- cgit v1.2.1