summaryrefslogtreecommitdiff
path: root/src/rgb_xyz.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-09-09 00:32:08 +0100
committerCarl Hetherington <cth@carlh.net>2016-09-09 00:32:08 +0100
commit17af99550ea468bf6702f4973630a24629a65ff7 (patch)
tree00be394a21f6506c2425b0b6691ac42a23a277c2 /src/rgb_xyz.cc
parentfe83eb5293fa4027856f6ee9faec7bfc8288badf (diff)
Simplify previous commit and remove some debugging.
Diffstat (limited to 'src/rgb_xyz.cc')
-rw-r--r--src/rgb_xyz.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rgb_xyz.cc b/src/rgb_xyz.cc
index 2eccb77a..d299340e 100644
--- a/src/rgb_xyz.cc
+++ b/src/rgb_xyz.cc
@@ -365,9 +365,7 @@ dcp::xyz_to_xyz (uint8_t const * xyz_16, dcp::Size size, int stride)
uint16_t const * p = reinterpret_cast<uint16_t const *> (xyz_16 + y * stride);
for (int x = 0; x < size.width; ++x) {
/* Truncate 16-bit to 12-bit */
- cout << *p << " ";
xyz_12->data(0)[jn] = *p++ >> 4;
- cout << xyz_12->data(0)[jn] << "\n";
xyz_12->data(1)[jn] = *p++ >> 4;
xyz_12->data(2)[jn] = *p++ >> 4;
++jn;