4 * Copyright (c) 1997 Greg Ward Larson
5 * Copyright (c) 1997 Silicon Graphics, Inc.
7 * Permission to use, copy, modify, distribute, and sell this software and
8 * its documentation for any purpose is hereby granted without fee, provided
9 * that (i) the above copyright notices and this permission notice appear in
10 * all copies of the software and related documentation, and (ii) the names of
11 * Sam Leffler, Greg Larson and Silicon Graphics may not be used in any
12 * advertising or publicity relating to the software without the specific,
13 * prior written permission of Sam Leffler, Greg Larson and Silicon Graphics.
15 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
17 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
19 * IN NO EVENT SHALL SAM LEFFLER, GREG LARSON OR SILICON GRAPHICS BE LIABLE
20 * FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
21 * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
22 * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
23 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
32 * LogLuv compression support for high dynamic range images.
34 * Contributed by Greg Larson.
36 * LogLuv image support uses the TIFF library to store 16 or 10-bit
37 * log luminance values with 8 bits each of u and v or a 14-bit index.
39 * The codec can take as input and produce as output 32-bit IEEE float values
40 * as well as 16-bit integer values. A 16-bit luminance is interpreted
41 * as a sign bit followed by a 15-bit integer that is converted
42 * to and from a linear magnitude using the transformation:
44 * L = 2^( (Le+.5)/256 - 64 ) # real from 15-bit
46 * Le = floor( 256*(log2(L) + 64) ) # 15-bit from real
48 * The actual conversion to world luminance units in candelas per sq. meter
49 * requires an additional multiplier, which is stored in the TIFFTAG_STONITS.
50 * This value is usually set such that a reasonable exposure comes from
51 * clamping decoded luminances above 1 to 1 in the displayed image.
53 * The 16-bit values for u and v may be converted to real values by dividing
54 * each by 32768. (This allows for negative values, which aren't useful as
55 * far as we know, but are left in case of future improvements in human
58 * Conversion from (u,v), which is actually the CIE (u',v') system for
59 * you color scientists, is accomplished by the following transformation:
61 * u = 4*x / (-2*x + 12*y + 3)
62 * v = 9*y / (-2*x + 12*y + 3)
64 * x = 9*u / (6*u - 16*v + 12)
65 * y = 4*v / (6*u - 16*v + 12)
67 * This process is greatly simplified by passing 32-bit IEEE floats
68 * for each of three CIE XYZ coordinates. The codec then takes care
69 * of conversion to and from LogLuv, though the application is still
70 * responsible for interpreting the TIFFTAG_STONITS calibration factor.
72 * By definition, a CIE XYZ vector of [1 1 1] corresponds to a neutral white
73 * point of (x,y)=(1/3,1/3). However, most color systems assume some other
74 * white point, such as D65, and an absolute color conversion to XYZ then
75 * to another color space with a different white point may introduce an
76 * unwanted color cast to the image. It is often desirable, therefore, to
77 * perform a white point conversion that maps the input white to [1 1 1]
78 * in XYZ, then record the original white point using the TIFFTAG_WHITEPOINT
79 * tag value. A decoder that demands absolute color calibration may use
80 * this white point tag to get back the original colors, but usually it
81 * will be ignored and the new white point will be used instead that
82 * matches the output color space.
84 * Pixel information is compressed into one of two basic encodings, depending
85 * on the setting of the compression tag, which is one of COMPRESSION_SGILOG
86 * or COMPRESSION_SGILOG24. For COMPRESSION_SGILOG, greyscale data is
92 * COMPRESSION_SGILOG color data is stored as:
95 * |-+---------------|--------+--------|
98 * For the 24-bit COMPRESSION_SGILOG24 color format, the data is stored as:
101 * |----------|--------------|
104 * There is no sign bit in the 24-bit case, and the (u,v) chromaticity is
105 * encoded as an index for optimal color resolution. The 10 log bits are
106 * defined by the following conversions:
108 * L = 2^((Le'+.5)/64 - 12) # real from 10-bit
110 * Le' = floor( 64*(log2(L) + 12) ) # 10-bit from real
112 * The 10 bits of the smaller format may be converted into the 15 bits of
113 * the larger format by multiplying by 4 and adding 13314. Obviously,
114 * a smaller range of magnitudes is covered (about 5 orders of magnitude
115 * instead of 38), and the lack of a sign bit means that negative luminances
116 * are not allowed. (Well, they aren't allowed in the real world, either,
117 * but they are useful for certain types of image processing.)
119 * The desired user format is controlled by the setting the internal
120 * pseudo tag TIFFTAG_SGILOGDATAFMT to one of:
121 * SGILOGDATAFMT_FLOAT = IEEE 32-bit float XYZ values
122 * SGILOGDATAFMT_16BIT = 16-bit integer encodings of logL, u and v
123 * Raw data i/o is also possible using:
124 * SGILOGDATAFMT_RAW = 32-bit unsigned integer with encoded pixel
125 * In addition, the following decoding is provided for ease of display:
126 * SGILOGDATAFMT_8BIT = 8-bit default RGB gamma-corrected values
128 * For grayscale images, we provide the following data formats:
129 * SGILOGDATAFMT_FLOAT = IEEE 32-bit float Y values
130 * SGILOGDATAFMT_16BIT = 16-bit integer w/ encoded luminance
131 * SGILOGDATAFMT_8BIT = 8-bit gray monitor values
133 * Note that the COMPRESSION_SGILOG applies a simple run-length encoding
134 * scheme by separating the logL, u and v bytes for each row and applying
135 * a PackBits type of compression. Since the 24-bit encoding is not
136 * adaptive, the 32-bit color format takes less space in many cases.
138 * Further control is provided over the conversion from higher-resolution
139 * formats to final encoded values through the pseudo tag
140 * TIFFTAG_SGILOGENCODE:
141 * SGILOGENCODE_NODITHER = do not dither encoded values
142 * SGILOGENCODE_RANDITHER = apply random dithering during encoding
144 * The default value of this tag is SGILOGENCODE_NODITHER for
145 * COMPRESSION_SGILOG to maximize run-length encoding and
146 * SGILOGENCODE_RANDITHER for COMPRESSION_SGILOG24 to turn
147 * quantization errors into noise.
155 * State block for each open TIFF
156 * file using LogLuv compression/decompression.
158 typedef struct logLuvState LogLuvState
;
161 int user_datafmt
; /* user data format */
162 int encode_meth
; /* encoding method */
163 int pixel_size
; /* bytes per pixel */
165 uint8
* tbuf
; /* translation buffer */
166 tmsize_t tbuflen
; /* buffer length */
167 void (*tfunc
)(LogLuvState
*, uint8
*, tmsize_t
);
169 TIFFVSetMethod vgetparent
; /* super-class method */
170 TIFFVSetMethod vsetparent
; /* super-class method */
173 #define DecoderState(tif) ((LogLuvState*) (tif)->tif_data)
174 #define EncoderState(tif) ((LogLuvState*) (tif)->tif_data)
176 #define SGILOGDATAFMT_UNKNOWN -1
178 #define MINRUN 4 /* minimum run length */
181 * Decode a string of 16-bit gray pixels.
184 LogL16Decode(TIFF
* tif
, uint8
* op
, tmsize_t occ
, uint16 s
)
186 static const char module[] = "LogL16Decode";
187 LogLuvState
* sp
= DecoderState(tif
);
200 npixels
= occ
/ sp
->pixel_size
;
202 if (sp
->user_datafmt
== SGILOGDATAFMT_16BIT
)
205 assert(sp
->tbuflen
>= npixels
);
206 tp
= (int16
*) sp
->tbuf
;
208 _TIFFmemset((void*) tp
, 0, npixels
*sizeof (tp
[0]));
210 bp
= (unsigned char*) tif
->tif_rawcp
;
212 /* get each byte string */
213 for (shft
= 2*8; (shft
-= 8) >= 0; ) {
214 for (i
= 0; i
< npixels
&& cc
> 0; )
215 if (*bp
>= 128) { /* run */
216 rc
= *bp
++ + (2-128); /* TODO: potential input buffer overrun when decoding corrupt or truncated data */
217 b
= (int16
)(*bp
++ << shft
);
219 while (rc
-- && i
< npixels
)
221 } else { /* non-run */
222 rc
= *bp
++; /* nul is noop */
223 while (--cc
&& rc
-- && i
< npixels
)
224 tp
[i
++] |= (int16
)*bp
++ << shft
;
227 #if defined(__WIN32__) && (defined(_MSC_VER) || defined(__MINGW32__))
228 TIFFErrorExt(tif
->tif_clientdata
, module,
229 "Not enough data at row %lu (short %I64d pixels)",
230 (unsigned long) tif
->tif_row
,
231 (unsigned __int64
) (npixels
- i
));
233 TIFFErrorExt(tif
->tif_clientdata
, module,
234 "Not enough data at row %lu (short %llu pixels)",
235 (unsigned long) tif
->tif_row
,
236 (unsigned long long) (npixels
- i
));
238 tif
->tif_rawcp
= (uint8
*) bp
;
243 (*sp
->tfunc
)(sp
, op
, npixels
);
244 tif
->tif_rawcp
= (uint8
*) bp
;
250 * Decode a string of 24-bit pixels.
253 LogLuvDecode24(TIFF
* tif
, uint8
* op
, tmsize_t occ
, uint16 s
)
255 static const char module[] = "LogLuvDecode24";
256 LogLuvState
* sp
= DecoderState(tif
);
266 npixels
= occ
/ sp
->pixel_size
;
268 if (sp
->user_datafmt
== SGILOGDATAFMT_RAW
)
271 assert(sp
->tbuflen
>= npixels
);
272 tp
= (uint32
*) sp
->tbuf
;
274 /* copy to array of uint32 */
275 bp
= (unsigned char*) tif
->tif_rawcp
;
277 for (i
= 0; i
< npixels
&& cc
> 0; i
++) {
278 tp
[i
] = bp
[0] << 16 | bp
[1] << 8 | bp
[2];
282 tif
->tif_rawcp
= (uint8
*) bp
;
285 #if defined(__WIN32__) && (defined(_MSC_VER) || defined(__MINGW32__))
286 TIFFErrorExt(tif
->tif_clientdata
, module,
287 "Not enough data at row %lu (short %I64d pixels)",
288 (unsigned long) tif
->tif_row
,
289 (unsigned __int64
) (npixels
- i
));
291 TIFFErrorExt(tif
->tif_clientdata
, module,
292 "Not enough data at row %lu (short %llu pixels)",
293 (unsigned long) tif
->tif_row
,
294 (unsigned long long) (npixels
- i
));
298 (*sp
->tfunc
)(sp
, op
, npixels
);
303 * Decode a string of 32-bit pixels.
306 LogLuvDecode32(TIFF
* tif
, uint8
* op
, tmsize_t occ
, uint16 s
)
308 static const char module[] = "LogLuvDecode32";
320 sp
= DecoderState(tif
);
323 npixels
= occ
/ sp
->pixel_size
;
325 if (sp
->user_datafmt
== SGILOGDATAFMT_RAW
)
328 assert(sp
->tbuflen
>= npixels
);
329 tp
= (uint32
*) sp
->tbuf
;
331 _TIFFmemset((void*) tp
, 0, npixels
*sizeof (tp
[0]));
333 bp
= (unsigned char*) tif
->tif_rawcp
;
335 /* get each byte string */
336 for (shft
= 4*8; (shft
-= 8) >= 0; ) {
337 for (i
= 0; i
< npixels
&& cc
> 0; )
338 if (*bp
>= 128) { /* run */
339 rc
= *bp
++ + (2-128);
340 b
= (uint32
)*bp
++ << shft
;
341 cc
-= 2; /* TODO: potential input buffer overrun when decoding corrupt or truncated data */
342 while (rc
-- && i
< npixels
)
344 } else { /* non-run */
345 rc
= *bp
++; /* nul is noop */
346 while (--cc
&& rc
-- && i
< npixels
)
347 tp
[i
++] |= (uint32
)*bp
++ << shft
;
350 #if defined(__WIN32__) && (defined(_MSC_VER) || defined(__MINGW32__))
351 TIFFErrorExt(tif
->tif_clientdata
, module,
352 "Not enough data at row %lu (short %I64d pixels)",
353 (unsigned long) tif
->tif_row
,
354 (unsigned __int64
) (npixels
- i
));
356 TIFFErrorExt(tif
->tif_clientdata
, module,
357 "Not enough data at row %lu (short %llu pixels)",
358 (unsigned long) tif
->tif_row
,
359 (unsigned long long) (npixels
- i
));
361 tif
->tif_rawcp
= (uint8
*) bp
;
366 (*sp
->tfunc
)(sp
, op
, npixels
);
367 tif
->tif_rawcp
= (uint8
*) bp
;
373 * Decode a strip of pixels. We break it into rows to
374 * maintain synchrony with the encode algorithm, which
378 LogLuvDecodeStrip(TIFF
* tif
, uint8
* bp
, tmsize_t cc
, uint16 s
)
380 tmsize_t rowlen
= TIFFScanlineSize(tif
);
382 assert(cc%rowlen
== 0);
383 while (cc
&& (*tif
->tif_decoderow
)(tif
, bp
, rowlen
, s
))
384 bp
+= rowlen
, cc
-= rowlen
;
389 * Decode a tile of pixels. We break it into rows to
390 * maintain synchrony with the encode algorithm, which
394 LogLuvDecodeTile(TIFF
* tif
, uint8
* bp
, tmsize_t cc
, uint16 s
)
396 tmsize_t rowlen
= TIFFTileRowSize(tif
);
398 assert(cc%rowlen
== 0);
399 while (cc
&& (*tif
->tif_decoderow
)(tif
, bp
, rowlen
, s
))
400 bp
+= rowlen
, cc
-= rowlen
;
405 * Encode a row of 16-bit pixels.
408 LogL16Encode(TIFF
* tif
, uint8
* bp
, tmsize_t cc
, uint16 s
)
410 LogLuvState
* sp
= EncoderState(tif
);
424 npixels
= cc
/ sp
->pixel_size
;
426 if (sp
->user_datafmt
== SGILOGDATAFMT_16BIT
)
429 tp
= (int16
*) sp
->tbuf
;
430 assert(sp
->tbuflen
>= npixels
);
431 (*sp
->tfunc
)(sp
, bp
, npixels
);
433 /* compress each byte string */
435 occ
= tif
->tif_rawdatasize
- tif
->tif_rawcc
;
436 for (shft
= 2*8; (shft
-= 8) >= 0; )
437 for (i
= 0; i
< npixels
; i
+= rc
) {
440 tif
->tif_rawcc
= tif
->tif_rawdatasize
- occ
;
441 if (!TIFFFlushData1(tif
))
444 occ
= tif
->tif_rawdatasize
- tif
->tif_rawcc
;
446 mask
= 0xff << shft
; /* find next run */
447 for (beg
= i
; beg
< npixels
; beg
+= rc
) {
448 b
= (int16
) (tp
[beg
] & mask
);
450 while (rc
< 127+2 && beg
+rc
< npixels
&&
451 (tp
[beg
+rc
] & mask
) == b
)
454 break; /* long enough */
456 if (beg
-i
> 1 && beg
-i
< MINRUN
) {
457 b
= (int16
) (tp
[i
] & mask
);/*check short run */
459 while ((tp
[j
++] & mask
) == b
)
461 *op
++ = (uint8
)(128-2+j
-i
);
462 *op
++ = (uint8
)(b
>> shft
);
468 while (i
< beg
) { /* write out non-run */
469 if ((j
= beg
-i
) > 127) j
= 127;
472 tif
->tif_rawcc
= tif
->tif_rawdatasize
- occ
;
473 if (!TIFFFlushData1(tif
))
476 occ
= tif
->tif_rawdatasize
- tif
->tif_rawcc
;
478 *op
++ = (uint8
) j
; occ
--;
480 *op
++ = (uint8
) (tp
[i
++] >> shft
& 0xff);
484 if (rc
>= MINRUN
) { /* write out run */
485 *op
++ = (uint8
) (128-2+rc
);
486 *op
++ = (uint8
) (tp
[beg
] >> shft
& 0xff);
492 tif
->tif_rawcc
= tif
->tif_rawdatasize
- occ
;
498 * Encode a row of 24-bit pixels.
501 LogLuvEncode24(TIFF
* tif
, uint8
* bp
, tmsize_t cc
, uint16 s
)
503 LogLuvState
* sp
= EncoderState(tif
);
512 npixels
= cc
/ sp
->pixel_size
;
514 if (sp
->user_datafmt
== SGILOGDATAFMT_RAW
)
517 tp
= (uint32
*) sp
->tbuf
;
518 assert(sp
->tbuflen
>= npixels
);
519 (*sp
->tfunc
)(sp
, bp
, npixels
);
521 /* write out encoded pixels */
523 occ
= tif
->tif_rawdatasize
- tif
->tif_rawcc
;
524 for (i
= npixels
; i
--; ) {
527 tif
->tif_rawcc
= tif
->tif_rawdatasize
- occ
;
528 if (!TIFFFlushData1(tif
))
531 occ
= tif
->tif_rawdatasize
- tif
->tif_rawcc
;
533 *op
++ = (uint8
)(*tp
>> 16);
534 *op
++ = (uint8
)(*tp
>> 8 & 0xff);
535 *op
++ = (uint8
)(*tp
++ & 0xff);
539 tif
->tif_rawcc
= tif
->tif_rawdatasize
- occ
;
545 * Encode a row of 32-bit pixels.
548 LogLuvEncode32(TIFF
* tif
, uint8
* bp
, tmsize_t cc
, uint16 s
)
550 LogLuvState
* sp
= EncoderState(tif
);
565 npixels
= cc
/ sp
->pixel_size
;
567 if (sp
->user_datafmt
== SGILOGDATAFMT_RAW
)
570 tp
= (uint32
*) sp
->tbuf
;
571 assert(sp
->tbuflen
>= npixels
);
572 (*sp
->tfunc
)(sp
, bp
, npixels
);
574 /* compress each byte string */
576 occ
= tif
->tif_rawdatasize
- tif
->tif_rawcc
;
577 for (shft
= 4*8; (shft
-= 8) >= 0; )
578 for (i
= 0; i
< npixels
; i
+= rc
) {
581 tif
->tif_rawcc
= tif
->tif_rawdatasize
- occ
;
582 if (!TIFFFlushData1(tif
))
585 occ
= tif
->tif_rawdatasize
- tif
->tif_rawcc
;
587 mask
= 0xff << shft
; /* find next run */
588 for (beg
= i
; beg
< npixels
; beg
+= rc
) {
591 while (rc
< 127+2 && beg
+rc
< npixels
&&
592 (tp
[beg
+rc
] & mask
) == b
)
595 break; /* long enough */
597 if (beg
-i
> 1 && beg
-i
< MINRUN
) {
598 b
= tp
[i
] & mask
; /* check short run */
600 while ((tp
[j
++] & mask
) == b
)
602 *op
++ = (uint8
)(128-2+j
-i
);
603 *op
++ = (uint8
)(b
>> shft
);
609 while (i
< beg
) { /* write out non-run */
610 if ((j
= beg
-i
) > 127) j
= 127;
613 tif
->tif_rawcc
= tif
->tif_rawdatasize
- occ
;
614 if (!TIFFFlushData1(tif
))
617 occ
= tif
->tif_rawdatasize
- tif
->tif_rawcc
;
619 *op
++ = (uint8
) j
; occ
--;
621 *op
++ = (uint8
)(tp
[i
++] >> shft
& 0xff);
625 if (rc
>= MINRUN
) { /* write out run */
626 *op
++ = (uint8
) (128-2+rc
);
627 *op
++ = (uint8
)(tp
[beg
] >> shft
& 0xff);
633 tif
->tif_rawcc
= tif
->tif_rawdatasize
- occ
;
639 * Encode a strip of pixels. We break it into rows to
640 * avoid encoding runs across row boundaries.
643 LogLuvEncodeStrip(TIFF
* tif
, uint8
* bp
, tmsize_t cc
, uint16 s
)
645 tmsize_t rowlen
= TIFFScanlineSize(tif
);
647 assert(cc%rowlen
== 0);
648 while (cc
&& (*tif
->tif_encoderow
)(tif
, bp
, rowlen
, s
) == 1)
649 bp
+= rowlen
, cc
-= rowlen
;
654 * Encode a tile of pixels. We break it into rows to
655 * avoid encoding runs across row boundaries.
658 LogLuvEncodeTile(TIFF
* tif
, uint8
* bp
, tmsize_t cc
, uint16 s
)
660 tmsize_t rowlen
= TIFFTileRowSize(tif
);
662 assert(cc%rowlen
== 0);
663 while (cc
&& (*tif
->tif_encoderow
)(tif
, bp
, rowlen
, s
) == 1)
664 bp
+= rowlen
, cc
-= rowlen
;
669 * Encode/Decode functions for converting to and from user formats.
675 #define U_NEU 0.210526316
676 #define V_NEU 0.473684211
681 #define M_LN2 0.69314718055994530942
684 #define M_PI 3.14159265358979323846
686 #define log2(x) ((1./M_LN2)*log(x))
687 #define exp2(x) exp(M_LN2*(x))
689 #define itrunc(x,m) ((m)==SGILOGENCODE_NODITHER ? \
691 (int)((x) + rand()*(1./RAND_MAX) - .5))
697 LogL16toY(int p16
) /* compute luminance from 16-bit LogL */
699 int Le
= p16
& 0x7fff;
704 Y
= exp(M_LN2
/256.*(Le
+.5) - M_LN2
*64.);
705 return (!(p16
& 0x8000) ? Y
: -Y
);
712 LogL16fromY(double Y
, int em
) /* get 16-bit LogL from Y */
714 if (Y
>= 1.8371976e19
)
716 if (Y
<= -1.8371976e19
)
718 if (Y
> 5.4136769e-20)
719 return itrunc(256.*(log2(Y
) + 64.), em
);
720 if (Y
< -5.4136769e-20)
721 return (~0x7fff | itrunc(256.*(log2(-Y
) + 64.), em
));
726 L16toY(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
728 int16
* l16
= (int16
*) sp
->tbuf
;
729 float* yp
= (float*) op
;
732 *yp
++ = (float)LogL16toY(*l16
++);
736 L16toGry(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
738 int16
* l16
= (int16
*) sp
->tbuf
;
739 uint8
* gp
= (uint8
*) op
;
742 double Y
= LogL16toY(*l16
++);
743 *gp
++ = (uint8
) ((Y
<= 0.) ? 0 : (Y
>= 1.) ? 255 : (int)(256.*sqrt(Y
)));
748 L16fromY(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
750 int16
* l16
= (int16
*) sp
->tbuf
;
751 float* yp
= (float*) op
;
754 *l16
++ = (int16
) (LogL16fromY(*yp
++, sp
->encode_meth
));
761 XYZtoRGB24(float xyz
[3], uint8 rgb
[3])
764 /* assume CCIR-709 primaries */
765 r
= 2.690*xyz
[0] + -1.276*xyz
[1] + -0.414*xyz
[2];
766 g
= -1.022*xyz
[0] + 1.978*xyz
[1] + 0.044*xyz
[2];
767 b
= 0.061*xyz
[0] + -0.224*xyz
[1] + 1.163*xyz
[2];
768 /* assume 2.0 gamma for speed */
769 /* could use integer sqrt approx., but this is probably faster */
770 rgb
[0] = (uint8
)((r
<=0.) ? 0 : (r
>= 1.) ? 255 : (int)(256.*sqrt(r
)));
771 rgb
[1] = (uint8
)((g
<=0.) ? 0 : (g
>= 1.) ? 255 : (int)(256.*sqrt(g
)));
772 rgb
[2] = (uint8
)((b
<=0.) ? 0 : (b
>= 1.) ? 255 : (int)(256.*sqrt(b
)));
779 LogL10toY(int p10
) /* compute luminance from 10-bit LogL */
783 return (exp(M_LN2
/64.*(p10
+.5) - M_LN2
*12.));
790 LogL10fromY(double Y
, int em
) /* get 10-bit LogL from Y */
794 else if (Y
<= .00024283)
797 return itrunc(64.*(log2(Y
) + 12.), em
);
801 #define uv2ang(u, v) ( (NANGLES*.499999999/M_PI) \
802 * atan2((v)-V_NEU,(u)-U_NEU) + .5*NANGLES )
805 oog_encode(double u
, double v
) /* encode out-of-gamut chroma */
807 static int oog_table
[NANGLES
];
808 static int initialized
= 0;
811 if (!initialized
) { /* set up perimeter table */
812 double eps
[NANGLES
], ua
, va
, ang
, epsa
;
814 for (i
= NANGLES
; i
--; )
816 for (vi
= UV_NVS
; vi
--; ) {
817 va
= UV_VSTART
+ (vi
+.5)*UV_SQSIZ
;
818 ustep
= uv_row
[vi
].nus
-1;
819 if (vi
== UV_NVS
-1 || vi
== 0 || ustep
<= 0)
821 for (ui
= uv_row
[vi
].nus
-1; ui
>= 0; ui
-= ustep
) {
822 ua
= uv_row
[vi
].ustart
+ (ui
+.5)*UV_SQSIZ
;
823 ang
= uv2ang(ua
, va
);
825 epsa
= fabs(ang
- (i
+.5));
827 oog_table
[i
] = uv_row
[vi
].ncum
+ ui
;
832 for (i
= NANGLES
; i
--; ) /* fill any holes */
835 for (i1
= 1; i1
< NANGLES
/2; i1
++)
836 if (eps
[(i
+i1
)%NANGLES
] < 1.5)
838 for (i2
= 1; i2
< NANGLES
/2; i2
++)
839 if (eps
[(i
+NANGLES
-i2
)%NANGLES
] < 1.5)
843 oog_table
[(i
+i1
)%NANGLES
];
846 oog_table
[(i
+NANGLES
-i2
)%NANGLES
];
850 i
= (int) uv2ang(u
, v
); /* look up hue angle */
851 return (oog_table
[i
]);
861 uv_encode(double u
, double v
, int em
) /* encode (u',v') coordinates */
866 return oog_encode(u
, v
);
867 vi
= itrunc((v
- UV_VSTART
)*(1./UV_SQSIZ
), em
);
869 return oog_encode(u
, v
);
870 if (u
< uv_row
[vi
].ustart
)
871 return oog_encode(u
, v
);
872 ui
= itrunc((u
- uv_row
[vi
].ustart
)*(1./UV_SQSIZ
), em
);
873 if (ui
>= uv_row
[vi
].nus
)
874 return oog_encode(u
, v
);
876 return (uv_row
[vi
].ncum
+ ui
);
883 uv_decode(double *up
, double *vp
, int c
) /* decode (u',v') index */
888 if (c
< 0 || c
>= UV_NDIVS
)
890 lower
= 0; /* binary search */
892 while (upper
- lower
> 1) {
893 vi
= (lower
+ upper
) >> 1;
894 ui
= c
- uv_row
[vi
].ncum
;
905 ui
= c
- uv_row
[vi
].ncum
;
906 *up
= uv_row
[vi
].ustart
+ (ui
+.5)*UV_SQSIZ
;
907 *vp
= UV_VSTART
+ (vi
+.5)*UV_SQSIZ
;
915 LogLuv24toXYZ(uint32 p
, float XYZ
[3])
918 double L
, u
, v
, s
, x
, y
;
919 /* decode luminance */
920 L
= LogL10toY(p
>>14 & 0x3ff);
922 XYZ
[0] = XYZ
[1] = XYZ
[2] = 0.;
927 if (uv_decode(&u
, &v
, Ce
) < 0) {
928 u
= U_NEU
; v
= V_NEU
;
930 s
= 1./(6.*u
- 16.*v
+ 12.);
934 XYZ
[0] = (float)(x
/y
* L
);
936 XYZ
[2] = (float)((1.-x
-y
)/y
* L
);
943 LogLuv24fromXYZ(float XYZ
[3], int em
)
947 /* encode luminance */
948 Le
= LogL10fromY(XYZ
[1], em
);
950 s
= XYZ
[0] + 15.*XYZ
[1] + 3.*XYZ
[2];
951 if (!Le
|| s
<= 0.) {
958 Ce
= uv_encode(u
, v
, em
);
959 if (Ce
< 0) /* never happens */
960 Ce
= uv_encode(U_NEU
, V_NEU
, SGILOGENCODE_NODITHER
);
961 /* combine encodings */
962 return (Le
<< 14 | Ce
);
966 Luv24toXYZ(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
968 uint32
* luv
= (uint32
*) sp
->tbuf
;
969 float* xyz
= (float*) op
;
972 LogLuv24toXYZ(*luv
, xyz
);
979 Luv24toLuv48(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
981 uint32
* luv
= (uint32
*) sp
->tbuf
;
982 int16
* luv3
= (int16
*) op
;
987 *luv3
++ = (int16
)((*luv
>> 12 & 0xffd) + 13314);
988 if (uv_decode(&u
, &v
, *luv
&0x3fff) < 0) {
992 *luv3
++ = (int16
)(u
* (1L<<15));
993 *luv3
++ = (int16
)(v
* (1L<<15));
999 Luv24toRGB(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
1001 uint32
* luv
= (uint32
*) sp
->tbuf
;
1002 uint8
* rgb
= (uint8
*) op
;
1007 LogLuv24toXYZ(*luv
++, xyz
);
1008 XYZtoRGB24(xyz
, rgb
);
1014 Luv24fromXYZ(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
1016 uint32
* luv
= (uint32
*) sp
->tbuf
;
1017 float* xyz
= (float*) op
;
1020 *luv
++ = LogLuv24fromXYZ(xyz
, sp
->encode_meth
);
1026 Luv24fromLuv48(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
1028 uint32
* luv
= (uint32
*) sp
->tbuf
;
1029 int16
* luv3
= (int16
*) op
;
1036 else if (luv3
[0] >= (1<<12)+3314)
1038 else if (sp
->encode_meth
== SGILOGENCODE_NODITHER
)
1039 Le
= (luv3
[0]-3314) >> 2;
1041 Le
= itrunc(.25*(luv3
[0]-3314.), sp
->encode_meth
);
1043 Ce
= uv_encode((luv3
[1]+.5)/(1<<15), (luv3
[2]+.5)/(1<<15),
1045 if (Ce
< 0) /* never happens */
1046 Ce
= uv_encode(U_NEU
, V_NEU
, SGILOGENCODE_NODITHER
);
1047 *luv
++ = (uint32
)Le
<< 14 | Ce
;
1056 LogLuv32toXYZ(uint32 p
, float XYZ
[3])
1058 double L
, u
, v
, s
, x
, y
;
1059 /* decode luminance */
1060 L
= LogL16toY((int)p
>> 16);
1062 XYZ
[0] = XYZ
[1] = XYZ
[2] = 0.;
1066 u
= 1./UVSCALE
* ((p
>>8 & 0xff) + .5);
1067 v
= 1./UVSCALE
* ((p
& 0xff) + .5);
1068 s
= 1./(6.*u
- 16.*v
+ 12.);
1071 /* convert to XYZ */
1072 XYZ
[0] = (float)(x
/y
* L
);
1074 XYZ
[2] = (float)((1.-x
-y
)/y
* L
);
1081 LogLuv32fromXYZ(float XYZ
[3], int em
)
1083 unsigned int Le
, ue
, ve
;
1085 /* encode luminance */
1086 Le
= (unsigned int)LogL16fromY(XYZ
[1], em
);
1088 s
= XYZ
[0] + 15.*XYZ
[1] + 3.*XYZ
[2];
1089 if (!Le
|| s
<= 0.) {
1096 if (u
<= 0.) ue
= 0;
1097 else ue
= itrunc(UVSCALE
*u
, em
);
1098 if (ue
> 255) ue
= 255;
1099 if (v
<= 0.) ve
= 0;
1100 else ve
= itrunc(UVSCALE
*v
, em
);
1101 if (ve
> 255) ve
= 255;
1102 /* combine encodings */
1103 return (Le
<< 16 | ue
<< 8 | ve
);
1107 Luv32toXYZ(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
1109 uint32
* luv
= (uint32
*) sp
->tbuf
;
1110 float* xyz
= (float*) op
;
1113 LogLuv32toXYZ(*luv
++, xyz
);
1119 Luv32toLuv48(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
1121 uint32
* luv
= (uint32
*) sp
->tbuf
;
1122 int16
* luv3
= (int16
*) op
;
1127 *luv3
++ = (int16
)(*luv
>> 16);
1128 u
= 1./UVSCALE
* ((*luv
>>8 & 0xff) + .5);
1129 v
= 1./UVSCALE
* ((*luv
& 0xff) + .5);
1130 *luv3
++ = (int16
)(u
* (1L<<15));
1131 *luv3
++ = (int16
)(v
* (1L<<15));
1137 Luv32toRGB(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
1139 uint32
* luv
= (uint32
*) sp
->tbuf
;
1140 uint8
* rgb
= (uint8
*) op
;
1145 LogLuv32toXYZ(*luv
++, xyz
);
1146 XYZtoRGB24(xyz
, rgb
);
1152 Luv32fromXYZ(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
1154 uint32
* luv
= (uint32
*) sp
->tbuf
;
1155 float* xyz
= (float*) op
;
1158 *luv
++ = LogLuv32fromXYZ(xyz
, sp
->encode_meth
);
1164 Luv32fromLuv48(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
1166 uint32
* luv
= (uint32
*) sp
->tbuf
;
1167 int16
* luv3
= (int16
*) op
;
1169 if (sp
->encode_meth
== SGILOGENCODE_NODITHER
) {
1171 *luv
++ = (uint32
)luv3
[0] << 16 |
1172 (luv3
[1]*(uint32
)(UVSCALE
+.5) >> 7 & 0xff00) |
1173 (luv3
[2]*(uint32
)(UVSCALE
+.5) >> 15 & 0xff);
1179 *luv
++ = (uint32
)luv3
[0] << 16 |
1180 (itrunc(luv3
[1]*(UVSCALE
/(1<<15)), sp
->encode_meth
) << 8 & 0xff00) |
1181 (itrunc(luv3
[2]*(UVSCALE
/(1<<15)), sp
->encode_meth
) & 0xff);
1187 _logLuvNop(LogLuvState
* sp
, uint8
* op
, tmsize_t n
)
1189 (void) sp
; (void) op
; (void) n
;
1193 LogL16GuessDataFmt(TIFFDirectory
*td
)
1195 #define PACK(s,b,f) (((b)<<6)|((s)<<3)|(f))
1196 switch (PACK(td
->td_samplesperpixel
, td
->td_bitspersample
, td
->td_sampleformat
)) {
1197 case PACK(1, 32, SAMPLEFORMAT_IEEEFP
):
1198 return (SGILOGDATAFMT_FLOAT
);
1199 case PACK(1, 16, SAMPLEFORMAT_VOID
):
1200 case PACK(1, 16, SAMPLEFORMAT_INT
):
1201 case PACK(1, 16, SAMPLEFORMAT_UINT
):
1202 return (SGILOGDATAFMT_16BIT
);
1203 case PACK(1, 8, SAMPLEFORMAT_VOID
):
1204 case PACK(1, 8, SAMPLEFORMAT_UINT
):
1205 return (SGILOGDATAFMT_8BIT
);
1208 return (SGILOGDATAFMT_UNKNOWN
);
1212 multiply_ms(tmsize_t m1
, tmsize_t m2
)
1214 tmsize_t bytes
= m1
* m2
;
1216 if (m1
&& bytes
/ m1
!= m2
)
1223 LogL16InitState(TIFF
* tif
)
1225 static const char module[] = "LogL16InitState";
1226 TIFFDirectory
*td
= &tif
->tif_dir
;
1227 LogLuvState
* sp
= DecoderState(tif
);
1230 assert(td
->td_photometric
== PHOTOMETRIC_LOGL
);
1232 /* for some reason, we can't do this in TIFFInitLogL16 */
1233 if (sp
->user_datafmt
== SGILOGDATAFMT_UNKNOWN
)
1234 sp
->user_datafmt
= LogL16GuessDataFmt(td
);
1235 switch (sp
->user_datafmt
) {
1236 case SGILOGDATAFMT_FLOAT
:
1237 sp
->pixel_size
= sizeof (float);
1239 case SGILOGDATAFMT_16BIT
:
1240 sp
->pixel_size
= sizeof (int16
);
1242 case SGILOGDATAFMT_8BIT
:
1243 sp
->pixel_size
= sizeof (uint8
);
1246 TIFFErrorExt(tif
->tif_clientdata
, module,
1247 "No support for converting user data format to LogL");
1251 sp
->tbuflen
= multiply_ms(td
->td_tilewidth
, td
->td_tilelength
);
1253 sp
->tbuflen
= multiply_ms(td
->td_imagewidth
, td
->td_rowsperstrip
);
1254 if (multiply_ms(sp
->tbuflen
, sizeof (int16
)) == 0 ||
1255 (sp
->tbuf
= (uint8
*) _TIFFmalloc(sp
->tbuflen
* sizeof (int16
))) == NULL
) {
1256 TIFFErrorExt(tif
->tif_clientdata
, module, "No space for SGILog translation buffer");
1263 LogLuvGuessDataFmt(TIFFDirectory
*td
)
1268 * If the user didn't tell us their datafmt,
1269 * take our best guess from the bitspersample.
1271 #define PACK(a,b) (((a)<<3)|(b))
1272 switch (PACK(td
->td_bitspersample
, td
->td_sampleformat
)) {
1273 case PACK(32, SAMPLEFORMAT_IEEEFP
):
1274 guess
= SGILOGDATAFMT_FLOAT
;
1276 case PACK(32, SAMPLEFORMAT_VOID
):
1277 case PACK(32, SAMPLEFORMAT_UINT
):
1278 case PACK(32, SAMPLEFORMAT_INT
):
1279 guess
= SGILOGDATAFMT_RAW
;
1281 case PACK(16, SAMPLEFORMAT_VOID
):
1282 case PACK(16, SAMPLEFORMAT_INT
):
1283 case PACK(16, SAMPLEFORMAT_UINT
):
1284 guess
= SGILOGDATAFMT_16BIT
;
1286 case PACK( 8, SAMPLEFORMAT_VOID
):
1287 case PACK( 8, SAMPLEFORMAT_UINT
):
1288 guess
= SGILOGDATAFMT_8BIT
;
1291 guess
= SGILOGDATAFMT_UNKNOWN
;
1296 * Double-check samples per pixel.
1298 switch (td
->td_samplesperpixel
) {
1300 if (guess
!= SGILOGDATAFMT_RAW
)
1301 guess
= SGILOGDATAFMT_UNKNOWN
;
1304 if (guess
== SGILOGDATAFMT_RAW
)
1305 guess
= SGILOGDATAFMT_UNKNOWN
;
1308 guess
= SGILOGDATAFMT_UNKNOWN
;
1315 LogLuvInitState(TIFF
* tif
)
1317 static const char module[] = "LogLuvInitState";
1318 TIFFDirectory
* td
= &tif
->tif_dir
;
1319 LogLuvState
* sp
= DecoderState(tif
);
1322 assert(td
->td_photometric
== PHOTOMETRIC_LOGLUV
);
1324 /* for some reason, we can't do this in TIFFInitLogLuv */
1325 if (td
->td_planarconfig
!= PLANARCONFIG_CONTIG
) {
1326 TIFFErrorExt(tif
->tif_clientdata
, module,
1327 "SGILog compression cannot handle non-contiguous data");
1330 if (sp
->user_datafmt
== SGILOGDATAFMT_UNKNOWN
)
1331 sp
->user_datafmt
= LogLuvGuessDataFmt(td
);
1332 switch (sp
->user_datafmt
) {
1333 case SGILOGDATAFMT_FLOAT
:
1334 sp
->pixel_size
= 3*sizeof (float);
1336 case SGILOGDATAFMT_16BIT
:
1337 sp
->pixel_size
= 3*sizeof (int16
);
1339 case SGILOGDATAFMT_RAW
:
1340 sp
->pixel_size
= sizeof (uint32
);
1342 case SGILOGDATAFMT_8BIT
:
1343 sp
->pixel_size
= 3*sizeof (uint8
);
1346 TIFFErrorExt(tif
->tif_clientdata
, module,
1347 "No support for converting user data format to LogLuv");
1351 sp
->tbuflen
= multiply_ms(td
->td_tilewidth
, td
->td_tilelength
);
1353 sp
->tbuflen
= multiply_ms(td
->td_imagewidth
, td
->td_rowsperstrip
);
1354 if (multiply_ms(sp
->tbuflen
, sizeof (uint32
)) == 0 ||
1355 (sp
->tbuf
= (uint8
*) _TIFFmalloc(sp
->tbuflen
* sizeof (uint32
))) == NULL
) {
1356 TIFFErrorExt(tif
->tif_clientdata
, module, "No space for SGILog translation buffer");
1363 LogLuvFixupTags(TIFF
* tif
)
1370 LogLuvSetupDecode(TIFF
* tif
)
1372 static const char module[] = "LogLuvSetupDecode";
1373 LogLuvState
* sp
= DecoderState(tif
);
1374 TIFFDirectory
* td
= &tif
->tif_dir
;
1376 tif
->tif_postdecode
= _TIFFNoPostDecode
;
1377 switch (td
->td_photometric
) {
1378 case PHOTOMETRIC_LOGLUV
:
1379 if (!LogLuvInitState(tif
))
1381 if (td
->td_compression
== COMPRESSION_SGILOG24
) {
1382 tif
->tif_decoderow
= LogLuvDecode24
;
1383 switch (sp
->user_datafmt
) {
1384 case SGILOGDATAFMT_FLOAT
:
1385 sp
->tfunc
= Luv24toXYZ
;
1387 case SGILOGDATAFMT_16BIT
:
1388 sp
->tfunc
= Luv24toLuv48
;
1390 case SGILOGDATAFMT_8BIT
:
1391 sp
->tfunc
= Luv24toRGB
;
1395 tif
->tif_decoderow
= LogLuvDecode32
;
1396 switch (sp
->user_datafmt
) {
1397 case SGILOGDATAFMT_FLOAT
:
1398 sp
->tfunc
= Luv32toXYZ
;
1400 case SGILOGDATAFMT_16BIT
:
1401 sp
->tfunc
= Luv32toLuv48
;
1403 case SGILOGDATAFMT_8BIT
:
1404 sp
->tfunc
= Luv32toRGB
;
1409 case PHOTOMETRIC_LOGL
:
1410 if (!LogL16InitState(tif
))
1412 tif
->tif_decoderow
= LogL16Decode
;
1413 switch (sp
->user_datafmt
) {
1414 case SGILOGDATAFMT_FLOAT
:
1417 case SGILOGDATAFMT_8BIT
:
1418 sp
->tfunc
= L16toGry
;
1423 TIFFErrorExt(tif
->tif_clientdata
, module,
1424 "Inappropriate photometric interpretation %d for SGILog compression; %s",
1425 td
->td_photometric
, "must be either LogLUV or LogL");
1432 LogLuvSetupEncode(TIFF
* tif
)
1434 static const char module[] = "LogLuvSetupEncode";
1435 LogLuvState
* sp
= EncoderState(tif
);
1436 TIFFDirectory
* td
= &tif
->tif_dir
;
1438 switch (td
->td_photometric
) {
1439 case PHOTOMETRIC_LOGLUV
:
1440 if (!LogLuvInitState(tif
))
1442 if (td
->td_compression
== COMPRESSION_SGILOG24
) {
1443 tif
->tif_encoderow
= LogLuvEncode24
;
1444 switch (sp
->user_datafmt
) {
1445 case SGILOGDATAFMT_FLOAT
:
1446 sp
->tfunc
= Luv24fromXYZ
;
1448 case SGILOGDATAFMT_16BIT
:
1449 sp
->tfunc
= Luv24fromLuv48
;
1451 case SGILOGDATAFMT_RAW
:
1457 tif
->tif_encoderow
= LogLuvEncode32
;
1458 switch (sp
->user_datafmt
) {
1459 case SGILOGDATAFMT_FLOAT
:
1460 sp
->tfunc
= Luv32fromXYZ
;
1462 case SGILOGDATAFMT_16BIT
:
1463 sp
->tfunc
= Luv32fromLuv48
;
1465 case SGILOGDATAFMT_RAW
:
1472 case PHOTOMETRIC_LOGL
:
1473 if (!LogL16InitState(tif
))
1475 tif
->tif_encoderow
= LogL16Encode
;
1476 switch (sp
->user_datafmt
) {
1477 case SGILOGDATAFMT_FLOAT
:
1478 sp
->tfunc
= L16fromY
;
1480 case SGILOGDATAFMT_16BIT
:
1487 TIFFErrorExt(tif
->tif_clientdata
, module,
1488 "Inappropriate photometric interpretation %d for SGILog compression; %s",
1489 td
->td_photometric
, "must be either LogLUV or LogL");
1494 TIFFErrorExt(tif
->tif_clientdata
, module,
1495 "SGILog compression supported only for %s, or raw data",
1496 td
->td_photometric
== PHOTOMETRIC_LOGL
? "Y, L" : "XYZ, Luv");
1501 LogLuvClose(TIFF
* tif
)
1503 TIFFDirectory
*td
= &tif
->tif_dir
;
1506 * For consistency, we always want to write out the same
1507 * bitspersample and sampleformat for our TIFF file,
1508 * regardless of the data format being used by the application.
1509 * Since this routine is called after tags have been set but
1510 * before they have been recorded in the file, we reset them here.
1512 td
->td_samplesperpixel
=
1513 (td
->td_photometric
== PHOTOMETRIC_LOGL
) ? 1 : 3;
1514 td
->td_bitspersample
= 16;
1515 td
->td_sampleformat
= SAMPLEFORMAT_INT
;
1519 LogLuvCleanup(TIFF
* tif
)
1521 LogLuvState
* sp
= (LogLuvState
*)tif
->tif_data
;
1525 tif
->tif_tagmethods
.vgetfield
= sp
->vgetparent
;
1526 tif
->tif_tagmethods
.vsetfield
= sp
->vsetparent
;
1529 _TIFFfree(sp
->tbuf
);
1531 tif
->tif_data
= NULL
;
1533 _TIFFSetDefaultCompressionState(tif
);
1537 LogLuvVSetField(TIFF
* tif
, uint32 tag
, va_list ap
)
1539 static const char module[] = "LogLuvVSetField";
1540 LogLuvState
* sp
= DecoderState(tif
);
1544 case TIFFTAG_SGILOGDATAFMT
:
1545 sp
->user_datafmt
= (int) va_arg(ap
, int);
1547 * Tweak the TIFF header so that the rest of libtiff knows what
1548 * size of data will be passed between app and library, and
1549 * assume that the app knows what it is doing and is not
1550 * confused by these header manipulations...
1552 switch (sp
->user_datafmt
) {
1553 case SGILOGDATAFMT_FLOAT
:
1554 bps
= 32, fmt
= SAMPLEFORMAT_IEEEFP
;
1556 case SGILOGDATAFMT_16BIT
:
1557 bps
= 16, fmt
= SAMPLEFORMAT_INT
;
1559 case SGILOGDATAFMT_RAW
:
1560 bps
= 32, fmt
= SAMPLEFORMAT_UINT
;
1561 TIFFSetField(tif
, TIFFTAG_SAMPLESPERPIXEL
, 1);
1563 case SGILOGDATAFMT_8BIT
:
1564 bps
= 8, fmt
= SAMPLEFORMAT_UINT
;
1567 TIFFErrorExt(tif
->tif_clientdata
, tif
->tif_name
,
1568 "Unknown data format %d for LogLuv compression",
1572 TIFFSetField(tif
, TIFFTAG_BITSPERSAMPLE
, bps
);
1573 TIFFSetField(tif
, TIFFTAG_SAMPLEFORMAT
, fmt
);
1575 * Must recalculate sizes should bits/sample change.
1577 tif
->tif_tilesize
= isTiled(tif
) ? TIFFTileSize(tif
) : (tmsize_t
) -1;
1578 tif
->tif_scanlinesize
= TIFFScanlineSize(tif
);
1580 case TIFFTAG_SGILOGENCODE
:
1581 sp
->encode_meth
= (int) va_arg(ap
, int);
1582 if (sp
->encode_meth
!= SGILOGENCODE_NODITHER
&&
1583 sp
->encode_meth
!= SGILOGENCODE_RANDITHER
) {
1584 TIFFErrorExt(tif
->tif_clientdata
, module,
1585 "Unknown encoding %d for LogLuv compression",
1591 return (*sp
->vsetparent
)(tif
, tag
, ap
);
1596 LogLuvVGetField(TIFF
* tif
, uint32 tag
, va_list ap
)
1598 LogLuvState
*sp
= (LogLuvState
*)tif
->tif_data
;
1601 case TIFFTAG_SGILOGDATAFMT
:
1602 *va_arg(ap
, int*) = sp
->user_datafmt
;
1605 return (*sp
->vgetparent
)(tif
, tag
, ap
);
1609 static const TIFFField LogLuvFields
[] = {
1610 { TIFFTAG_SGILOGDATAFMT
, 0, 0, TIFF_SHORT
, 0, TIFF_SETGET_INT
, TIFF_SETGET_UNDEFINED
, FIELD_PSEUDO
, TRUE
, FALSE
, "SGILogDataFmt", NULL
},
1611 { TIFFTAG_SGILOGENCODE
, 0, 0, TIFF_SHORT
, 0, TIFF_SETGET_INT
, TIFF_SETGET_UNDEFINED
, FIELD_PSEUDO
, TRUE
, FALSE
, "SGILogEncode", NULL
}
1615 TIFFInitSGILog(TIFF
* tif
, int scheme
)
1617 static const char module[] = "TIFFInitSGILog";
1620 assert(scheme
== COMPRESSION_SGILOG24
|| scheme
== COMPRESSION_SGILOG
);
1623 * Merge codec-specific tag information.
1625 if (!_TIFFMergeFields(tif
, LogLuvFields
,
1626 TIFFArrayCount(LogLuvFields
))) {
1627 TIFFErrorExt(tif
->tif_clientdata
, module,
1628 "Merging SGILog codec-specific tags failed");
1633 * Allocate state block so tag methods have storage to record values.
1635 tif
->tif_data
= (uint8
*) _TIFFmalloc(sizeof (LogLuvState
));
1636 if (tif
->tif_data
== NULL
)
1638 sp
= (LogLuvState
*) tif
->tif_data
;
1639 _TIFFmemset((void*)sp
, 0, sizeof (*sp
));
1640 sp
->user_datafmt
= SGILOGDATAFMT_UNKNOWN
;
1641 sp
->encode_meth
= (scheme
== COMPRESSION_SGILOG24
) ?
1642 SGILOGENCODE_RANDITHER
: SGILOGENCODE_NODITHER
;
1643 sp
->tfunc
= _logLuvNop
;
1646 * Install codec methods.
1647 * NB: tif_decoderow & tif_encoderow are filled
1650 tif
->tif_fixuptags
= LogLuvFixupTags
;
1651 tif
->tif_setupdecode
= LogLuvSetupDecode
;
1652 tif
->tif_decodestrip
= LogLuvDecodeStrip
;
1653 tif
->tif_decodetile
= LogLuvDecodeTile
;
1654 tif
->tif_setupencode
= LogLuvSetupEncode
;
1655 tif
->tif_encodestrip
= LogLuvEncodeStrip
;
1656 tif
->tif_encodetile
= LogLuvEncodeTile
;
1657 tif
->tif_close
= LogLuvClose
;
1658 tif
->tif_cleanup
= LogLuvCleanup
;
1661 * Override parent get/set field methods.
1663 sp
->vgetparent
= tif
->tif_tagmethods
.vgetfield
;
1664 tif
->tif_tagmethods
.vgetfield
= LogLuvVGetField
; /* hook for codec tags */
1665 sp
->vsetparent
= tif
->tif_tagmethods
.vsetfield
;
1666 tif
->tif_tagmethods
.vsetfield
= LogLuvVSetField
; /* hook for codec tags */
1670 TIFFErrorExt(tif
->tif_clientdata
, module,
1671 "%s: No space for LogLuv state block", tif
->tif_name
);
1674 #endif /* LOGLUV_SUPPORT */
1676 /* vim: set ts=8 sts=8 sw=8 noet: */