From ceaf7bc52712cb60708ed5eb5c62c5e463dd8e89 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 24 Jan 2021 04:15:26 +0100 Subject: Tidying. --- src/modified_gamma_transfer_function.cc | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) (limited to 'src/modified_gamma_transfer_function.cc') diff --git a/src/modified_gamma_transfer_function.cc b/src/modified_gamma_transfer_function.cc index bb388689..039e9284 100644 --- a/src/modified_gamma_transfer_function.cc +++ b/src/modified_gamma_transfer_function.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2014 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of libdcp. @@ -31,14 +31,22 @@ files in the program, then also delete it here. */ + +/** @file src/modified_gamma_transfer_function.cc + * @brief ModifiedGammaTransferFunction class + */ + + #include "modified_gamma_transfer_function.h" #include + using std::pow; using std::shared_ptr; using std::dynamic_pointer_cast; using namespace dcp; + ModifiedGammaTransferFunction::ModifiedGammaTransferFunction (double power, double threshold, double A, double B) : _power (power) , _threshold (threshold) @@ -48,6 +56,7 @@ ModifiedGammaTransferFunction::ModifiedGammaTransferFunction (double power, doub } + double * ModifiedGammaTransferFunction::make_lut (int bit_depth, bool inverse) const { @@ -56,7 +65,7 @@ ModifiedGammaTransferFunction::make_lut (int bit_depth, bool inverse) const if (inverse) { double const threshold = _threshold / _B; for (int i = 0; i < bit_length; ++i) { - double const p = static_cast (i) / (bit_length - 1); + double const p = static_cast(i) / (bit_length - 1); if (p > threshold) { lut[i] = (1 + _A) * pow (p, 1 / _power) - _A; } else { @@ -65,7 +74,7 @@ ModifiedGammaTransferFunction::make_lut (int bit_depth, bool inverse) const } } else { for (int i = 0; i < bit_length; ++i) { - double const p = static_cast (i) / (bit_length - 1); + double const p = static_cast(i) / (bit_length - 1); if (p > _threshold) { lut[i] = pow ((p + _A) / (1 + _A), _power); } else { @@ -77,18 +86,19 @@ ModifiedGammaTransferFunction::make_lut (int bit_depth, bool inverse) const return lut; } + bool ModifiedGammaTransferFunction::about_equal (shared_ptr other, double epsilon) const { - shared_ptr o = dynamic_pointer_cast (other); + auto o = dynamic_pointer_cast(other); if (!o) { return false; } return ( - fabs (_power - o->_power) < epsilon && - fabs (_threshold - o->_threshold) < epsilon && - fabs (_A - o->_A) < epsilon && - fabs (_B - o->_B) < epsilon + fabs(_power - o->_power) < epsilon && + fabs(_threshold - o->_threshold) < epsilon && + fabs(_A - o->_A) < epsilon && + fabs(_B - o->_B) < epsilon ); } -- cgit v1.2.3