diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-12 22:37:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-12 22:37:08 +0100 |
| commit | 749011eb81eeb8f0fbe74055c005b61cc8b1fb9a (patch) | |
| tree | fa637fdbbae050dc840396bce9d6c00cb219d485 /src/gamma_lut.cc | |
| parent | 414c44166031003b29d1b0b2fd2c9748a63260b4 (diff) | |
Support rgb -> xyz encoding.
Diffstat (limited to 'src/gamma_lut.cc')
| -rw-r--r-- | src/gamma_lut.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gamma_lut.cc b/src/gamma_lut.cc index 547601b9..80d9b902 100644 --- a/src/gamma_lut.cc +++ b/src/gamma_lut.cc @@ -26,7 +26,7 @@ using namespace libdcp; LUTCache<GammaLUT> GammaLUT::cache; GammaLUT::GammaLUT(int bits, float gamma) - : LUT<float> (bits, gamma) + : LUT (bits, gamma) { int const bit_length = pow(2, bits); for (int i = 0; i < bit_length; ++i) { |
