summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilan Zamazal <mzamazal@redhat.com>2024-05-31 14:38:39 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2024-06-02 01:59:24 +0300
commitf5b7921e0a6145a7ed79eaeaebbcb3584030cdef (patch)
treecbe58bacddaa4f13408c1bb72c084008a6f1fd4f
parent539c62ff8e135dc97b57733b7f1247ed4503df03 (diff)
libcamera: software_isp: Remove DebayerParams::kGain10
The constant is used in a single place internally and doesn't belong to DebayerParams anymore. Let's use 256 directly. Signed-off-by: Milan Zamazal <mzamazal@redhat.com> Reviewed-by: Andrei Konovalov <andrey.konovalov.ynk@gmail.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r--include/libcamera/internal/software_isp/debayer_params.h1
-rw-r--r--src/ipa/simple/soft_simple.cpp3
-rw-r--r--src/libcamera/software_isp/debayer.cpp5
3 files changed, 1 insertions, 8 deletions
diff --git a/include/libcamera/internal/software_isp/debayer_params.h b/include/libcamera/internal/software_isp/debayer_params.h
index 463d24b3..7d8fdd48 100644
--- a/include/libcamera/internal/software_isp/debayer_params.h
+++ b/include/libcamera/internal/software_isp/debayer_params.h
@@ -16,7 +16,6 @@
namespace libcamera {
struct DebayerParams {
- static constexpr unsigned int kGain10 = 256;
static constexpr unsigned int kRGBLookupSize = 256;
using ColorLookupTable = std::array<uint8_t, kRGBLookupSize>;
diff --git a/src/ipa/simple/soft_simple.cpp b/src/ipa/simple/soft_simple.cpp
index 92095e59..b7746ce0 100644
--- a/src/ipa/simple/soft_simple.cpp
+++ b/src/ipa/simple/soft_simple.cpp
@@ -289,8 +289,7 @@ void IPASoftSimple::processStats(const ControlList &sensorControls)
for (unsigned int i = 0; i < DebayerParams::kRGBLookupSize; i++) {
constexpr unsigned int div =
- DebayerParams::kRGBLookupSize * DebayerParams::kGain10 /
- kGammaLookupSize;
+ DebayerParams::kRGBLookupSize * 256 / kGammaLookupSize;
unsigned int idx;
/* Apply gamma after gain! */
diff --git a/src/libcamera/software_isp/debayer.cpp b/src/libcamera/software_isp/debayer.cpp
index 3f3969f7..f4a299d5 100644
--- a/src/libcamera/software_isp/debayer.cpp
+++ b/src/libcamera/software_isp/debayer.cpp
@@ -19,11 +19,6 @@ namespace libcamera {
*/
/**
- * \var DebayerParams::kGain10
- * \brief const value for 1.0 gain
- */
-
-/**
* \var DebayerParams::kRGBLookupSize
* \brief Size of a color lookup table
*/