1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
|
/*******************************************************************************
* gifdecod.cpp
*
* GIF-style LZW decoder.
*
* NOTE: Portions of this module were written by Steve Bennett and are used
* here with his permission.
*
* ---------------------------------------------------------------------------
* Persistence of Vision Ray Tracer ('POV-Ray') version 3.7.
* Copyright 1991-2013 Persistence of Vision Raytracer Pty. Ltd.
*
* POV-Ray is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* POV-Ray is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*********************************************************************************/
/*
This module was freely borrowed from FRACTINT, so here is their entire
copyright to keep them happy:
*/
/* DECODER.C - An LZW decoder for GIF
* Copyright (C) 1987, by Steven A. Bennett
*
* Permission is given by the author to freely redistribute and include
* this code in any program as long as this credit is given where due.
*
* In accordance with the above, I want to credit Steve Wilhite who wrote
* the code which this is heavily inspired by...
*
* GIF and 'Graphics Interchange Format' are trademarks (tm) of
* Compuserve, Incorporated, an H&R Block Company.
*
* Release Notes: This file contains a decoder routine for GIF images
* which is similar, structurally, to the original routine by Steve Wilhite.
* It is, however, somewhat noticably faster in most cases.
*
== This routine was modified for use in FRACTINT in two ways.
==
== 1) The original #includes were folded into the routine strictly to hold
== down the number of files we were dealing with.
==
== 2) The 'stack', 'suffix', 'prefix', and 'buf' arrays were changed from
== static and 'malloc()'ed to external only so that the assembler
== program could use the same array space for several independent
== chunks of code. Also, 'stack' was renamed to 'dstack' for TASM
== compatibility.
==
== 3) The 'out_line()' external function has been changed to reference
== '*outln()' for flexibility (in particular, 3D transformations)
==
== 4) A call to 'keypressed()' has been added after the 'outln()' calls
== to check for the presenc of a key-press as a bail-out signal
==
== (Bert Tyler and Timothy Wegner)
*/
/*
This routine was modified for Persistence of Vision(tm) Ray Tracer in the following ways:
1) Removed calls to buzzer() and keypressed() to get rid of ASM files.
2) The dstack, suffix, and prefix arrays were made STATIC once again.
3) Added the usual ANSI function prototypes, etc. in the Persistence of Vision(tm) Ray Tracer headers.
*/
// configbase.h must always be the first POV file included within base *.cpp files
#include "base/configbase.h"
#include "base/image/image.h"
#include "base/image/gif.h"
#include <boost/scoped_array.hpp>
// this must be the last file included
#include "base/povdebug.h"
namespace pov_base
{
namespace Gif
{
#define LOCAL static
#define IMPORT extern
#define FAST // nothing (was `register`, which is deprecated as of C++14 and disallowed as of C++17)
typedef unsigned short UWORD;
typedef unsigned char UTINY;
typedef int LONG;
typedef unsigned int ULONG;
typedef int INT;
/* Various error codes used by decoder
* and my own routines... It's okay
* for you to define whatever you want,
* as long as it's negative... It will be
* returned intact up the various subroutine
* levels...
*/
const int OUT_OF_MEMORY = -10;
const int BAD_CODE_SIZE = -20;
const int READ_ERROR = -1;
const int WRITE_ERROR = -2;
const int OPEN_ERROR = -3;
const int CREATE_ERROR = -4;
const int MAX_CODES = 4095;
LOCAL const LONG code_mask[13] = {
0,
0x0001, 0x0003,
0x0007, 0x000F,
0x001F, 0x003F,
0x007F, 0x00FF,
0x01FF, 0x03FF,
0x07FF, 0x0FFF
};
typedef struct
{
short curr_size; /* The current code size */
short clear_code; /* Value for a clear code */
short ending; /* Value for a ending code */
short newcodes; /* First available code */
short top_slot; /* Highest code for current size */
short slot; /* Last read code */
short navail_bytes; /* # bytes left in block */
short nbits_left; /* # bits left in current byte */
UTINY b1; /* Current byte */
UTINY byte_buff[257]; /* Current block */
UTINY *pbytes; /* Pointer to next byte in block */
} Param_Block ;
/* get_next_code()
* - gets the next code from the GIF file. Returns the code, or else
* a negative number in case of file errors...
*/
static short get_next_code(IStream *file, Param_Block *params)
{
short i, x;
ULONG ret;
if (params->nbits_left == 0)
{
if (params->navail_bytes <= 0)
{
/* Out of bytes in current block, so read next block
*/
params->pbytes = params->byte_buff;
if ((params->navail_bytes = file->Read_Byte()) < 0)
return(params->navail_bytes);
else if (params->navail_bytes)
{
for (i = 0; i < params->navail_bytes; ++i)
{
if ((x = file->Read_Byte()) < 0)
return(x);
params->byte_buff[i] = (UTINY) x;
}
}
}
params->b1 = *params->pbytes++;
params->nbits_left = 8;
--params->navail_bytes;
}
ret = params->b1 >> (8 - params->nbits_left);
while (params->curr_size > params->nbits_left)
{
if (params->navail_bytes <= 0)
{
/* Out of bytes in current block, so read next block
*/
params->pbytes = params->byte_buff;
if ((params->navail_bytes = file->Read_Byte()) < 0)
return(params->navail_bytes);
else if (params->navail_bytes)
{
for (i = 0; i < params->navail_bytes; ++i)
{
if ((x = file->Read_Byte()) < 0)
return(x);
params->byte_buff[i] = (UTINY) x;
}
}
}
params->b1 = *params->pbytes++;
ret |= params->b1 << params->nbits_left;
params->nbits_left += 8;
--params->navail_bytes;
}
params->nbits_left -= params->curr_size;
ret &= code_mask[params->curr_size];
return((short)(ret));
}
/* The reason we have these seperated like this instead of using
* a structure like the original Wilhite code did, is because this
* stuff generally produces significantly faster code when compiled...
* This code is full of similar speedups... (For a good book on writing
* C for speed or for space optomisation, see Efficient C by Tom Plum,
* published by Plum-Hall Associates...)
*/
/*
I removed the LOCAL identifiers in the arrays below and replaced them
with 'extern's so as to declare (and re-use) the space elsewhere.
The arrays are actually declared in the assembler source.
Bert Tyler
*/
/* short decoder(linewidth)
* short linewidth; * Pixels per line of image *
*
* - This function decodes an LZW image, according to the method used
* in the GIF spec. Every *linewidth* "characters" (ie. pixels) decoded
* will generate a call to out_line(), which is a user specific function
* to display a line of pixels. The function gets its codes from
* get_next_code() which is responsible for reading blocks of data and
* seperating them into the proper size codes. Finally, file->Read_Byte() is
* the global routine to read the next byte from the GIF file.
*
* It is generally a good idea to have linewidth correspond to the actual
* width of a line (as specified in the Image header) to make your own
* code a bit simpler, but it isn't absolutely necessary.
*
*/
/*
* bad_code_count is incremented each time an out of range code is read by
* the decoder. When this value is non-zero after a decode, your GIF file
* is probably corrupt in some way...
*/
void Decode (IStream *file, Image *image)
{
short linewidth = image->GetWidth();
FAST UTINY *sp, *bufptr;
FAST short code, fc, oc, bufcnt;
short c, size;
int x = 0 ;
int y = 0 ;
int width = image->GetWidth();
int height = image->GetHeight();
int bad_code_count=0;
Param_Block params ;
/* Initialize for decoding a new image... */
if ((size = file->Read_Byte()) == EOF)
throw POV_EXCEPTION(kFileDataErr, "Unexpected EOF while reading GIF file");
if (size < 2 || 9 < size)
throw POV_EXCEPTION(kFileDataErr, "Bad code size in GIF file");
params.curr_size = size + 1;
params.top_slot = 1 << params.curr_size;
params.clear_code = 1 << size;
params.ending = params.clear_code + 1;
params.slot = params.newcodes = params.ending + 1;
params.navail_bytes = params.nbits_left = 0;
boost::scoped_array<UTINY> dstack (new UTINY [MAX_CODES + 1]);
boost::scoped_array<UTINY> suffix (new UTINY [MAX_CODES + 1]);
boost::scoped_array<UWORD> prefix (new UWORD [MAX_CODES + 1]);
boost::scoped_array<UTINY> buf (new UTINY [width]);
/* Initialize in case they forgot to put in a clear code.
* (This shouldn't happen, but we'll try and decode it anyway...)
*/
oc = fc = 0;
/* Set up the stack pointer and decode buffer pointer */
sp = dstack.get();
bufptr = buf.get();
bufcnt = linewidth;
/* This is the main loop. For each code we get we pass through the
* linked list of prefix codes, pushing the corresponding "character" for
* each code onto the stack. When the list reaches a single "character"
* we push that on the stack too, and then start unstacking each
* character for output in the correct order. Special handling is
* included for the clear code, and the whole thing ends when we get
* an ending code.
*/
while ((c = get_next_code(file, ¶ms)) != params.ending)
{
/* If we had a file error, return without completing the decode */
if (c < 0)
throw POV_EXCEPTION(kFileDataErr, "Error while reading GIF file");
/* If the code is a clear code, reinitialize all necessary items. */
if (c == params.clear_code)
{
params.curr_size = size + 1;
params.slot = params.newcodes;
params.top_slot = 1 << params.curr_size;
/* Continue reading codes until we get a non-clear code
* (Another unlikely, but possible case...)
*/
while ((c = get_next_code(file, ¶ms)) == params.clear_code)
;
/* If we get an ending code immediately after a clear code
* (Yet another unlikely case), then break out of the loop.
*/
if (c == params.ending)
break;
/* Finally, if the code is beyond the range of already set codes,
* (This one had better NOT happen... I have no idea what will
* result from this, but I doubt it will look good...) then set it
* to color zero.
*/
if (c >= params.slot)
c = 0;
oc = fc = c;
/* And let us not forget to put the char into the buffer... And
* if, on the off chance, we were exactly one pixel from the end
* of the line, we have to send the buffer to the out_line()
* routine...
*/
if (y == height)
throw POV_EXCEPTION(kFileDataErr, "Extra data in GIF file") ;
image->SetIndexedValue (x, y, (unsigned char) c) ;
if (++x == width)
{
x = 0 ;
y++ ;
}
}
else
{
/* In this case, it's not a clear code or an ending code, so
* it must be a code code... So we can now decode the code into
* a stack of character codes. (Clear as mud, right?)
*/
code = c;
/* Here we go again with one of those off chances... If, on the
* off chance, the code we got is beyond the range of those already
* set up (Another thing which had better NOT happen...) we trick
* the decoder into thinking it actually got the last code read.
* (Hmmn... I'm not sure why this works... But it does...)
*/
if (code >= params.slot)
{
if (code > params.slot)
++bad_code_count;
code = oc;
*sp++ = (UTINY) fc;
}
/* Here we scan back along the linked list of prefixes, pushing
* helpless characters (ie. suffixes) onto the stack as we do so.
*/
while (code >= params.newcodes)
{
*sp++ = suffix[code];
code = prefix[code];
}
/* Push the last character on the stack, and set up the new
* prefix and suffix, and if the required slot number is greater
* than that allowed by the current bit size, increase the bit
* size. (NOTE - If we are all full, we *don't* save the new
* suffix and prefix... I'm not certain if this is correct...
* it might be more proper to overwrite the last code...
*/
*sp++ = (UTINY) code;
if (params.slot < params.top_slot)
{
fc = code;
suffix[params.slot] = (UTINY) fc;
prefix[params.slot++] = oc;
oc = c;
}
if (params.slot >= params.top_slot)
{
if (params.curr_size < 12)
{
params.top_slot <<= 1;
++params.curr_size;
}
}
/* Now that we've pushed the decoded string (in reverse order)
* onto the stack, lets pop it off and put it into our decode
* buffer... And when the decode buffer is full, write another
* line...
*/
while (sp > dstack.get())
{
if (y == height)
throw POV_EXCEPTION(kFileDataErr, "Extra data in GIF file") ;
image->SetIndexedValue (x, y, (unsigned char) *(--sp)) ;
if (++x == width)
{
x = 0 ;
y++ ;
}
}
}
}
}
}
}
|