From: Carl Hetherington Date: Wed, 10 Jun 2015 14:28:29 +0000 (+0100) Subject: Take a JPEG2000 header marked as SRGB to mean that no XYZ -> RGB conversion should... X-Git-Tag: v2.0.50~5 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=6e10de6161f783de85bbaf59824a29026d524e55;p=dcpomatic.git Take a JPEG2000 header marked as SRGB to mean that no XYZ -> RGB conversion should happen. --- diff --git a/src/lib/dcp_video.cc b/src/lib/dcp_video.cc index 78cbe65bd..69587a6ff 100644 --- a/src/lib/dcp_video.cc +++ b/src/lib/dcp_video.cc @@ -40,7 +40,7 @@ #include "raw_convert.h" #include "data.h" #include -#include +#include #include #include #include @@ -107,7 +107,7 @@ DCPVideo::DCPVideo (shared_ptr frame, shared_ptr xyz; + shared_ptr xyz; shared_ptr image = _frame->image (AV_PIX_FMT_RGB48LE, _burn_subtitles, note); if (_frame->colour_conversion()) { diff --git a/src/lib/image_examiner.cc b/src/lib/image_examiner.cc index 502e8adbe..b2f962323 100644 --- a/src/lib/image_examiner.cc +++ b/src/lib/image_examiner.cc @@ -24,8 +24,8 @@ #include "exceptions.h" #include "config.h" #include "cross.h" +#include #include -#include #include #include diff --git a/src/lib/j2k_image_proxy.cc b/src/lib/j2k_image_proxy.cc index 28b7299c8..7dca3d8a9 100644 --- a/src/lib/j2k_image_proxy.cc +++ b/src/lib/j2k_image_proxy.cc @@ -22,7 +22,7 @@ #include "image.h" #include "data.h" #include "raw_convert.h" -#include +#include #include #include #include @@ -82,21 +82,35 @@ J2KImageProxy::image (optional note) const { shared_ptr image (new Image (PIX_FMT_RGB48LE, _size, true)); - shared_ptr xyz = dcp::decompress_j2k (const_cast (_data.data().get()), _data.size (), 0); + shared_ptr oj = dcp::decompress_j2k (const_cast (_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; }