@@ -266,31 +266,6 @@ ExposureModeHelper::splitExposure(utils::Duration exposure) const
exposure / (exposureTime * gain * quantGain) };
}
-/**
- * \fn ExposureModeHelper::minExposureTime()
- * \brief Retrieve the configured minimum exposure time limit set through
- * setLimits()
- * \return The minExposureTime_ value
- */
-
-/**
- * \fn ExposureModeHelper::maxExposureTime()
- * \brief Retrieve the configured maximum exposure time set through setLimits()
- * \return The maxExposureTime_ value
- */
-
-/**
- * \fn ExposureModeHelper::minGain()
- * \brief Retrieve the configured minimum gain set through setLimits()
- * \return The minGain_ value
- */
-
-/**
- * \fn ExposureModeHelper::maxGain()
- * \brief Retrieve the configured maximum gain set through setLimits()
- * \return The maxGain_ value
- */
-
} /* namespace ipa */
} /* namespace libcamera */
@@ -33,11 +33,6 @@ public:
std::tuple<utils::Duration, double, double, double>
splitExposure(utils::Duration exposure) const;
- utils::Duration minExposureTime() const { return minExposureTime_; }
- utils::Duration maxExposureTime() const { return maxExposureTime_; }
- double minGain() const { return minGain_; }
- double maxGain() const { return maxGain_; }
-
private:
utils::Duration clampExposureTime(utils::Duration exposureTime,
double *quantizationGain = nullptr) const;
Remove unused accessors. They're not only unused but it is not even clear what the purpose of accessing the fields is. Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> --- src/ipa/libipa/exposure_mode_helper.cpp | 25 ------------------------- src/ipa/libipa/exposure_mode_helper.h | 5 ----- 2 files changed, 30 deletions(-)