]> git.saurik.com Git - wxWidgets.git/blob - src/tiff/libtiff/tif_luv.c
revert r74683, wxTLW has its own {Width,Height}Default()
[wxWidgets.git] / src / tiff / libtiff / tif_luv.c
1
2 /*
3 * Copyright (c) 1997 Greg Ward Larson
4 * Copyright (c) 1997 Silicon Graphics, Inc.
5 *
6 * Permission to use, copy, modify, distribute, and sell this software and
7 * its documentation for any purpose is hereby granted without fee, provided
8 * that (i) the above copyright notices and this permission notice appear in
9 * all copies of the software and related documentation, and (ii) the names of
10 * Sam Leffler, Greg Larson and Silicon Graphics may not be used in any
11 * advertising or publicity relating to the software without the specific,
12 * prior written permission of Sam Leffler, Greg Larson and Silicon Graphics.
13 *
14 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
16 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
17 *
18 * IN NO EVENT SHALL SAM LEFFLER, GREG LARSON OR SILICON GRAPHICS BE LIABLE
19 * FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
20 * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
21 * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
22 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
23 * OF THIS SOFTWARE.
24 */
25
26 #include "tiffiop.h"
27 #ifdef LOGLUV_SUPPORT
28
29 /*
30 * TIFF Library.
31 * LogLuv compression support for high dynamic range images.
32 *
33 * Contributed by Greg Larson.
34 *
35 * LogLuv image support uses the TIFF library to store 16 or 10-bit
36 * log luminance values with 8 bits each of u and v or a 14-bit index.
37 *
38 * The codec can take as input and produce as output 32-bit IEEE float values
39 * as well as 16-bit integer values. A 16-bit luminance is interpreted
40 * as a sign bit followed by a 15-bit integer that is converted
41 * to and from a linear magnitude using the transformation:
42 *
43 * L = 2^( (Le+.5)/256 - 64 ) # real from 15-bit
44 *
45 * Le = floor( 256*(log2(L) + 64) ) # 15-bit from real
46 *
47 * The actual conversion to world luminance units in candelas per sq. meter
48 * requires an additional multiplier, which is stored in the TIFFTAG_STONITS.
49 * This value is usually set such that a reasonable exposure comes from
50 * clamping decoded luminances above 1 to 1 in the displayed image.
51 *
52 * The 16-bit values for u and v may be converted to real values by dividing
53 * each by 32768. (This allows for negative values, which aren't useful as
54 * far as we know, but are left in case of future improvements in human
55 * color vision.)
56 *
57 * Conversion from (u,v), which is actually the CIE (u',v') system for
58 * you color scientists, is accomplished by the following transformation:
59 *
60 * u = 4*x / (-2*x + 12*y + 3)
61 * v = 9*y / (-2*x + 12*y + 3)
62 *
63 * x = 9*u / (6*u - 16*v + 12)
64 * y = 4*v / (6*u - 16*v + 12)
65 *
66 * This process is greatly simplified by passing 32-bit IEEE floats
67 * for each of three CIE XYZ coordinates. The codec then takes care
68 * of conversion to and from LogLuv, though the application is still
69 * responsible for interpreting the TIFFTAG_STONITS calibration factor.
70 *
71 * By definition, a CIE XYZ vector of [1 1 1] corresponds to a neutral white
72 * point of (x,y)=(1/3,1/3). However, most color systems assume some other
73 * white point, such as D65, and an absolute color conversion to XYZ then
74 * to another color space with a different white point may introduce an
75 * unwanted color cast to the image. It is often desirable, therefore, to
76 * perform a white point conversion that maps the input white to [1 1 1]
77 * in XYZ, then record the original white point using the TIFFTAG_WHITEPOINT
78 * tag value. A decoder that demands absolute color calibration may use
79 * this white point tag to get back the original colors, but usually it
80 * will be ignored and the new white point will be used instead that
81 * matches the output color space.
82 *
83 * Pixel information is compressed into one of two basic encodings, depending
84 * on the setting of the compression tag, which is one of COMPRESSION_SGILOG
85 * or COMPRESSION_SGILOG24. For COMPRESSION_SGILOG, greyscale data is
86 * stored as:
87 *
88 * 1 15
89 * |-+---------------|
90 *
91 * COMPRESSION_SGILOG color data is stored as:
92 *
93 * 1 15 8 8
94 * |-+---------------|--------+--------|
95 * S Le ue ve
96 *
97 * For the 24-bit COMPRESSION_SGILOG24 color format, the data is stored as:
98 *
99 * 10 14
100 * |----------|--------------|
101 * Le' Ce
102 *
103 * There is no sign bit in the 24-bit case, and the (u,v) chromaticity is
104 * encoded as an index for optimal color resolution. The 10 log bits are
105 * defined by the following conversions:
106 *
107 * L = 2^((Le'+.5)/64 - 12) # real from 10-bit
108 *
109 * Le' = floor( 64*(log2(L) + 12) ) # 10-bit from real
110 *
111 * The 10 bits of the smaller format may be converted into the 15 bits of
112 * the larger format by multiplying by 4 and adding 13314. Obviously,
113 * a smaller range of magnitudes is covered (about 5 orders of magnitude
114 * instead of 38), and the lack of a sign bit means that negative luminances
115 * are not allowed. (Well, they aren't allowed in the real world, either,
116 * but they are useful for certain types of image processing.)
117 *
118 * The desired user format is controlled by the setting the internal
119 * pseudo tag TIFFTAG_SGILOGDATAFMT to one of:
120 * SGILOGDATAFMT_FLOAT = IEEE 32-bit float XYZ values
121 * SGILOGDATAFMT_16BIT = 16-bit integer encodings of logL, u and v
122 * Raw data i/o is also possible using:
123 * SGILOGDATAFMT_RAW = 32-bit unsigned integer with encoded pixel
124 * In addition, the following decoding is provided for ease of display:
125 * SGILOGDATAFMT_8BIT = 8-bit default RGB gamma-corrected values
126 *
127 * For grayscale images, we provide the following data formats:
128 * SGILOGDATAFMT_FLOAT = IEEE 32-bit float Y values
129 * SGILOGDATAFMT_16BIT = 16-bit integer w/ encoded luminance
130 * SGILOGDATAFMT_8BIT = 8-bit gray monitor values
131 *
132 * Note that the COMPRESSION_SGILOG applies a simple run-length encoding
133 * scheme by separating the logL, u and v bytes for each row and applying
134 * a PackBits type of compression. Since the 24-bit encoding is not
135 * adaptive, the 32-bit color format takes less space in many cases.
136 *
137 * Further control is provided over the conversion from higher-resolution
138 * formats to final encoded values through the pseudo tag
139 * TIFFTAG_SGILOGENCODE:
140 * SGILOGENCODE_NODITHER = do not dither encoded values
141 * SGILOGENCODE_RANDITHER = apply random dithering during encoding
142 *
143 * The default value of this tag is SGILOGENCODE_NODITHER for
144 * COMPRESSION_SGILOG to maximize run-length encoding and
145 * SGILOGENCODE_RANDITHER for COMPRESSION_SGILOG24 to turn
146 * quantization errors into noise.
147 */
148
149 #include <stdio.h>
150 #include <stdlib.h>
151 #include <math.h>
152
153 /*
154 * State block for each open TIFF
155 * file using LogLuv compression/decompression.
156 */
157 typedef struct logLuvState LogLuvState;
158
159 struct logLuvState {
160 int user_datafmt; /* user data format */
161 int encode_meth; /* encoding method */
162 int pixel_size; /* bytes per pixel */
163
164 uint8* tbuf; /* translation buffer */
165 tmsize_t tbuflen; /* buffer length */
166 void (*tfunc)(LogLuvState*, uint8*, tmsize_t);
167
168 TIFFVSetMethod vgetparent; /* super-class method */
169 TIFFVSetMethod vsetparent; /* super-class method */
170 };
171
172 #define DecoderState(tif) ((LogLuvState*) (tif)->tif_data)
173 #define EncoderState(tif) ((LogLuvState*) (tif)->tif_data)
174
175 #define SGILOGDATAFMT_UNKNOWN -1
176
177 #define MINRUN 4 /* minimum run length */
178
179 /*
180 * Decode a string of 16-bit gray pixels.
181 */
182 static int
183 LogL16Decode(TIFF* tif, uint8* op, tmsize_t occ, uint16 s)
184 {
185 static const char module[] = "LogL16Decode";
186 LogLuvState* sp = DecoderState(tif);
187 int shft;
188 tmsize_t i;
189 tmsize_t npixels;
190 unsigned char* bp;
191 int16* tp;
192 int16 b;
193 tmsize_t cc;
194 int rc;
195
196 assert(s == 0);
197 assert(sp != NULL);
198
199 npixels = occ / sp->pixel_size;
200
201 if (sp->user_datafmt == SGILOGDATAFMT_16BIT)
202 tp = (int16*) op;
203 else {
204 assert(sp->tbuflen >= npixels);
205 tp = (int16*) sp->tbuf;
206 }
207 _TIFFmemset((void*) tp, 0, npixels*sizeof (tp[0]));
208
209 bp = (unsigned char*) tif->tif_rawcp;
210 cc = tif->tif_rawcc;
211 /* get each byte string */
212 for (shft = 2*8; (shft -= 8) >= 0; ) {
213 for (i = 0; i < npixels && cc > 0; )
214 if (*bp >= 128) { /* run */
215 rc = *bp++ + (2-128); /* TODO: potential input buffer overrun when decoding corrupt or truncated data */
216 b = (int16)(*bp++ << shft);
217 cc -= 2;
218 while (rc-- && i < npixels)
219 tp[i++] |= b;
220 } else { /* non-run */
221 rc = *bp++; /* nul is noop */
222 while (--cc && rc-- && i < npixels)
223 tp[i++] |= (int16)*bp++ << shft;
224 }
225 if (i != npixels) {
226 #if defined(__WIN32__) && (defined(_MSC_VER) || defined(__MINGW32__))
227 TIFFErrorExt(tif->tif_clientdata, module,
228 "Not enough data at row %lu (short %I64d pixels)",
229 (unsigned long) tif->tif_row,
230 (unsigned __int64) (npixels - i));
231 #else
232 TIFFErrorExt(tif->tif_clientdata, module,
233 "Not enough data at row %lu (short %llu pixels)",
234 (unsigned long) tif->tif_row,
235 (unsigned long long) (npixels - i));
236 #endif
237 tif->tif_rawcp = (uint8*) bp;
238 tif->tif_rawcc = cc;
239 return (0);
240 }
241 }
242 (*sp->tfunc)(sp, op, npixels);
243 tif->tif_rawcp = (uint8*) bp;
244 tif->tif_rawcc = cc;
245 return (1);
246 }
247
248 /*
249 * Decode a string of 24-bit pixels.
250 */
251 static int
252 LogLuvDecode24(TIFF* tif, uint8* op, tmsize_t occ, uint16 s)
253 {
254 static const char module[] = "LogLuvDecode24";
255 LogLuvState* sp = DecoderState(tif);
256 tmsize_t cc;
257 tmsize_t i;
258 tmsize_t npixels;
259 unsigned char* bp;
260 uint32* tp;
261
262 assert(s == 0);
263 assert(sp != NULL);
264
265 npixels = occ / sp->pixel_size;
266
267 if (sp->user_datafmt == SGILOGDATAFMT_RAW)
268 tp = (uint32 *)op;
269 else {
270 assert(sp->tbuflen >= npixels);
271 tp = (uint32 *) sp->tbuf;
272 }
273 /* copy to array of uint32 */
274 bp = (unsigned char*) tif->tif_rawcp;
275 cc = tif->tif_rawcc;
276 for (i = 0; i < npixels && cc > 0; i++) {
277 tp[i] = bp[0] << 16 | bp[1] << 8 | bp[2];
278 bp += 3;
279 cc -= 3;
280 }
281 tif->tif_rawcp = (uint8*) bp;
282 tif->tif_rawcc = cc;
283 if (i != npixels) {
284 #if defined(__WIN32__) && (defined(_MSC_VER) || defined(__MINGW32__))
285 TIFFErrorExt(tif->tif_clientdata, module,
286 "Not enough data at row %lu (short %I64d pixels)",
287 (unsigned long) tif->tif_row,
288 (unsigned __int64) (npixels - i));
289 #else
290 TIFFErrorExt(tif->tif_clientdata, module,
291 "Not enough data at row %lu (short %llu pixels)",
292 (unsigned long) tif->tif_row,
293 (unsigned long long) (npixels - i));
294 #endif
295 return (0);
296 }
297 (*sp->tfunc)(sp, op, npixels);
298 return (1);
299 }
300
301 /*
302 * Decode a string of 32-bit pixels.
303 */
304 static int
305 LogLuvDecode32(TIFF* tif, uint8* op, tmsize_t occ, uint16 s)
306 {
307 static const char module[] = "LogLuvDecode32";
308 LogLuvState* sp;
309 int shft;
310 tmsize_t i;
311 tmsize_t npixels;
312 unsigned char* bp;
313 uint32* tp;
314 uint32 b;
315 tmsize_t cc;
316 int rc;
317
318 assert(s == 0);
319 sp = DecoderState(tif);
320 assert(sp != NULL);
321
322 npixels = occ / sp->pixel_size;
323
324 if (sp->user_datafmt == SGILOGDATAFMT_RAW)
325 tp = (uint32*) op;
326 else {
327 assert(sp->tbuflen >= npixels);
328 tp = (uint32*) sp->tbuf;
329 }
330 _TIFFmemset((void*) tp, 0, npixels*sizeof (tp[0]));
331
332 bp = (unsigned char*) tif->tif_rawcp;
333 cc = tif->tif_rawcc;
334 /* get each byte string */
335 for (shft = 4*8; (shft -= 8) >= 0; ) {
336 for (i = 0; i < npixels && cc > 0; )
337 if (*bp >= 128) { /* run */
338 rc = *bp++ + (2-128);
339 b = (uint32)*bp++ << shft;
340 cc -= 2; /* TODO: potential input buffer overrun when decoding corrupt or truncated data */
341 while (rc-- && i < npixels)
342 tp[i++] |= b;
343 } else { /* non-run */
344 rc = *bp++; /* nul is noop */
345 while (--cc && rc-- && i < npixels)
346 tp[i++] |= (uint32)*bp++ << shft;
347 }
348 if (i != npixels) {
349 #if defined(__WIN32__) && (defined(_MSC_VER) || defined(__MINGW32__))
350 TIFFErrorExt(tif->tif_clientdata, module,
351 "Not enough data at row %lu (short %I64d pixels)",
352 (unsigned long) tif->tif_row,
353 (unsigned __int64) (npixels - i));
354 #else
355 TIFFErrorExt(tif->tif_clientdata, module,
356 "Not enough data at row %lu (short %llu pixels)",
357 (unsigned long) tif->tif_row,
358 (unsigned long long) (npixels - i));
359 #endif
360 tif->tif_rawcp = (uint8*) bp;
361 tif->tif_rawcc = cc;
362 return (0);
363 }
364 }
365 (*sp->tfunc)(sp, op, npixels);
366 tif->tif_rawcp = (uint8*) bp;
367 tif->tif_rawcc = cc;
368 return (1);
369 }
370
371 /*
372 * Decode a strip of pixels. We break it into rows to
373 * maintain synchrony with the encode algorithm, which
374 * is row by row.
375 */
376 static int
377 LogLuvDecodeStrip(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
378 {
379 tmsize_t rowlen = TIFFScanlineSize(tif);
380
381 assert(cc%rowlen == 0);
382 while (cc && (*tif->tif_decoderow)(tif, bp, rowlen, s))
383 bp += rowlen, cc -= rowlen;
384 return (cc == 0);
385 }
386
387 /*
388 * Decode a tile of pixels. We break it into rows to
389 * maintain synchrony with the encode algorithm, which
390 * is row by row.
391 */
392 static int
393 LogLuvDecodeTile(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
394 {
395 tmsize_t rowlen = TIFFTileRowSize(tif);
396
397 assert(cc%rowlen == 0);
398 while (cc && (*tif->tif_decoderow)(tif, bp, rowlen, s))
399 bp += rowlen, cc -= rowlen;
400 return (cc == 0);
401 }
402
403 /*
404 * Encode a row of 16-bit pixels.
405 */
406 static int
407 LogL16Encode(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
408 {
409 LogLuvState* sp = EncoderState(tif);
410 int shft;
411 tmsize_t i;
412 tmsize_t j;
413 tmsize_t npixels;
414 uint8* op;
415 int16* tp;
416 int16 b;
417 tmsize_t occ;
418 int rc=0, mask;
419 tmsize_t beg;
420
421 assert(s == 0);
422 assert(sp != NULL);
423 npixels = cc / sp->pixel_size;
424
425 if (sp->user_datafmt == SGILOGDATAFMT_16BIT)
426 tp = (int16*) bp;
427 else {
428 tp = (int16*) sp->tbuf;
429 assert(sp->tbuflen >= npixels);
430 (*sp->tfunc)(sp, bp, npixels);
431 }
432 /* compress each byte string */
433 op = tif->tif_rawcp;
434 occ = tif->tif_rawdatasize - tif->tif_rawcc;
435 for (shft = 2*8; (shft -= 8) >= 0; )
436 for (i = 0; i < npixels; i += rc) {
437 if (occ < 4) {
438 tif->tif_rawcp = op;
439 tif->tif_rawcc = tif->tif_rawdatasize - occ;
440 if (!TIFFFlushData1(tif))
441 return (-1);
442 op = tif->tif_rawcp;
443 occ = tif->tif_rawdatasize - tif->tif_rawcc;
444 }
445 mask = 0xff << shft; /* find next run */
446 for (beg = i; beg < npixels; beg += rc) {
447 b = (int16) (tp[beg] & mask);
448 rc = 1;
449 while (rc < 127+2 && beg+rc < npixels &&
450 (tp[beg+rc] & mask) == b)
451 rc++;
452 if (rc >= MINRUN)
453 break; /* long enough */
454 }
455 if (beg-i > 1 && beg-i < MINRUN) {
456 b = (int16) (tp[i] & mask);/*check short run */
457 j = i+1;
458 while ((tp[j++] & mask) == b)
459 if (j == beg) {
460 *op++ = (uint8)(128-2+j-i);
461 *op++ = (uint8)(b >> shft);
462 occ -= 2;
463 i = beg;
464 break;
465 }
466 }
467 while (i < beg) { /* write out non-run */
468 if ((j = beg-i) > 127) j = 127;
469 if (occ < j+3) {
470 tif->tif_rawcp = op;
471 tif->tif_rawcc = tif->tif_rawdatasize - occ;
472 if (!TIFFFlushData1(tif))
473 return (-1);
474 op = tif->tif_rawcp;
475 occ = tif->tif_rawdatasize - tif->tif_rawcc;
476 }
477 *op++ = (uint8) j; occ--;
478 while (j--) {
479 *op++ = (uint8) (tp[i++] >> shft & 0xff);
480 occ--;
481 }
482 }
483 if (rc >= MINRUN) { /* write out run */
484 *op++ = (uint8) (128-2+rc);
485 *op++ = (uint8) (tp[beg] >> shft & 0xff);
486 occ -= 2;
487 } else
488 rc = 0;
489 }
490 tif->tif_rawcp = op;
491 tif->tif_rawcc = tif->tif_rawdatasize - occ;
492
493 return (1);
494 }
495
496 /*
497 * Encode a row of 24-bit pixels.
498 */
499 static int
500 LogLuvEncode24(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
501 {
502 LogLuvState* sp = EncoderState(tif);
503 tmsize_t i;
504 tmsize_t npixels;
505 tmsize_t occ;
506 uint8* op;
507 uint32* tp;
508
509 assert(s == 0);
510 assert(sp != NULL);
511 npixels = cc / sp->pixel_size;
512
513 if (sp->user_datafmt == SGILOGDATAFMT_RAW)
514 tp = (uint32*) bp;
515 else {
516 tp = (uint32*) sp->tbuf;
517 assert(sp->tbuflen >= npixels);
518 (*sp->tfunc)(sp, bp, npixels);
519 }
520 /* write out encoded pixels */
521 op = tif->tif_rawcp;
522 occ = tif->tif_rawdatasize - tif->tif_rawcc;
523 for (i = npixels; i--; ) {
524 if (occ < 3) {
525 tif->tif_rawcp = op;
526 tif->tif_rawcc = tif->tif_rawdatasize - occ;
527 if (!TIFFFlushData1(tif))
528 return (-1);
529 op = tif->tif_rawcp;
530 occ = tif->tif_rawdatasize - tif->tif_rawcc;
531 }
532 *op++ = (uint8)(*tp >> 16);
533 *op++ = (uint8)(*tp >> 8 & 0xff);
534 *op++ = (uint8)(*tp++ & 0xff);
535 occ -= 3;
536 }
537 tif->tif_rawcp = op;
538 tif->tif_rawcc = tif->tif_rawdatasize - occ;
539
540 return (1);
541 }
542
543 /*
544 * Encode a row of 32-bit pixels.
545 */
546 static int
547 LogLuvEncode32(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
548 {
549 LogLuvState* sp = EncoderState(tif);
550 int shft;
551 tmsize_t i;
552 tmsize_t j;
553 tmsize_t npixels;
554 uint8* op;
555 uint32* tp;
556 uint32 b;
557 tmsize_t occ;
558 int rc=0, mask;
559 tmsize_t beg;
560
561 assert(s == 0);
562 assert(sp != NULL);
563
564 npixels = cc / sp->pixel_size;
565
566 if (sp->user_datafmt == SGILOGDATAFMT_RAW)
567 tp = (uint32*) bp;
568 else {
569 tp = (uint32*) sp->tbuf;
570 assert(sp->tbuflen >= npixels);
571 (*sp->tfunc)(sp, bp, npixels);
572 }
573 /* compress each byte string */
574 op = tif->tif_rawcp;
575 occ = tif->tif_rawdatasize - tif->tif_rawcc;
576 for (shft = 4*8; (shft -= 8) >= 0; )
577 for (i = 0; i < npixels; i += rc) {
578 if (occ < 4) {
579 tif->tif_rawcp = op;
580 tif->tif_rawcc = tif->tif_rawdatasize - occ;
581 if (!TIFFFlushData1(tif))
582 return (-1);
583 op = tif->tif_rawcp;
584 occ = tif->tif_rawdatasize - tif->tif_rawcc;
585 }
586 mask = 0xff << shft; /* find next run */
587 for (beg = i; beg < npixels; beg += rc) {
588 b = tp[beg] & mask;
589 rc = 1;
590 while (rc < 127+2 && beg+rc < npixels &&
591 (tp[beg+rc] & mask) == b)
592 rc++;
593 if (rc >= MINRUN)
594 break; /* long enough */
595 }
596 if (beg-i > 1 && beg-i < MINRUN) {
597 b = tp[i] & mask; /* check short run */
598 j = i+1;
599 while ((tp[j++] & mask) == b)
600 if (j == beg) {
601 *op++ = (uint8)(128-2+j-i);
602 *op++ = (uint8)(b >> shft);
603 occ -= 2;
604 i = beg;
605 break;
606 }
607 }
608 while (i < beg) { /* write out non-run */
609 if ((j = beg-i) > 127) j = 127;
610 if (occ < j+3) {
611 tif->tif_rawcp = op;
612 tif->tif_rawcc = tif->tif_rawdatasize - occ;
613 if (!TIFFFlushData1(tif))
614 return (-1);
615 op = tif->tif_rawcp;
616 occ = tif->tif_rawdatasize - tif->tif_rawcc;
617 }
618 *op++ = (uint8) j; occ--;
619 while (j--) {
620 *op++ = (uint8)(tp[i++] >> shft & 0xff);
621 occ--;
622 }
623 }
624 if (rc >= MINRUN) { /* write out run */
625 *op++ = (uint8) (128-2+rc);
626 *op++ = (uint8)(tp[beg] >> shft & 0xff);
627 occ -= 2;
628 } else
629 rc = 0;
630 }
631 tif->tif_rawcp = op;
632 tif->tif_rawcc = tif->tif_rawdatasize - occ;
633
634 return (1);
635 }
636
637 /*
638 * Encode a strip of pixels. We break it into rows to
639 * avoid encoding runs across row boundaries.
640 */
641 static int
642 LogLuvEncodeStrip(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
643 {
644 tmsize_t rowlen = TIFFScanlineSize(tif);
645
646 assert(cc%rowlen == 0);
647 while (cc && (*tif->tif_encoderow)(tif, bp, rowlen, s) == 1)
648 bp += rowlen, cc -= rowlen;
649 return (cc == 0);
650 }
651
652 /*
653 * Encode a tile of pixels. We break it into rows to
654 * avoid encoding runs across row boundaries.
655 */
656 static int
657 LogLuvEncodeTile(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
658 {
659 tmsize_t rowlen = TIFFTileRowSize(tif);
660
661 assert(cc%rowlen == 0);
662 while (cc && (*tif->tif_encoderow)(tif, bp, rowlen, s) == 1)
663 bp += rowlen, cc -= rowlen;
664 return (cc == 0);
665 }
666
667 /*
668 * Encode/Decode functions for converting to and from user formats.
669 */
670
671 #include "uvcode.h"
672
673 #ifndef UVSCALE
674 #define U_NEU 0.210526316
675 #define V_NEU 0.473684211
676 #define UVSCALE 410.
677 #endif
678
679 #ifndef M_LN2
680 #define M_LN2 0.69314718055994530942
681 #endif
682 #ifndef M_PI
683 #define M_PI 3.14159265358979323846
684 #endif
685 #define log2(x) ((1./M_LN2)*log(x))
686 #define exp2(x) exp(M_LN2*(x))
687
688 #define itrunc(x,m) ((m)==SGILOGENCODE_NODITHER ? \
689 (int)(x) : \
690 (int)((x) + rand()*(1./RAND_MAX) - .5))
691
692 #if !LOGLUV_PUBLIC
693 static
694 #endif
695 double
696 LogL16toY(int p16) /* compute luminance from 16-bit LogL */
697 {
698 int Le = p16 & 0x7fff;
699 double Y;
700
701 if (!Le)
702 return (0.);
703 Y = exp(M_LN2/256.*(Le+.5) - M_LN2*64.);
704 return (!(p16 & 0x8000) ? Y : -Y);
705 }
706
707 #if !LOGLUV_PUBLIC
708 static
709 #endif
710 int
711 LogL16fromY(double Y, int em) /* get 16-bit LogL from Y */
712 {
713 if (Y >= 1.8371976e19)
714 return (0x7fff);
715 if (Y <= -1.8371976e19)
716 return (0xffff);
717 if (Y > 5.4136769e-20)
718 return itrunc(256.*(log2(Y) + 64.), em);
719 if (Y < -5.4136769e-20)
720 return (~0x7fff | itrunc(256.*(log2(-Y) + 64.), em));
721 return (0);
722 }
723
724 static void
725 L16toY(LogLuvState* sp, uint8* op, tmsize_t n)
726 {
727 int16* l16 = (int16*) sp->tbuf;
728 float* yp = (float*) op;
729
730 while (n-- > 0)
731 *yp++ = (float)LogL16toY(*l16++);
732 }
733
734 static void
735 L16toGry(LogLuvState* sp, uint8* op, tmsize_t n)
736 {
737 int16* l16 = (int16*) sp->tbuf;
738 uint8* gp = (uint8*) op;
739
740 while (n-- > 0) {
741 double Y = LogL16toY(*l16++);
742 *gp++ = (uint8) ((Y <= 0.) ? 0 : (Y >= 1.) ? 255 : (int)(256.*sqrt(Y)));
743 }
744 }
745
746 static void
747 L16fromY(LogLuvState* sp, uint8* op, tmsize_t n)
748 {
749 int16* l16 = (int16*) sp->tbuf;
750 float* yp = (float*) op;
751
752 while (n-- > 0)
753 *l16++ = (int16) (LogL16fromY(*yp++, sp->encode_meth));
754 }
755
756 #if !LOGLUV_PUBLIC
757 static
758 #endif
759 void
760 XYZtoRGB24(float xyz[3], uint8 rgb[3])
761 {
762 double r, g, b;
763 /* assume CCIR-709 primaries */
764 r = 2.690*xyz[0] + -1.276*xyz[1] + -0.414*xyz[2];
765 g = -1.022*xyz[0] + 1.978*xyz[1] + 0.044*xyz[2];
766 b = 0.061*xyz[0] + -0.224*xyz[1] + 1.163*xyz[2];
767 /* assume 2.0 gamma for speed */
768 /* could use integer sqrt approx., but this is probably faster */
769 rgb[0] = (uint8)((r<=0.) ? 0 : (r >= 1.) ? 255 : (int)(256.*sqrt(r)));
770 rgb[1] = (uint8)((g<=0.) ? 0 : (g >= 1.) ? 255 : (int)(256.*sqrt(g)));
771 rgb[2] = (uint8)((b<=0.) ? 0 : (b >= 1.) ? 255 : (int)(256.*sqrt(b)));
772 }
773
774 #if !LOGLUV_PUBLIC
775 static
776 #endif
777 double
778 LogL10toY(int p10) /* compute luminance from 10-bit LogL */
779 {
780 if (p10 == 0)
781 return (0.);
782 return (exp(M_LN2/64.*(p10+.5) - M_LN2*12.));
783 }
784
785 #if !LOGLUV_PUBLIC
786 static
787 #endif
788 int
789 LogL10fromY(double Y, int em) /* get 10-bit LogL from Y */
790 {
791 if (Y >= 15.742)
792 return (0x3ff);
793 else if (Y <= .00024283)
794 return (0);
795 else
796 return itrunc(64.*(log2(Y) + 12.), em);
797 }
798
799 #define NANGLES 100
800 #define uv2ang(u, v) ( (NANGLES*.499999999/M_PI) \
801 * atan2((v)-V_NEU,(u)-U_NEU) + .5*NANGLES )
802
803 static int
804 oog_encode(double u, double v) /* encode out-of-gamut chroma */
805 {
806 static int oog_table[NANGLES];
807 static int initialized = 0;
808 register int i;
809
810 if (!initialized) { /* set up perimeter table */
811 double eps[NANGLES], ua, va, ang, epsa;
812 int ui, vi, ustep;
813 for (i = NANGLES; i--; )
814 eps[i] = 2.;
815 for (vi = UV_NVS; vi--; ) {
816 va = UV_VSTART + (vi+.5)*UV_SQSIZ;
817 ustep = uv_row[vi].nus-1;
818 if (vi == UV_NVS-1 || vi == 0 || ustep <= 0)
819 ustep = 1;
820 for (ui = uv_row[vi].nus-1; ui >= 0; ui -= ustep) {
821 ua = uv_row[vi].ustart + (ui+.5)*UV_SQSIZ;
822 ang = uv2ang(ua, va);
823 i = (int) ang;
824 epsa = fabs(ang - (i+.5));
825 if (epsa < eps[i]) {
826 oog_table[i] = uv_row[vi].ncum + ui;
827 eps[i] = epsa;
828 }
829 }
830 }
831 for (i = NANGLES; i--; ) /* fill any holes */
832 if (eps[i] > 1.5) {
833 int i1, i2;
834 for (i1 = 1; i1 < NANGLES/2; i1++)
835 if (eps[(i+i1)%NANGLES] < 1.5)
836 break;
837 for (i2 = 1; i2 < NANGLES/2; i2++)
838 if (eps[(i+NANGLES-i2)%NANGLES] < 1.5)
839 break;
840 if (i1 < i2)
841 oog_table[i] =
842 oog_table[(i+i1)%NANGLES];
843 else
844 oog_table[i] =
845 oog_table[(i+NANGLES-i2)%NANGLES];
846 }
847 initialized = 1;
848 }
849 i = (int) uv2ang(u, v); /* look up hue angle */
850 return (oog_table[i]);
851 }
852
853 #undef uv2ang
854 #undef NANGLES
855
856 #if !LOGLUV_PUBLIC
857 static
858 #endif
859 int
860 uv_encode(double u, double v, int em) /* encode (u',v') coordinates */
861 {
862 register int vi, ui;
863
864 if (v < UV_VSTART)
865 return oog_encode(u, v);
866 vi = itrunc((v - UV_VSTART)*(1./UV_SQSIZ), em);
867 if (vi >= UV_NVS)
868 return oog_encode(u, v);
869 if (u < uv_row[vi].ustart)
870 return oog_encode(u, v);
871 ui = itrunc((u - uv_row[vi].ustart)*(1./UV_SQSIZ), em);
872 if (ui >= uv_row[vi].nus)
873 return oog_encode(u, v);
874
875 return (uv_row[vi].ncum + ui);
876 }
877
878 #if !LOGLUV_PUBLIC
879 static
880 #endif
881 int
882 uv_decode(double *up, double *vp, int c) /* decode (u',v') index */
883 {
884 int upper, lower;
885 register int ui, vi;
886
887 if (c < 0 || c >= UV_NDIVS)
888 return (-1);
889 lower = 0; /* binary search */
890 upper = UV_NVS;
891 while (upper - lower > 1) {
892 vi = (lower + upper) >> 1;
893 ui = c - uv_row[vi].ncum;
894 if (ui > 0)
895 lower = vi;
896 else if (ui < 0)
897 upper = vi;
898 else {
899 lower = vi;
900 break;
901 }
902 }
903 vi = lower;
904 ui = c - uv_row[vi].ncum;
905 *up = uv_row[vi].ustart + (ui+.5)*UV_SQSIZ;
906 *vp = UV_VSTART + (vi+.5)*UV_SQSIZ;
907 return (0);
908 }
909
910 #if !LOGLUV_PUBLIC
911 static
912 #endif
913 void
914 LogLuv24toXYZ(uint32 p, float XYZ[3])
915 {
916 int Ce;
917 double L, u, v, s, x, y;
918 /* decode luminance */
919 L = LogL10toY(p>>14 & 0x3ff);
920 if (L <= 0.) {
921 XYZ[0] = XYZ[1] = XYZ[2] = 0.;
922 return;
923 }
924 /* decode color */
925 Ce = p & 0x3fff;
926 if (uv_decode(&u, &v, Ce) < 0) {
927 u = U_NEU; v = V_NEU;
928 }
929 s = 1./(6.*u - 16.*v + 12.);
930 x = 9.*u * s;
931 y = 4.*v * s;
932 /* convert to XYZ */
933 XYZ[0] = (float)(x/y * L);
934 XYZ[1] = (float)L;
935 XYZ[2] = (float)((1.-x-y)/y * L);
936 }
937
938 #if !LOGLUV_PUBLIC
939 static
940 #endif
941 uint32
942 LogLuv24fromXYZ(float XYZ[3], int em)
943 {
944 int Le, Ce;
945 double u, v, s;
946 /* encode luminance */
947 Le = LogL10fromY(XYZ[1], em);
948 /* encode color */
949 s = XYZ[0] + 15.*XYZ[1] + 3.*XYZ[2];
950 if (!Le || s <= 0.) {
951 u = U_NEU;
952 v = V_NEU;
953 } else {
954 u = 4.*XYZ[0] / s;
955 v = 9.*XYZ[1] / s;
956 }
957 Ce = uv_encode(u, v, em);
958 if (Ce < 0) /* never happens */
959 Ce = uv_encode(U_NEU, V_NEU, SGILOGENCODE_NODITHER);
960 /* combine encodings */
961 return (Le << 14 | Ce);
962 }
963
964 static void
965 Luv24toXYZ(LogLuvState* sp, uint8* op, tmsize_t n)
966 {
967 uint32* luv = (uint32*) sp->tbuf;
968 float* xyz = (float*) op;
969
970 while (n-- > 0) {
971 LogLuv24toXYZ(*luv, xyz);
972 xyz += 3;
973 luv++;
974 }
975 }
976
977 static void
978 Luv24toLuv48(LogLuvState* sp, uint8* op, tmsize_t n)
979 {
980 uint32* luv = (uint32*) sp->tbuf;
981 int16* luv3 = (int16*) op;
982
983 while (n-- > 0) {
984 double u, v;
985
986 *luv3++ = (int16)((*luv >> 12 & 0xffd) + 13314);
987 if (uv_decode(&u, &v, *luv&0x3fff) < 0) {
988 u = U_NEU;
989 v = V_NEU;
990 }
991 *luv3++ = (int16)(u * (1L<<15));
992 *luv3++ = (int16)(v * (1L<<15));
993 luv++;
994 }
995 }
996
997 static void
998 Luv24toRGB(LogLuvState* sp, uint8* op, tmsize_t n)
999 {
1000 uint32* luv = (uint32*) sp->tbuf;
1001 uint8* rgb = (uint8*) op;
1002
1003 while (n-- > 0) {
1004 float xyz[3];
1005
1006 LogLuv24toXYZ(*luv++, xyz);
1007 XYZtoRGB24(xyz, rgb);
1008 rgb += 3;
1009 }
1010 }
1011
1012 static void
1013 Luv24fromXYZ(LogLuvState* sp, uint8* op, tmsize_t n)
1014 {
1015 uint32* luv = (uint32*) sp->tbuf;
1016 float* xyz = (float*) op;
1017
1018 while (n-- > 0) {
1019 *luv++ = LogLuv24fromXYZ(xyz, sp->encode_meth);
1020 xyz += 3;
1021 }
1022 }
1023
1024 static void
1025 Luv24fromLuv48(LogLuvState* sp, uint8* op, tmsize_t n)
1026 {
1027 uint32* luv = (uint32*) sp->tbuf;
1028 int16* luv3 = (int16*) op;
1029
1030 while (n-- > 0) {
1031 int Le, Ce;
1032
1033 if (luv3[0] <= 0)
1034 Le = 0;
1035 else if (luv3[0] >= (1<<12)+3314)
1036 Le = (1<<10) - 1;
1037 else if (sp->encode_meth == SGILOGENCODE_NODITHER)
1038 Le = (luv3[0]-3314) >> 2;
1039 else
1040 Le = itrunc(.25*(luv3[0]-3314.), sp->encode_meth);
1041
1042 Ce = uv_encode((luv3[1]+.5)/(1<<15), (luv3[2]+.5)/(1<<15),
1043 sp->encode_meth);
1044 if (Ce < 0) /* never happens */
1045 Ce = uv_encode(U_NEU, V_NEU, SGILOGENCODE_NODITHER);
1046 *luv++ = (uint32)Le << 14 | Ce;
1047 luv3 += 3;
1048 }
1049 }
1050
1051 #if !LOGLUV_PUBLIC
1052 static
1053 #endif
1054 void
1055 LogLuv32toXYZ(uint32 p, float XYZ[3])
1056 {
1057 double L, u, v, s, x, y;
1058 /* decode luminance */
1059 L = LogL16toY((int)p >> 16);
1060 if (L <= 0.) {
1061 XYZ[0] = XYZ[1] = XYZ[2] = 0.;
1062 return;
1063 }
1064 /* decode color */
1065 u = 1./UVSCALE * ((p>>8 & 0xff) + .5);
1066 v = 1./UVSCALE * ((p & 0xff) + .5);
1067 s = 1./(6.*u - 16.*v + 12.);
1068 x = 9.*u * s;
1069 y = 4.*v * s;
1070 /* convert to XYZ */
1071 XYZ[0] = (float)(x/y * L);
1072 XYZ[1] = (float)L;
1073 XYZ[2] = (float)((1.-x-y)/y * L);
1074 }
1075
1076 #if !LOGLUV_PUBLIC
1077 static
1078 #endif
1079 uint32
1080 LogLuv32fromXYZ(float XYZ[3], int em)
1081 {
1082 unsigned int Le, ue, ve;
1083 double u, v, s;
1084 /* encode luminance */
1085 Le = (unsigned int)LogL16fromY(XYZ[1], em);
1086 /* encode color */
1087 s = XYZ[0] + 15.*XYZ[1] + 3.*XYZ[2];
1088 if (!Le || s <= 0.) {
1089 u = U_NEU;
1090 v = V_NEU;
1091 } else {
1092 u = 4.*XYZ[0] / s;
1093 v = 9.*XYZ[1] / s;
1094 }
1095 if (u <= 0.) ue = 0;
1096 else ue = itrunc(UVSCALE*u, em);
1097 if (ue > 255) ue = 255;
1098 if (v <= 0.) ve = 0;
1099 else ve = itrunc(UVSCALE*v, em);
1100 if (ve > 255) ve = 255;
1101 /* combine encodings */
1102 return (Le << 16 | ue << 8 | ve);
1103 }
1104
1105 static void
1106 Luv32toXYZ(LogLuvState* sp, uint8* op, tmsize_t n)
1107 {
1108 uint32* luv = (uint32*) sp->tbuf;
1109 float* xyz = (float*) op;
1110
1111 while (n-- > 0) {
1112 LogLuv32toXYZ(*luv++, xyz);
1113 xyz += 3;
1114 }
1115 }
1116
1117 static void
1118 Luv32toLuv48(LogLuvState* sp, uint8* op, tmsize_t n)
1119 {
1120 uint32* luv = (uint32*) sp->tbuf;
1121 int16* luv3 = (int16*) op;
1122
1123 while (n-- > 0) {
1124 double u, v;
1125
1126 *luv3++ = (int16)(*luv >> 16);
1127 u = 1./UVSCALE * ((*luv>>8 & 0xff) + .5);
1128 v = 1./UVSCALE * ((*luv & 0xff) + .5);
1129 *luv3++ = (int16)(u * (1L<<15));
1130 *luv3++ = (int16)(v * (1L<<15));
1131 luv++;
1132 }
1133 }
1134
1135 static void
1136 Luv32toRGB(LogLuvState* sp, uint8* op, tmsize_t n)
1137 {
1138 uint32* luv = (uint32*) sp->tbuf;
1139 uint8* rgb = (uint8*) op;
1140
1141 while (n-- > 0) {
1142 float xyz[3];
1143
1144 LogLuv32toXYZ(*luv++, xyz);
1145 XYZtoRGB24(xyz, rgb);
1146 rgb += 3;
1147 }
1148 }
1149
1150 static void
1151 Luv32fromXYZ(LogLuvState* sp, uint8* op, tmsize_t n)
1152 {
1153 uint32* luv = (uint32*) sp->tbuf;
1154 float* xyz = (float*) op;
1155
1156 while (n-- > 0) {
1157 *luv++ = LogLuv32fromXYZ(xyz, sp->encode_meth);
1158 xyz += 3;
1159 }
1160 }
1161
1162 static void
1163 Luv32fromLuv48(LogLuvState* sp, uint8* op, tmsize_t n)
1164 {
1165 uint32* luv = (uint32*) sp->tbuf;
1166 int16* luv3 = (int16*) op;
1167
1168 if (sp->encode_meth == SGILOGENCODE_NODITHER) {
1169 while (n-- > 0) {
1170 *luv++ = (uint32)luv3[0] << 16 |
1171 (luv3[1]*(uint32)(UVSCALE+.5) >> 7 & 0xff00) |
1172 (luv3[2]*(uint32)(UVSCALE+.5) >> 15 & 0xff);
1173 luv3 += 3;
1174 }
1175 return;
1176 }
1177 while (n-- > 0) {
1178 *luv++ = (uint32)luv3[0] << 16 |
1179 (itrunc(luv3[1]*(UVSCALE/(1<<15)), sp->encode_meth) << 8 & 0xff00) |
1180 (itrunc(luv3[2]*(UVSCALE/(1<<15)), sp->encode_meth) & 0xff);
1181 luv3 += 3;
1182 }
1183 }
1184
1185 static void
1186 _logLuvNop(LogLuvState* sp, uint8* op, tmsize_t n)
1187 {
1188 (void) sp; (void) op; (void) n;
1189 }
1190
1191 static int
1192 LogL16GuessDataFmt(TIFFDirectory *td)
1193 {
1194 #define PACK(s,b,f) (((b)<<6)|((s)<<3)|(f))
1195 switch (PACK(td->td_samplesperpixel, td->td_bitspersample, td->td_sampleformat)) {
1196 case PACK(1, 32, SAMPLEFORMAT_IEEEFP):
1197 return (SGILOGDATAFMT_FLOAT);
1198 case PACK(1, 16, SAMPLEFORMAT_VOID):
1199 case PACK(1, 16, SAMPLEFORMAT_INT):
1200 case PACK(1, 16, SAMPLEFORMAT_UINT):
1201 return (SGILOGDATAFMT_16BIT);
1202 case PACK(1, 8, SAMPLEFORMAT_VOID):
1203 case PACK(1, 8, SAMPLEFORMAT_UINT):
1204 return (SGILOGDATAFMT_8BIT);
1205 }
1206 #undef PACK
1207 return (SGILOGDATAFMT_UNKNOWN);
1208 }
1209
1210 static tmsize_t
1211 multiply_ms(tmsize_t m1, tmsize_t m2)
1212 {
1213 tmsize_t bytes = m1 * m2;
1214
1215 if (m1 && bytes / m1 != m2)
1216 bytes = 0;
1217
1218 return bytes;
1219 }
1220
1221 static int
1222 LogL16InitState(TIFF* tif)
1223 {
1224 static const char module[] = "LogL16InitState";
1225 TIFFDirectory *td = &tif->tif_dir;
1226 LogLuvState* sp = DecoderState(tif);
1227
1228 assert(sp != NULL);
1229 assert(td->td_photometric == PHOTOMETRIC_LOGL);
1230
1231 /* for some reason, we can't do this in TIFFInitLogL16 */
1232 if (sp->user_datafmt == SGILOGDATAFMT_UNKNOWN)
1233 sp->user_datafmt = LogL16GuessDataFmt(td);
1234 switch (sp->user_datafmt) {
1235 case SGILOGDATAFMT_FLOAT:
1236 sp->pixel_size = sizeof (float);
1237 break;
1238 case SGILOGDATAFMT_16BIT:
1239 sp->pixel_size = sizeof (int16);
1240 break;
1241 case SGILOGDATAFMT_8BIT:
1242 sp->pixel_size = sizeof (uint8);
1243 break;
1244 default:
1245 TIFFErrorExt(tif->tif_clientdata, module,
1246 "No support for converting user data format to LogL");
1247 return (0);
1248 }
1249 if( isTiled(tif) )
1250 sp->tbuflen = multiply_ms(td->td_tilewidth, td->td_tilelength);
1251 else
1252 sp->tbuflen = multiply_ms(td->td_imagewidth, td->td_rowsperstrip);
1253 if (multiply_ms(sp->tbuflen, sizeof (int16)) == 0 ||
1254 (sp->tbuf = (uint8*) _TIFFmalloc(sp->tbuflen * sizeof (int16))) == NULL) {
1255 TIFFErrorExt(tif->tif_clientdata, module, "No space for SGILog translation buffer");
1256 return (0);
1257 }
1258 return (1);
1259 }
1260
1261 static int
1262 LogLuvGuessDataFmt(TIFFDirectory *td)
1263 {
1264 int guess;
1265
1266 /*
1267 * If the user didn't tell us their datafmt,
1268 * take our best guess from the bitspersample.
1269 */
1270 #define PACK(a,b) (((a)<<3)|(b))
1271 switch (PACK(td->td_bitspersample, td->td_sampleformat)) {
1272 case PACK(32, SAMPLEFORMAT_IEEEFP):
1273 guess = SGILOGDATAFMT_FLOAT;
1274 break;
1275 case PACK(32, SAMPLEFORMAT_VOID):
1276 case PACK(32, SAMPLEFORMAT_UINT):
1277 case PACK(32, SAMPLEFORMAT_INT):
1278 guess = SGILOGDATAFMT_RAW;
1279 break;
1280 case PACK(16, SAMPLEFORMAT_VOID):
1281 case PACK(16, SAMPLEFORMAT_INT):
1282 case PACK(16, SAMPLEFORMAT_UINT):
1283 guess = SGILOGDATAFMT_16BIT;
1284 break;
1285 case PACK( 8, SAMPLEFORMAT_VOID):
1286 case PACK( 8, SAMPLEFORMAT_UINT):
1287 guess = SGILOGDATAFMT_8BIT;
1288 break;
1289 default:
1290 guess = SGILOGDATAFMT_UNKNOWN;
1291 break;
1292 #undef PACK
1293 }
1294 /*
1295 * Double-check samples per pixel.
1296 */
1297 switch (td->td_samplesperpixel) {
1298 case 1:
1299 if (guess != SGILOGDATAFMT_RAW)
1300 guess = SGILOGDATAFMT_UNKNOWN;
1301 break;
1302 case 3:
1303 if (guess == SGILOGDATAFMT_RAW)
1304 guess = SGILOGDATAFMT_UNKNOWN;
1305 break;
1306 default:
1307 guess = SGILOGDATAFMT_UNKNOWN;
1308 break;
1309 }
1310 return (guess);
1311 }
1312
1313 static int
1314 LogLuvInitState(TIFF* tif)
1315 {
1316 static const char module[] = "LogLuvInitState";
1317 TIFFDirectory* td = &tif->tif_dir;
1318 LogLuvState* sp = DecoderState(tif);
1319
1320 assert(sp != NULL);
1321 assert(td->td_photometric == PHOTOMETRIC_LOGLUV);
1322
1323 /* for some reason, we can't do this in TIFFInitLogLuv */
1324 if (td->td_planarconfig != PLANARCONFIG_CONTIG) {
1325 TIFFErrorExt(tif->tif_clientdata, module,
1326 "SGILog compression cannot handle non-contiguous data");
1327 return (0);
1328 }
1329 if (sp->user_datafmt == SGILOGDATAFMT_UNKNOWN)
1330 sp->user_datafmt = LogLuvGuessDataFmt(td);
1331 switch (sp->user_datafmt) {
1332 case SGILOGDATAFMT_FLOAT:
1333 sp->pixel_size = 3*sizeof (float);
1334 break;
1335 case SGILOGDATAFMT_16BIT:
1336 sp->pixel_size = 3*sizeof (int16);
1337 break;
1338 case SGILOGDATAFMT_RAW:
1339 sp->pixel_size = sizeof (uint32);
1340 break;
1341 case SGILOGDATAFMT_8BIT:
1342 sp->pixel_size = 3*sizeof (uint8);
1343 break;
1344 default:
1345 TIFFErrorExt(tif->tif_clientdata, module,
1346 "No support for converting user data format to LogLuv");
1347 return (0);
1348 }
1349 if( isTiled(tif) )
1350 sp->tbuflen = multiply_ms(td->td_tilewidth, td->td_tilelength);
1351 else
1352 sp->tbuflen = multiply_ms(td->td_imagewidth, td->td_rowsperstrip);
1353 if (multiply_ms(sp->tbuflen, sizeof (uint32)) == 0 ||
1354 (sp->tbuf = (uint8*) _TIFFmalloc(sp->tbuflen * sizeof (uint32))) == NULL) {
1355 TIFFErrorExt(tif->tif_clientdata, module, "No space for SGILog translation buffer");
1356 return (0);
1357 }
1358 return (1);
1359 }
1360
1361 static int
1362 LogLuvFixupTags(TIFF* tif)
1363 {
1364 (void) tif;
1365 return (1);
1366 }
1367
1368 static int
1369 LogLuvSetupDecode(TIFF* tif)
1370 {
1371 static const char module[] = "LogLuvSetupDecode";
1372 LogLuvState* sp = DecoderState(tif);
1373 TIFFDirectory* td = &tif->tif_dir;
1374
1375 tif->tif_postdecode = _TIFFNoPostDecode;
1376 switch (td->td_photometric) {
1377 case PHOTOMETRIC_LOGLUV:
1378 if (!LogLuvInitState(tif))
1379 break;
1380 if (td->td_compression == COMPRESSION_SGILOG24) {
1381 tif->tif_decoderow = LogLuvDecode24;
1382 switch (sp->user_datafmt) {
1383 case SGILOGDATAFMT_FLOAT:
1384 sp->tfunc = Luv24toXYZ;
1385 break;
1386 case SGILOGDATAFMT_16BIT:
1387 sp->tfunc = Luv24toLuv48;
1388 break;
1389 case SGILOGDATAFMT_8BIT:
1390 sp->tfunc = Luv24toRGB;
1391 break;
1392 }
1393 } else {
1394 tif->tif_decoderow = LogLuvDecode32;
1395 switch (sp->user_datafmt) {
1396 case SGILOGDATAFMT_FLOAT:
1397 sp->tfunc = Luv32toXYZ;
1398 break;
1399 case SGILOGDATAFMT_16BIT:
1400 sp->tfunc = Luv32toLuv48;
1401 break;
1402 case SGILOGDATAFMT_8BIT:
1403 sp->tfunc = Luv32toRGB;
1404 break;
1405 }
1406 }
1407 return (1);
1408 case PHOTOMETRIC_LOGL:
1409 if (!LogL16InitState(tif))
1410 break;
1411 tif->tif_decoderow = LogL16Decode;
1412 switch (sp->user_datafmt) {
1413 case SGILOGDATAFMT_FLOAT:
1414 sp->tfunc = L16toY;
1415 break;
1416 case SGILOGDATAFMT_8BIT:
1417 sp->tfunc = L16toGry;
1418 break;
1419 }
1420 return (1);
1421 default:
1422 TIFFErrorExt(tif->tif_clientdata, module,
1423 "Inappropriate photometric interpretation %d for SGILog compression; %s",
1424 td->td_photometric, "must be either LogLUV or LogL");
1425 break;
1426 }
1427 return (0);
1428 }
1429
1430 static int
1431 LogLuvSetupEncode(TIFF* tif)
1432 {
1433 static const char module[] = "LogLuvSetupEncode";
1434 LogLuvState* sp = EncoderState(tif);
1435 TIFFDirectory* td = &tif->tif_dir;
1436
1437 switch (td->td_photometric) {
1438 case PHOTOMETRIC_LOGLUV:
1439 if (!LogLuvInitState(tif))
1440 break;
1441 if (td->td_compression == COMPRESSION_SGILOG24) {
1442 tif->tif_encoderow = LogLuvEncode24;
1443 switch (sp->user_datafmt) {
1444 case SGILOGDATAFMT_FLOAT:
1445 sp->tfunc = Luv24fromXYZ;
1446 break;
1447 case SGILOGDATAFMT_16BIT:
1448 sp->tfunc = Luv24fromLuv48;
1449 break;
1450 case SGILOGDATAFMT_RAW:
1451 break;
1452 default:
1453 goto notsupported;
1454 }
1455 } else {
1456 tif->tif_encoderow = LogLuvEncode32;
1457 switch (sp->user_datafmt) {
1458 case SGILOGDATAFMT_FLOAT:
1459 sp->tfunc = Luv32fromXYZ;
1460 break;
1461 case SGILOGDATAFMT_16BIT:
1462 sp->tfunc = Luv32fromLuv48;
1463 break;
1464 case SGILOGDATAFMT_RAW:
1465 break;
1466 default:
1467 goto notsupported;
1468 }
1469 }
1470 break;
1471 case PHOTOMETRIC_LOGL:
1472 if (!LogL16InitState(tif))
1473 break;
1474 tif->tif_encoderow = LogL16Encode;
1475 switch (sp->user_datafmt) {
1476 case SGILOGDATAFMT_FLOAT:
1477 sp->tfunc = L16fromY;
1478 break;
1479 case SGILOGDATAFMT_16BIT:
1480 break;
1481 default:
1482 goto notsupported;
1483 }
1484 break;
1485 default:
1486 TIFFErrorExt(tif->tif_clientdata, module,
1487 "Inappropriate photometric interpretation %d for SGILog compression; %s",
1488 td->td_photometric, "must be either LogLUV or LogL");
1489 break;
1490 }
1491 return (1);
1492 notsupported:
1493 TIFFErrorExt(tif->tif_clientdata, module,
1494 "SGILog compression supported only for %s, or raw data",
1495 td->td_photometric == PHOTOMETRIC_LOGL ? "Y, L" : "XYZ, Luv");
1496 return (0);
1497 }
1498
1499 static void
1500 LogLuvClose(TIFF* tif)
1501 {
1502 TIFFDirectory *td = &tif->tif_dir;
1503
1504 /*
1505 * For consistency, we always want to write out the same
1506 * bitspersample and sampleformat for our TIFF file,
1507 * regardless of the data format being used by the application.
1508 * Since this routine is called after tags have been set but
1509 * before they have been recorded in the file, we reset them here.
1510 */
1511 td->td_samplesperpixel =
1512 (td->td_photometric == PHOTOMETRIC_LOGL) ? 1 : 3;
1513 td->td_bitspersample = 16;
1514 td->td_sampleformat = SAMPLEFORMAT_INT;
1515 }
1516
1517 static void
1518 LogLuvCleanup(TIFF* tif)
1519 {
1520 LogLuvState* sp = (LogLuvState *)tif->tif_data;
1521
1522 assert(sp != 0);
1523
1524 tif->tif_tagmethods.vgetfield = sp->vgetparent;
1525 tif->tif_tagmethods.vsetfield = sp->vsetparent;
1526
1527 if (sp->tbuf)
1528 _TIFFfree(sp->tbuf);
1529 _TIFFfree(sp);
1530 tif->tif_data = NULL;
1531
1532 _TIFFSetDefaultCompressionState(tif);
1533 }
1534
1535 static int
1536 LogLuvVSetField(TIFF* tif, uint32 tag, va_list ap)
1537 {
1538 static const char module[] = "LogLuvVSetField";
1539 LogLuvState* sp = DecoderState(tif);
1540 int bps, fmt;
1541
1542 switch (tag) {
1543 case TIFFTAG_SGILOGDATAFMT:
1544 sp->user_datafmt = (int) va_arg(ap, int);
1545 /*
1546 * Tweak the TIFF header so that the rest of libtiff knows what
1547 * size of data will be passed between app and library, and
1548 * assume that the app knows what it is doing and is not
1549 * confused by these header manipulations...
1550 */
1551 switch (sp->user_datafmt) {
1552 case SGILOGDATAFMT_FLOAT:
1553 bps = 32, fmt = SAMPLEFORMAT_IEEEFP;
1554 break;
1555 case SGILOGDATAFMT_16BIT:
1556 bps = 16, fmt = SAMPLEFORMAT_INT;
1557 break;
1558 case SGILOGDATAFMT_RAW:
1559 bps = 32, fmt = SAMPLEFORMAT_UINT;
1560 TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, 1);
1561 break;
1562 case SGILOGDATAFMT_8BIT:
1563 bps = 8, fmt = SAMPLEFORMAT_UINT;
1564 break;
1565 default:
1566 TIFFErrorExt(tif->tif_clientdata, tif->tif_name,
1567 "Unknown data format %d for LogLuv compression",
1568 sp->user_datafmt);
1569 return (0);
1570 }
1571 TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, bps);
1572 TIFFSetField(tif, TIFFTAG_SAMPLEFORMAT, fmt);
1573 /*
1574 * Must recalculate sizes should bits/sample change.
1575 */
1576 tif->tif_tilesize = isTiled(tif) ? TIFFTileSize(tif) : (tmsize_t) -1;
1577 tif->tif_scanlinesize = TIFFScanlineSize(tif);
1578 return (1);
1579 case TIFFTAG_SGILOGENCODE:
1580 sp->encode_meth = (int) va_arg(ap, int);
1581 if (sp->encode_meth != SGILOGENCODE_NODITHER &&
1582 sp->encode_meth != SGILOGENCODE_RANDITHER) {
1583 TIFFErrorExt(tif->tif_clientdata, module,
1584 "Unknown encoding %d for LogLuv compression",
1585 sp->encode_meth);
1586 return (0);
1587 }
1588 return (1);
1589 default:
1590 return (*sp->vsetparent)(tif, tag, ap);
1591 }
1592 }
1593
1594 static int
1595 LogLuvVGetField(TIFF* tif, uint32 tag, va_list ap)
1596 {
1597 LogLuvState *sp = (LogLuvState *)tif->tif_data;
1598
1599 switch (tag) {
1600 case TIFFTAG_SGILOGDATAFMT:
1601 *va_arg(ap, int*) = sp->user_datafmt;
1602 return (1);
1603 default:
1604 return (*sp->vgetparent)(tif, tag, ap);
1605 }
1606 }
1607
1608 static const TIFFField LogLuvFields[] = {
1609 { TIFFTAG_SGILOGDATAFMT, 0, 0, TIFF_SHORT, 0, TIFF_SETGET_INT, TIFF_SETGET_UNDEFINED, FIELD_PSEUDO, TRUE, FALSE, "SGILogDataFmt", NULL},
1610 { TIFFTAG_SGILOGENCODE, 0, 0, TIFF_SHORT, 0, TIFF_SETGET_INT, TIFF_SETGET_UNDEFINED, FIELD_PSEUDO, TRUE, FALSE, "SGILogEncode", NULL}
1611 };
1612
1613 int
1614 TIFFInitSGILog(TIFF* tif, int scheme)
1615 {
1616 static const char module[] = "TIFFInitSGILog";
1617 LogLuvState* sp;
1618
1619 assert(scheme == COMPRESSION_SGILOG24 || scheme == COMPRESSION_SGILOG);
1620
1621 /*
1622 * Merge codec-specific tag information.
1623 */
1624 if (!_TIFFMergeFields(tif, LogLuvFields,
1625 TIFFArrayCount(LogLuvFields))) {
1626 TIFFErrorExt(tif->tif_clientdata, module,
1627 "Merging SGILog codec-specific tags failed");
1628 return 0;
1629 }
1630
1631 /*
1632 * Allocate state block so tag methods have storage to record values.
1633 */
1634 tif->tif_data = (uint8*) _TIFFmalloc(sizeof (LogLuvState));
1635 if (tif->tif_data == NULL)
1636 goto bad;
1637 sp = (LogLuvState*) tif->tif_data;
1638 _TIFFmemset((void*)sp, 0, sizeof (*sp));
1639 sp->user_datafmt = SGILOGDATAFMT_UNKNOWN;
1640 sp->encode_meth = (scheme == COMPRESSION_SGILOG24) ?
1641 SGILOGENCODE_RANDITHER : SGILOGENCODE_NODITHER;
1642 sp->tfunc = _logLuvNop;
1643
1644 /*
1645 * Install codec methods.
1646 * NB: tif_decoderow & tif_encoderow are filled
1647 * in at setup time.
1648 */
1649 tif->tif_fixuptags = LogLuvFixupTags;
1650 tif->tif_setupdecode = LogLuvSetupDecode;
1651 tif->tif_decodestrip = LogLuvDecodeStrip;
1652 tif->tif_decodetile = LogLuvDecodeTile;
1653 tif->tif_setupencode = LogLuvSetupEncode;
1654 tif->tif_encodestrip = LogLuvEncodeStrip;
1655 tif->tif_encodetile = LogLuvEncodeTile;
1656 tif->tif_close = LogLuvClose;
1657 tif->tif_cleanup = LogLuvCleanup;
1658
1659 /*
1660 * Override parent get/set field methods.
1661 */
1662 sp->vgetparent = tif->tif_tagmethods.vgetfield;
1663 tif->tif_tagmethods.vgetfield = LogLuvVGetField; /* hook for codec tags */
1664 sp->vsetparent = tif->tif_tagmethods.vsetfield;
1665 tif->tif_tagmethods.vsetfield = LogLuvVSetField; /* hook for codec tags */
1666
1667 return (1);
1668 bad:
1669 TIFFErrorExt(tif->tif_clientdata, module,
1670 "%s: No space for LogLuv state block", tif->tif_name);
1671 return (0);
1672 }
1673 #endif /* LOGLUV_SUPPORT */
1674
1675 /* vim: set ts=8 sts=8 sw=8 noet: */
1676 /*
1677 * Local Variables:
1678 * mode: c
1679 * c-basic-offset: 8
1680 * fill-column: 78
1681 * End:
1682 */