]>
git.saurik.com Git - wxWidgets.git/blob - src/tiff/libtiff/tif_packbits.c
3 * Copyright (c) 1988-1997 Sam Leffler
4 * Copyright (c) 1991-1997 Silicon Graphics, Inc.
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 and Silicon Graphics may not be used in any advertising or
11 * publicity relating to the software without the specific, prior written
12 * permission of Sam Leffler and Silicon Graphics.
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.
18 * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
19 * 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
27 #ifdef PACKBITS_SUPPORT
31 * PackBits Compression Algorithm Support
36 PackBitsPreEncode(TIFF
* tif
, uint16 s
)
40 if (!(tif
->tif_data
= (uint8
*)_TIFFmalloc(sizeof(tmsize_t
))))
43 * Calculate the scanline/tile-width size in bytes.
46 *(tmsize_t
*)tif
->tif_data
= TIFFTileRowSize(tif
);
48 *(tmsize_t
*)tif
->tif_data
= TIFFScanlineSize(tif
);
53 PackBitsPostEncode(TIFF
* tif
)
56 _TIFFfree(tif
->tif_data
);
61 * Encode a run of pixels.
64 PackBitsEncode(TIFF
* tif
, uint8
* buf
, tmsize_t cc
, uint16 s
)
66 unsigned char* bp
= (unsigned char*) buf
;
72 enum { BASE
, LITERAL
, RUN
, LITERAL_RUN
} state
;
76 ep
= tif
->tif_rawdata
+ tif
->tif_rawdatasize
;
81 * Find the longest string of identical bytes.
83 b
= *bp
++, cc
--, n
= 1;
84 for (; cc
> 0 && b
== *bp
; cc
--, bp
++)
87 if (op
+ 2 >= ep
) { /* insure space for new data */
89 * Be careful about writing the last
90 * literal. Must write up to that point
91 * and then copy the remainder to the
92 * front of the buffer.
94 if (state
== LITERAL
|| state
== LITERAL_RUN
) {
95 slop
= (long)(op
- lastliteral
);
96 tif
->tif_rawcc
+= (tmsize_t
)(lastliteral
- tif
->tif_rawcp
);
97 if (!TIFFFlushData1(tif
))
101 *op
++ = *lastliteral
++;
102 lastliteral
= tif
->tif_rawcp
;
104 tif
->tif_rawcc
+= (tmsize_t
)(op
- tif
->tif_rawcp
);
105 if (!TIFFFlushData1(tif
))
111 case BASE
: /* initial state, set run/literal */
115 *op
++ = (uint8
) -127;
120 *op
++ = (uint8
)(-(n
-1));
129 case LITERAL
: /* last object was literal string */
133 *op
++ = (uint8
) -127;
138 *op
++ = (uint8
)(-(n
-1)); /* encode run */
140 } else { /* extend literal */
141 if (++(*lastliteral
) == 127)
146 case RUN
: /* last object was run */
149 *op
++ = (uint8
) -127;
154 *op
++ = (uint8
)(-(n
-1));
163 case LITERAL_RUN
: /* literal followed by a run */
165 * Check to see if previous run should
166 * be converted to a literal, in which
167 * case we convert literal-run-literal
168 * to a single literal.
170 if (n
== 1 && op
[-2] == (uint8
) -1 &&
171 *lastliteral
< 126) {
172 state
= (((*lastliteral
) += 2) == 127 ?
174 op
[-2] = op
[-1]; /* replicate */
180 tif
->tif_rawcc
+= (tmsize_t
)(op
- tif
->tif_rawcp
);
186 * Encode a rectangular chunk of pixels. We break it up
187 * into row-sized pieces to insure that encoded runs do
188 * not span rows. Otherwise, there can be problems with
189 * the decoder if data is read, for example, by scanlines
190 * when it was encoded by strips.
193 PackBitsEncodeChunk(TIFF
* tif
, uint8
* bp
, tmsize_t cc
, uint16 s
)
195 tmsize_t rowsize
= *(tmsize_t
*)tif
->tif_data
;
198 tmsize_t chunk
= rowsize
;
203 if (PackBitsEncode(tif
, bp
, chunk
, s
) < 0)
212 PackBitsDecode(TIFF
* tif
, uint8
* op
, tmsize_t occ
, uint16 s
)
214 static const char module[] = "PackBitsDecode";
221 bp
= (char*) tif
->tif_rawcp
;
223 while (cc
> 0 && occ
> 0) {
224 n
= (long) *bp
++, cc
--;
226 * Watch out for compilers that
227 * don't sign extend chars...
231 if (n
< 0) { /* replicate next byte -n+1 times */
232 if (n
== -128) /* nop */
235 if( occ
< (tmsize_t
)n
)
237 TIFFWarningExt(tif
->tif_clientdata
, module,
238 "Discarding %lu bytes to avoid buffer overrun",
239 (unsigned long) ((tmsize_t
)n
- occ
));
246 } else { /* copy next n+1 bytes literally */
247 if (occ
< (tmsize_t
)(n
+ 1))
249 TIFFWarningExt(tif
->tif_clientdata
, module,
250 "Discarding %lu bytes to avoid buffer overrun",
251 (unsigned long) ((tmsize_t
)n
- occ
+ 1));
254 if (cc
< (tmsize_t
) (n
+1))
256 TIFFWarningExt(tif
->tif_clientdata
, module,
257 "Terminating PackBitsDecode due to lack of data.");
260 _TIFFmemcpy(op
, bp
, ++n
);
265 tif
->tif_rawcp
= (uint8
*) bp
;
268 TIFFErrorExt(tif
->tif_clientdata
, module,
269 "Not enough data for scanline %lu",
270 (unsigned long) tif
->tif_row
);
277 TIFFInitPackBits(TIFF
* tif
, int scheme
)
280 tif
->tif_decoderow
= PackBitsDecode
;
281 tif
->tif_decodestrip
= PackBitsDecode
;
282 tif
->tif_decodetile
= PackBitsDecode
;
283 tif
->tif_preencode
= PackBitsPreEncode
;
284 tif
->tif_postencode
= PackBitsPostEncode
;
285 tif
->tif_encoderow
= PackBitsEncode
;
286 tif
->tif_encodestrip
= PackBitsEncodeChunk
;
287 tif
->tif_encodetile
= PackBitsEncodeChunk
;
290 #endif /* PACKBITS_SUPPORT */
292 /* vim: set ts=8 sts=8 sw=8 noet: */