Fix crashes when static linking due to tricky lifetime
[libdcp.git] / test / rgb_xyz_test.cc
index 75e0d8b929f3f2fea507a46b6e17ec17f77ce3da..5dcfe673fe546f3fceb04afa0cce57181b816d9f 100644 (file)
@@ -1,86 +1,73 @@
 /*
-    Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2019 Carl Hetherington <cth@carlh.net>
 
-    This program is free software; you can redistribute it and/or modify
+    This file is part of libdcp.
+
+    libdcp is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
     (at your option) any later version.
 
-    This program is distributed in the hope that it will be useful,
+    libdcp is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU General Public License for more details.
 
     You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
+    along with libdcp.  If not, see <http://www.gnu.org/licenses/>.
+
+    In addition, as a special exception, the copyright holders give
+    permission to link the code of portions of this program with the
+    OpenSSL library under certain conditions as described in each
+    individual source file, and distribute linked combinations
+    including the two.
+
+    You must obey the GNU General Public License in all respects
+    for all of the code used other than OpenSSL.  If you modify
+    file(s) with this exception, you may extend this exception to your
+    version of the file(s), but you are not obligated to do so.  If you
+    do not wish to do so, delete this exception statement from your
+    version.  If you delete this exception statement from all source
+    files in the program, then also delete it here.
 */
 
-#include "image.h"
 #include "rgb_xyz.h"
-#include "xyz_frame.h"
+#include "openjpeg_image.h"
 #include "colour_conversion.h"
 #include <boost/test/unit_test.hpp>
 #include <boost/bind.hpp>
+#include <boost/scoped_array.hpp>
 
 using std::max;
 using std::list;
 using std::string;
+using std::cout;
 using boost::shared_ptr;
 using boost::optional;
-
-class SimpleImage : public dcp::Image
-{
-public:
-       SimpleImage (dcp::Size size)
-               : Image (size)
-       {
-               /* 48bpp */
-               _stride[0] = _size.width * 6;
-               _data[0] = new uint8_t[size.height * stride()[0]];
-       }
-
-       ~SimpleImage ()
-       {
-               delete[] _data[0];
-       }
-
-       uint8_t * const * data () const {
-               return _data;
-       }
-
-       int const * stride () const {
-               return _stride;
-       }
-
-private:
-       uint8_t* _data[1];
-       int _stride[1];
-};
+using boost::scoped_array;
 
 /** Convert a test image from sRGB to XYZ and check that the transforms are right */
 BOOST_AUTO_TEST_CASE (rgb_xyz_test)
 {
-       unsigned int seed = 0;
+       srand (0);
        dcp::Size const size (640, 480);
 
-       shared_ptr<const dcp::Image> rgb (new SimpleImage (size));
+       scoped_array<uint8_t> rgb (new uint8_t[size.width * size.height * 6]);
        for (int y = 0; y < size.height; ++y) {
-               uint16_t* p = reinterpret_cast<uint16_t*> (rgb->data()[0] + y * rgb->stride()[0]);
+               uint16_t* p = reinterpret_cast<uint16_t*> (rgb.get() + y * size.width * 6);
                for (int x = 0; x < size.width; ++x) {
                        /* Write a 12-bit random number for each component */
                        for (int c = 0; c < 3; ++c) {
-                               *p = (rand_r (&seed) & 0xfff) << 4;
+                               *p = (rand () & 0xfff) << 4;
                                ++p;
                        }
                }
        }
 
-       shared_ptr<dcp::XYZFrame> xyz = dcp::rgb_to_xyz (rgb, dcp::ColourConversion::srgb_to_xyz ());
+       shared_ptr<dcp::OpenJPEGImage> xyz = dcp::rgb_to_xyz (rgb.get(), size, size.width * 6, dcp::ColourConversion::srgb_to_xyz ());
 
        for (int y = 0; y < size.height; ++y) {
-               uint16_t* p = reinterpret_cast<uint16_t*> (rgb->data()[0] + y * rgb->stride()[0]);
+               uint16_t* p = reinterpret_cast<uint16_t*> (rgb.get() + y * size.width * 6);
                for (int x = 0; x < size.width; ++x) {
 
                        double cr = *p++ / 65535.0;
@@ -144,8 +131,8 @@ note_handler (dcp::NoteType n, string s)
 /** Check that xyz_to_rgb clamps XYZ values correctly */
 BOOST_AUTO_TEST_CASE (xyz_rgb_range_test)
 {
-       shared_ptr<dcp::XYZFrame> xyz (new dcp::XYZFrame (dcp::Size (2, 2)));
-       
+       shared_ptr<dcp::OpenJPEGImage> xyz (new dcp::OpenJPEGImage (dcp::Size (2, 2)));
+
        xyz->data(0)[0] = -4;
        xyz->data(0)[1] = 6901;
        xyz->data(0)[2] = 0;
@@ -159,10 +146,12 @@ BOOST_AUTO_TEST_CASE (xyz_rgb_range_test)
        xyz->data(2)[2] = 0;
        xyz->data(2)[3] = 4095;
 
-       uint16_t buffer[12];
+       scoped_array<uint8_t> rgb (new uint8_t[2 * 2 * 6]);
 
        notes.clear ();
-       dcp::xyz_to_rgb (xyz, dcp::ColourConversion::xyz_to_srgb (), buffer, boost::optional<dcp::NoteHandler> (boost::bind (&note_handler, _1, _2)));
+       dcp::xyz_to_rgb (
+               xyz, dcp::ColourConversion::srgb_to_xyz (), rgb.get(), 2 * 6, boost::optional<dcp::NoteHandler> (boost::bind (&note_handler, _1, _2))
+               );
 
        /* The 6 out-of-range samples should have been noted */
        BOOST_REQUIRE_EQUAL (notes.size(), 6);
@@ -178,6 +167,7 @@ BOOST_AUTO_TEST_CASE (xyz_rgb_range_test)
           as inputs at the extremes (0 and 4095).
        */
 
+       uint16_t* buffer = reinterpret_cast<uint16_t*> (rgb.get ());
        BOOST_REQUIRE_EQUAL (buffer[0 * 3 + 0], buffer[2 * 3 + 1]);
        BOOST_REQUIRE_EQUAL (buffer[0 * 3 + 1], buffer[2 * 3 + 1]);
        BOOST_REQUIRE_EQUAL (buffer[0 * 3 + 2], buffer[2 * 3 + 2]);
@@ -186,3 +176,35 @@ BOOST_AUTO_TEST_CASE (xyz_rgb_range_test)
        BOOST_REQUIRE_EQUAL (buffer[1 * 3 + 1], buffer[3 * 3 + 1]);
        BOOST_REQUIRE_EQUAL (buffer[1 * 3 + 2], buffer[3 * 3 + 2]);
 }
+
+/** Convert an image from RGB to XYZ and back again */
+BOOST_AUTO_TEST_CASE (rgb_xyz_round_trip_test)
+{
+       srand (0);
+       dcp::Size const size (640, 480);
+
+       scoped_array<uint8_t> rgb (new uint8_t[size.width * size.height * 6]);
+       for (int y = 0; y < size.height; ++y) {
+               uint16_t* p = reinterpret_cast<uint16_t*> (rgb.get() + y * size.width * 6);
+               for (int x = 0; x < size.width; ++x) {
+                       /* Write a 12-bit random number for each component */
+                       for (int c = 0; c < 3; ++c) {
+                               *p = (rand () & 0xfff) << 4;
+                               ++p;
+                       }
+               }
+       }
+
+       shared_ptr<dcp::OpenJPEGImage> xyz = dcp::rgb_to_xyz (rgb.get(), size, size.width * 6, dcp::ColourConversion::srgb_to_xyz ());
+       scoped_array<uint8_t> back (new uint8_t[size.width * size.height * 6]);
+       dcp::xyz_to_rgb (xyz, dcp::ColourConversion::srgb_to_xyz (), back.get(), size.width * 6);
+
+#if 0
+       uint16_t* p = reinterpret_cast<uint16_t*> (rgb.get ());
+       uint16_t* q = reinterpret_cast<uint16_t*> (back.get ());
+       for (int i = 0; i < (size.width * size.height); ++i) {
+               /* XXX: doesn't quite work */
+               // BOOST_REQUIRE_EQUAL (*p++, *q++);
+       }
+#endif
+}