Take a JPEG2000 header marked as SRGB to mean that no XYZ -> RGB conversion should...
authorCarl Hetherington <cth@carlh.net>
Wed, 10 Jun 2015 14:28:29 +0000 (15:28 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 10 Jun 2015 14:28:29 +0000 (15:28 +0100)
src/lib/dcp_video.cc
src/lib/image_examiner.cc
src/lib/j2k_image_proxy.cc

index 78cbe65bddbf3945f9c12cb6633a33a31dc36389..69587a6fff6b127f6bb239e95d82da328469fe3c 100644 (file)
@@ -40,7 +40,7 @@
 #include "raw_convert.h"
 #include "data.h"
 #include <libcxml/cxml.h>
-#include <dcp/xyz_image.h>
+#include <dcp/openjpeg_image.h>
 #include <dcp/rgb_xyz.h>
 #include <dcp/colour_matrix.h>
 #include <boost/array.hpp>
@@ -107,7 +107,7 @@ DCPVideo::DCPVideo (shared_ptr<const PlayerVideo> frame, shared_ptr<const cxml::
 Data
 DCPVideo::encode_locally (dcp::NoteHandler note)
 {
-       shared_ptr<dcp::XYZImage> xyz;
+       shared_ptr<dcp::OpenJPEGImage> xyz;
 
        shared_ptr<Image> image = _frame->image (AV_PIX_FMT_RGB48LE, _burn_subtitles, note);
        if (_frame->colour_conversion()) {
index 502e8adbe909da9dbeac4240d395b1dca020bdec..b2f9623238814dd090f2d27cdcb7cfb7e774d0e1 100644 (file)
@@ -24,8 +24,8 @@
 #include "exceptions.h"
 #include "config.h"
 #include "cross.h"
+#include <dcp/openjpeg_image.h>
 #include <dcp/exceptions.h>
-#include <dcp/xyz_image.h>
 #include <Magick++.h>
 #include <iostream>
 
index 28b7299c8911d50a61c4ee830a197138fd88ade7..7dca3d8a9faca7324e49a5bbc32a3c4b2008d6b1 100644 (file)
@@ -22,7 +22,7 @@
 #include "image.h"
 #include "data.h"
 #include "raw_convert.h"
-#include <dcp/xyz_image.h>
+#include <dcp/openjpeg_image.h>
 #include <dcp/mono_picture_frame.h>
 #include <dcp/stereo_picture_frame.h>
 #include <dcp/colour_conversion.h>
@@ -82,21 +82,35 @@ J2KImageProxy::image (optional<dcp::NoteHandler> note) const
 {
        shared_ptr<Image> image (new Image (PIX_FMT_RGB48LE, _size, true));
 
-       shared_ptr<dcp::XYZImage> xyz = dcp::decompress_j2k (const_cast<uint8_t*> (_data.data().get()), _data.size (), 0);
+       shared_ptr<dcp::OpenJPEGImage> oj = dcp::decompress_j2k (const_cast<uint8_t*> (_data.data().get()), _data.size (), 0);
 
-       if (xyz->opj_image()->comps[0].prec < 12) {
-               int const shift = 12 - xyz->opj_image()->comps[0].prec;
+       if (oj->opj_image()->comps[0].prec < 12) {
+               int const shift = 12 - oj->opj_image()->comps[0].prec;
                for (int c = 0; c < 3; ++c) {
-                       int* p = xyz->data (c);
-                       for (int y = 0; y < xyz->size().height; ++y) {
-                               for (int x = 0; x < xyz->size().width; ++x) {
+                       int* p = oj->data (c);
+                       for (int y = 0; y < oj->size().height; ++y) {
+                               for (int x = 0; x < oj->size().width; ++x) {
                                        *p++ <<= shift;
                                }
                        }
                }
        }
 
-       dcp::xyz_to_rgb (xyz, dcp::ColourConversion::srgb_to_xyz(), image->data()[0], image->stride()[0], note);
+       if (oj->opj_image()->color_space == CLRSPC_SRGB) {
+               /* No XYZ -> RGB conversion necessary; just copy and interleave the values */
+               int p = 0;
+               for (int y = 0; y < oj->size().height; ++y) {
+                       uint16_t* q = (uint16_t *) (image->data()[0] + y * image->stride()[0]);
+                       for (int x = 0; x < oj->size().width; ++x) {
+                               for (int c = 0; c < 3; ++c) {
+                                       *q++ = oj->data(c)[p] << 4;
+                               }
+                               ++p;
+                       }
+               }
+       } else {
+               dcp::xyz_to_rgb (oj, dcp::ColourConversion::srgb_to_xyz(), image->data()[0], image->stride()[0], note);
+       }
        
        return image;
 }