Rename lut -> double_lut.
[libdcp.git] / src / gamma_transfer_function.cc
index 34501d98126b59e4b0b9e39c5ba8a841e7bf738e..83c9929f2ae3247ca82c2e825d9d4f3e08f3b6bc 100644 (file)
 #include <cmath>
 
 
+using std::dynamic_pointer_cast;
 using std::pow;
 using std::shared_ptr;
-using std::dynamic_pointer_cast;
+using std::vector;
 using namespace dcp;
 
 
@@ -54,14 +55,15 @@ GammaTransferFunction::GammaTransferFunction (double gamma)
 }
 
 
-double *
-GammaTransferFunction::make_lut (int bit_depth, bool inverse) const
+vector<double>
+GammaTransferFunction::make_double_lut(double from, double to, int bit_depth, bool inverse) const
 {
        int const bit_length = int(std::pow(2.0f, bit_depth));
-       double* lut = new double[bit_length];
+       auto lut = vector<double>(bit_length);
        double const gamma = inverse ? (1 / _gamma) : _gamma;
        for (int i = 0; i < bit_length; ++i) {
-               lut[i] = pow(double(i) / (bit_length - 1), gamma);
+               double const x = double(i) / (bit_length - 1);
+               lut[i] = pow((x * (to - from)) + from, gamma);
        }
 
        return lut;