Skip to content

Latest commit

 

History

History
805 lines (691 loc) · 23 KB

IMG_gif.c

File metadata and controls

805 lines (691 loc) · 23 KB
 
Aug 10, 2000
Aug 10, 2000
1
/*
Dec 31, 2011
Dec 31, 2011
2
SDL_image: An example image loading library for use with SDL
Jan 5, 2019
Jan 5, 2019
3
Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
Dec 31, 2011
Dec 31, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Aug 10, 2000
Aug 10, 2000
20
21
22
23
24
25
26
27
28
29
*/
/* This is a GIF image file loading framework */
#include "SDL_image.h"
#ifdef LOAD_GIF
/* Code from here to end of file has been adapted from XPaint: */
/* +-------------------------------------------------------------------+ */
May 22, 2013
May 22, 2013
30
31
/* | Copyright 1990, 1991, 1993 David Koblas. | */
/* | Copyright 1996 Torsten Martinsen. | */
Aug 10, 2000
Aug 10, 2000
32
33
34
35
36
/* | Permission to use, copy, modify, and distribute this software | */
/* | and its documentation for any purpose and without fee is hereby | */
/* | granted, provided that the above copyright notice appear in all | */
/* | copies and that both that copyright notice and this permission | */
/* | notice appear in supporting documentation. This software is | */
May 22, 2013
May 22, 2013
37
/* | provided "as is" without express or implied warranty. | */
Aug 10, 2000
Aug 10, 2000
38
39
40
41
42
43
44
45
46
47
48
/* +-------------------------------------------------------------------+ */
/* Adapted for use in SDL by Sam Lantinga -- 7/20/98 */
/* Changes to work with SDL:
Include SDL header file
Use SDL_Surface rather than xpaint Image structure
Define SDL versions of RWSetMsg(), ImageNewCmap() and ImageSetCmap()
*/
#include "SDL.h"
May 22, 2013
May 22, 2013
49
50
51
#define Image SDL_Surface
#define RWSetMsg IMG_SetError
#define ImageNewCmap(w, h, s) SDL_CreateRGBSurface(SDL_SWSURFACE,w,h,8,0,0,0,0)
Aug 10, 2000
Aug 10, 2000
52
#define ImageSetCmap(s, i, R, G, B) do { \
May 22, 2013
May 22, 2013
53
54
55
56
s->format->palette->colors[i].r = R; \
s->format->palette->colors[i].g = G; \
s->format->palette->colors[i].b = B; \
} while (0)
Aug 10, 2000
Aug 10, 2000
57
58
/* * * * * */
Oct 4, 2019
Oct 4, 2019
59
60
61
62
#define GIF_DISPOSE_NA 0 /* No disposal specified */
#define GIF_DISPOSE_NONE 1 /* Do not dispose */
#define GIF_DISPOSE_RESTORE_BACKGROUND 2 /* Restore to background */
#define GIF_DISPOSE_RESTORE_PREVIOUS 3 /* Restore to previous */
Aug 10, 2000
Aug 10, 2000
63
May 22, 2013
May 22, 2013
64
#define MAXCOLORMAPSIZE 256
Aug 10, 2000
Aug 10, 2000
65
May 22, 2013
May 22, 2013
66
67
#define TRUE 1
#define FALSE 0
Aug 10, 2000
Aug 10, 2000
68
May 22, 2013
May 22, 2013
69
70
71
#define CM_RED 0
#define CM_GREEN 1
#define CM_BLUE 2
Aug 10, 2000
Aug 10, 2000
72
May 22, 2013
May 22, 2013
73
#define MAX_LWZ_BITS 12
Aug 10, 2000
Aug 10, 2000
74
May 22, 2013
May 22, 2013
75
76
77
#define INTERLACE 0x40
#define LOCALCOLORMAP 0x80
#define BitSet(byte, bit) (((byte) & (bit)) == (bit))
Aug 10, 2000
Aug 10, 2000
78
May 22, 2013
May 22, 2013
79
#define ReadOK(file,buffer,len) SDL_RWread(file, buffer, len, 1)
Aug 10, 2000
Aug 10, 2000
80
May 22, 2013
May 22, 2013
81
#define LM_to_uint(a,b) (((b)<<8)|(a))
Aug 10, 2000
Aug 10, 2000
82
Jun 10, 2019
Jun 10, 2019
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
typedef struct {
struct {
unsigned int Width;
unsigned int Height;
unsigned char ColorMap[3][MAXCOLORMAPSIZE];
unsigned int BitPixel;
unsigned int ColorResolution;
unsigned int Background;
unsigned int AspectRatio;
int GrayScale;
} GifScreen;
struct {
int transparent;
int delayTime;
int inputFlag;
int disposal;
} Gif89;
unsigned char buf[280];
int curbit, lastbit, done, last_byte;
int fresh;
int code_size, set_code_size;
int max_code, max_code_size;
int firstcode, oldcode;
int clear_code, end_code;
int table[2][(1 << MAX_LWZ_BITS)];
int stack[(1 << (MAX_LWZ_BITS)) * 2], *sp;
int ZeroDataBlock;
} State_t;
Aug 10, 2000
Aug 10, 2000
115
Oct 4, 2019
Oct 4, 2019
116
117
118
119
120
121
122
123
124
125
126
127
128
129
typedef struct
{
Image *image;
int x, y;
int disposal;
int delay;
} Frame_t;
typedef struct
{
int count;
Frame_t *frames;
} Anim_t;
Aug 10, 2000
Aug 10, 2000
130
static int ReadColorMap(SDL_RWops * src, int number,
May 22, 2013
May 22, 2013
131
unsigned char buffer[3][MAXCOLORMAPSIZE], int *flag);
Jun 10, 2019
Jun 10, 2019
132
133
134
135
static int DoExtension(SDL_RWops * src, int label, State_t * state);
static int GetDataBlock(SDL_RWops * src, unsigned char *buf, State_t * state);
static int GetCode(SDL_RWops * src, int code_size, int flag, State_t * state);
static int LWZReadByte(SDL_RWops * src, int flag, int input_code_size, State_t * state);
Aug 10, 2000
Aug 10, 2000
136
static Image *ReadImage(SDL_RWops * src, int len, int height, int,
May 22, 2013
May 22, 2013
137
unsigned char cmap[3][MAXCOLORMAPSIZE],
Jun 10, 2019
Jun 10, 2019
138
int gray, int interlace, int ignore, State_t * state);
Aug 10, 2000
Aug 10, 2000
139
Oct 4, 2019
Oct 4, 2019
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
static SDL_bool NormalizeFrames(Frame_t *frames, int count)
{
SDL_Surface *image;
int i;
int lastDispose = GIF_DISPOSE_RESTORE_BACKGROUND;
int iRestore = 0;
Uint32 fill;
SDL_Rect rect;
if (SDL_HasColorKey(frames[0].image)) {
image = SDL_ConvertSurfaceFormat(frames[0].image, SDL_PIXELFORMAT_ARGB8888, 0);
} else {
image = SDL_ConvertSurfaceFormat(frames[0].image, SDL_PIXELFORMAT_RGB888, 0);
}
if (!image) {
return SDL_FALSE;
}
fill = SDL_MapRGBA(image->format, 0, 0, 0, SDL_ALPHA_TRANSPARENT);
rect.x = 0;
rect.y = 0;
rect.w = image->w;
rect.h = image->h;
for (i = 0; i < count; ++i) {
switch (lastDispose) {
case GIF_DISPOSE_RESTORE_BACKGROUND:
SDL_FillRect(image, &rect, fill);
break;
case GIF_DISPOSE_RESTORE_PREVIOUS:
SDL_BlitSurface(frames[iRestore].image, &rect, image, &rect);
break;
default:
break;
}
if (frames[i].disposal != GIF_DISPOSE_RESTORE_PREVIOUS) {
iRestore = i;
}
rect.x = (Sint16)frames[i].x;
rect.y = (Sint16)frames[i].y;
rect.w = frames[i].image->w;
rect.h = frames[i].image->h;
SDL_BlitSurface(frames[i].image, NULL, image, &rect);
SDL_FreeSurface(frames[i].image);
frames[i].image = SDL_DuplicateSurface(image);
Oct 4, 2019
Oct 4, 2019
190
191
192
if (!frames[i].image) {
return SDL_FALSE;
}
Oct 4, 2019
Oct 4, 2019
193
194
195
196
197
198
199
200
201
202
203
lastDispose = frames[i].disposal;
}
SDL_FreeSurface( image );
return SDL_TRUE;
}
Anim_t *
IMG_LoadGIF_RW_Internal(SDL_RWops *src, SDL_bool load_anim)
Aug 10, 2000
Aug 10, 2000
204
{
Feb 3, 2013
Feb 3, 2013
205
Sint64 start;
Aug 10, 2000
Aug 10, 2000
206
207
208
209
210
211
212
213
unsigned char buf[16];
unsigned char c;
unsigned char localColorMap[3][MAXCOLORMAPSIZE];
int grayScale;
int useGlobalColormap;
int bitPixel;
char version[4];
Image *image = NULL;
Oct 9, 2019
Oct 9, 2019
214
215
Anim_t *anim;
Frame_t *frames, *frame;
Jun 10, 2019
Jun 10, 2019
216
State_t state;
Oct 9, 2019
Oct 9, 2019
217
Jun 10, 2019
Jun 10, 2019
218
219
state.ZeroDataBlock = FALSE;
state.fresh = FALSE;
Jun 18, 2019
Jun 18, 2019
220
state.last_byte = 0;
Aug 10, 2000
Aug 10, 2000
221
Sep 11, 2019
Sep 11, 2019
222
223
if (src == NULL) {
return NULL;
Aug 10, 2000
Aug 10, 2000
224
}
Feb 4, 2006
Feb 4, 2006
225
226
start = SDL_RWtell(src);
Oct 4, 2019
Oct 4, 2019
227
228
229
230
231
232
anim = (Anim_t *)SDL_calloc(1, sizeof(*anim));
if (!anim) {
SDL_OutOfMemory();
return NULL;
}
Aug 10, 2000
Aug 10, 2000
233
if (!ReadOK(src, buf, 6)) {
Sep 11, 2019
Sep 11, 2019
234
RWSetMsg("error reading magic number");
Aug 10, 2000
Aug 10, 2000
235
236
goto done;
}
Feb 3, 2013
Feb 3, 2013
237
if (SDL_strncmp((char *) buf, "GIF", 3) != 0) {
Sep 11, 2019
Sep 11, 2019
238
RWSetMsg("not a GIF file");
Aug 10, 2000
Aug 10, 2000
239
240
goto done;
}
Feb 3, 2013
Feb 3, 2013
241
SDL_memcpy(version, (char *) buf + 3, 3);
Aug 10, 2000
Aug 10, 2000
242
243
version[3] = '\0';
Feb 3, 2013
Feb 3, 2013
244
if ((SDL_strcmp(version, "87a") != 0) && (SDL_strcmp(version, "89a") != 0)) {
Sep 11, 2019
Sep 11, 2019
245
RWSetMsg("bad version number, not '87a' or '89a'");
Aug 10, 2000
Aug 10, 2000
246
247
goto done;
}
Jun 10, 2019
Jun 10, 2019
248
249
250
state.Gif89.transparent = -1;
state.Gif89.delayTime = -1;
state.Gif89.inputFlag = -1;
Oct 4, 2019
Oct 4, 2019
251
state.Gif89.disposal = GIF_DISPOSE_NA;
Aug 10, 2000
Aug 10, 2000
252
253
if (!ReadOK(src, buf, 7)) {
Sep 11, 2019
Sep 11, 2019
254
RWSetMsg("failed to read screen descriptor");
Aug 10, 2000
Aug 10, 2000
255
256
goto done;
}
Jun 10, 2019
Jun 10, 2019
257
258
259
260
261
262
state.GifScreen.Width = LM_to_uint(buf[0], buf[1]);
state.GifScreen.Height = LM_to_uint(buf[2], buf[3]);
state.GifScreen.BitPixel = 2 << (buf[4] & 0x07);
state.GifScreen.ColorResolution = (((buf[4] & 0x70) >> 3) + 1);
state.GifScreen.Background = buf[5];
state.GifScreen.AspectRatio = buf[6];
Aug 10, 2000
Aug 10, 2000
263
May 22, 2013
May 22, 2013
264
if (BitSet(buf[4], LOCALCOLORMAP)) { /* Global Colormap */
Sep 11, 2019
Sep 11, 2019
265
266
267
if (ReadColorMap(src, state.GifScreen.BitPixel,
state.GifScreen.ColorMap, &state.GifScreen.GrayScale)) {
RWSetMsg("error reading global colormap");
Aug 10, 2000
Aug 10, 2000
268
goto done;
Sep 11, 2019
Sep 11, 2019
269
}
Aug 10, 2000
Aug 10, 2000
270
}
Oct 4, 2019
Oct 4, 2019
271
for ( ; ; ) {
Sep 11, 2019
Sep 11, 2019
272
273
if (!ReadOK(src, &c, 1)) {
RWSetMsg("EOF / read error on image data");
Aug 10, 2000
Aug 10, 2000
274
goto done;
Sep 11, 2019
Sep 11, 2019
275
276
}
if (c == ';') { /* GIF terminator */
Oct 4, 2019
Oct 4, 2019
277
goto done;
May 22, 2013
May 22, 2013
278
}
Sep 11, 2019
Sep 11, 2019
279
280
281
if (c == '!') { /* Extension */
if (!ReadOK(src, &c, 1)) {
RWSetMsg("EOF / read error on extention function code");
Aug 10, 2000
Aug 10, 2000
282
goto done;
Sep 11, 2019
Sep 11, 2019
283
284
285
}
DoExtension(src, c, &state);
continue;
May 22, 2013
May 22, 2013
286
}
Sep 11, 2019
Sep 11, 2019
287
288
289
if (c != ',') { /* Not a valid start character */
continue;
}
May 22, 2013
May 22, 2013
290
Sep 11, 2019
Sep 11, 2019
291
292
if (!ReadOK(src, buf, 9)) {
RWSetMsg("couldn't read left/top/width/height");
Aug 10, 2000
Aug 10, 2000
293
goto done;
Sep 11, 2019
Sep 11, 2019
294
295
}
useGlobalColormap = !BitSet(buf[8], LOCALCOLORMAP);
Aug 10, 2000
Aug 10, 2000
296
Sep 11, 2019
Sep 11, 2019
297
bitPixel = 1 << ((buf[8] & 0x07) + 1);
Aug 10, 2000
Aug 10, 2000
298
Sep 11, 2019
Sep 11, 2019
299
300
301
if (!useGlobalColormap) {
if (ReadColorMap(src, bitPixel, localColorMap, &grayScale)) {
RWSetMsg("error reading local colormap");
Aug 10, 2000
Aug 10, 2000
302
goto done;
Sep 11, 2019
Sep 11, 2019
303
304
305
306
307
}
image = ReadImage(src, LM_to_uint(buf[4], buf[5]),
LM_to_uint(buf[6], buf[7]),
bitPixel, localColorMap, grayScale,
BitSet(buf[8], INTERLACE),
Oct 4, 2019
Oct 4, 2019
308
0, &state);
Sep 11, 2019
Sep 11, 2019
309
310
311
312
313
} else {
image = ReadImage(src, LM_to_uint(buf[4], buf[5]),
LM_to_uint(buf[6], buf[7]),
state.GifScreen.BitPixel, state.GifScreen.ColorMap,
state.GifScreen.GrayScale, BitSet(buf[8], INTERLACE),
Oct 4, 2019
Oct 4, 2019
314
0, &state);
May 22, 2013
May 22, 2013
315
}
Aug 10, 2000
Aug 10, 2000
316
Oct 4, 2019
Oct 4, 2019
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
if (image) {
if (state.Gif89.transparent >= 0) {
SDL_SetColorKey(image, SDL_TRUE, state.Gif89.transparent);
}
frames = (Frame_t *)SDL_realloc(anim->frames, (anim->count + 1) * sizeof(*anim->frames));
if (!frames) {
SDL_OutOfMemory();
goto done;
}
++anim->count;
anim->frames = frames;
frame = &anim->frames[anim->count - 1];
frame->image = image;
frame->x = LM_to_uint(buf[0], buf[1]);
frame->y = LM_to_uint(buf[2], buf[3]);
frame->disposal = state.Gif89.disposal;
frame->delay = state.Gif89.delayTime*10;
if (!load_anim) {
/* We only need one frame, we're done */
goto done;
}
}
Aug 10, 2000
Aug 10, 2000
342
343
344
}
done:
Oct 4, 2019
Oct 4, 2019
345
346
347
348
349
350
351
352
353
if (anim->count > 1) {
/* Normalize the frames */
if (!NormalizeFrames(anim->frames, anim->count)) {
int i;
for (i = 0; i < anim->count; ++i) {
SDL_FreeSurface(anim->frames[i].image);
}
anim->count = 0;
}
Feb 4, 2006
Feb 4, 2006
354
}
Oct 4, 2019
Oct 4, 2019
355
356
357
358
359
360
if (anim->count == 0) {
SDL_free(anim->frames);
SDL_free(anim);
return NULL;
}
return anim;
Aug 10, 2000
Aug 10, 2000
361
362
363
364
365
366
367
368
369
370
371
372
373
}
static int
ReadColorMap(SDL_RWops *src, int number,
unsigned char buffer[3][MAXCOLORMAPSIZE], int *gray)
{
int i;
unsigned char rgb[3];
int flag;
flag = TRUE;
for (i = 0; i < number; ++i) {
Sep 11, 2019
Sep 11, 2019
374
375
376
377
378
379
380
381
if (!ReadOK(src, rgb, sizeof(rgb))) {
RWSetMsg("bad colormap");
return 1;
}
buffer[CM_RED][i] = rgb[0];
buffer[CM_GREEN][i] = rgb[1];
buffer[CM_BLUE][i] = rgb[2];
flag &= (rgb[0] == rgb[1] && rgb[1] == rgb[2]);
Aug 10, 2000
Aug 10, 2000
382
383
384
385
}
#if 0
if (flag)
Sep 11, 2019
Sep 11, 2019
386
*gray = (number == 2) ? PBM_TYPE : PGM_TYPE;
Aug 10, 2000
Aug 10, 2000
387
else
Sep 11, 2019
Sep 11, 2019
388
*gray = PPM_TYPE;
Aug 10, 2000
Aug 10, 2000
389
390
391
392
393
394
395
396
#else
*gray = 0;
#endif
return FALSE;
}
static int
Jun 10, 2019
Jun 10, 2019
397
DoExtension(SDL_RWops *src, int label, State_t * state)
Aug 10, 2000
Aug 10, 2000
398
{
Jun 10, 2019
Jun 10, 2019
399
unsigned char buf[256];
Aug 10, 2000
Aug 10, 2000
400
401
402
char *str;
switch (label) {
May 22, 2013
May 22, 2013
403
case 0x01: /* Plain Text Extension */
Sep 11, 2019
Sep 11, 2019
404
405
str = "Plain Text Extension";
break;
May 22, 2013
May 22, 2013
406
case 0xff: /* Application Extension */
Sep 11, 2019
Sep 11, 2019
407
408
str = "Application Extension";
break;
May 22, 2013
May 22, 2013
409
case 0xfe: /* Comment Extension */
Sep 11, 2019
Sep 11, 2019
410
411
412
413
str = "Comment Extension";
while (GetDataBlock(src, (unsigned char *) buf, state) > 0)
;
return FALSE;
May 22, 2013
May 22, 2013
414
case 0xf9: /* Graphic Control Extension */
Sep 11, 2019
Sep 11, 2019
415
416
417
418
419
420
421
422
423
424
425
str = "Graphic Control Extension";
(void) GetDataBlock(src, (unsigned char *) buf, state);
state->Gif89.disposal = (buf[0] >> 2) & 0x7;
state->Gif89.inputFlag = (buf[0] >> 1) & 0x1;
state->Gif89.delayTime = LM_to_uint(buf[1], buf[2]);
if ((buf[0] & 0x1) != 0)
state->Gif89.transparent = buf[3];
while (GetDataBlock(src, (unsigned char *) buf, state) > 0)
;
return FALSE;
Aug 10, 2000
Aug 10, 2000
426
default:
Sep 11, 2019
Sep 11, 2019
427
428
429
str = (char *)buf;
SDL_snprintf(str, 256, "UNKNOWN (0x%02x)", label);
break;
Aug 10, 2000
Aug 10, 2000
430
431
}
Jun 10, 2019
Jun 10, 2019
432
while (GetDataBlock(src, (unsigned char *) buf, state) > 0)
Sep 11, 2019
Sep 11, 2019
433
;
Aug 10, 2000
Aug 10, 2000
434
435
436
437
438
return FALSE;
}
static int
Jun 10, 2019
Jun 10, 2019
439
GetDataBlock(SDL_RWops *src, unsigned char *buf, State_t * state)
Aug 10, 2000
Aug 10, 2000
440
441
442
443
{
unsigned char count;
if (!ReadOK(src, &count, 1)) {
Sep 11, 2019
Sep 11, 2019
444
445
/* pm_message("error in getting DataBlock size" ); */
return -1;
Aug 10, 2000
Aug 10, 2000
446
}
Jun 10, 2019
Jun 10, 2019
447
state->ZeroDataBlock = count == 0;
Aug 10, 2000
Aug 10, 2000
448
449
if ((count != 0) && (!ReadOK(src, buf, count))) {
Sep 11, 2019
Sep 11, 2019
450
451
/* pm_message("error in reading DataBlock" ); */
return -1;
Aug 10, 2000
Aug 10, 2000
452
453
454
455
456
}
return count;
}
static int
Jun 10, 2019
Jun 10, 2019
457
GetCode(SDL_RWops *src, int code_size, int flag, State_t * state)
Aug 10, 2000
Aug 10, 2000
458
459
460
461
462
{
int i, j, ret;
unsigned char count;
if (flag) {
Sep 11, 2019
Sep 11, 2019
463
464
465
466
state->curbit = 0;
state->lastbit = 0;
state->done = FALSE;
return 0;
Aug 10, 2000
Aug 10, 2000
467
}
Jun 10, 2019
Jun 10, 2019
468
if ((state->curbit + code_size) >= state->lastbit) {
Sep 11, 2019
Sep 11, 2019
469
470
471
472
473
474
475
if (state->done) {
if (state->curbit >= state->lastbit)
RWSetMsg("ran off the end of my bits");
return -1;
}
state->buf[0] = state->buf[state->last_byte - 2];
state->buf[1] = state->buf[state->last_byte - 1];
Aug 10, 2000
Aug 10, 2000
476
Sep 12, 2019
Sep 12, 2019
477
478
479
480
if ((ret = GetDataBlock(src, &state->buf[2], state)) > 0)
count = (unsigned char) ret;
else {
count = 0;
Sep 11, 2019
Sep 11, 2019
481
state->done = TRUE;
Sep 12, 2019
Sep 12, 2019
482
}
Aug 10, 2000
Aug 10, 2000
483
Sep 11, 2019
Sep 11, 2019
484
485
486
state->last_byte = 2 + count;
state->curbit = (state->curbit - state->lastbit) + 16;
state->lastbit = (2 + count) * 8;
Aug 10, 2000
Aug 10, 2000
487
488
}
ret = 0;
Jun 10, 2019
Jun 10, 2019
489
for (i = state->curbit, j = 0; j < code_size; ++i, ++j)
Sep 11, 2019
Sep 11, 2019
490
ret |= ((state->buf[i / 8] & (1 << (i % 8))) != 0) << j;
Aug 10, 2000
Aug 10, 2000
491
Jun 10, 2019
Jun 10, 2019
492
state->curbit += code_size;
Aug 10, 2000
Aug 10, 2000
493
494
495
496
497
return ret;
}
static int
Jun 10, 2019
Jun 10, 2019
498
LWZReadByte(SDL_RWops *src, int flag, int input_code_size, State_t * state)
Aug 10, 2000
Aug 10, 2000
499
500
501
502
{
int code, incode;
register int i;
Dec 28, 2007
Dec 28, 2007
503
504
505
506
/* Fixed buffer overflow found by Michael Skladnikiewicz */
if (input_code_size > MAX_LWZ_BITS)
return -1;
Aug 10, 2000
Aug 10, 2000
507
if (flag) {
Sep 11, 2019
Sep 11, 2019
508
509
510
511
512
513
state->set_code_size = input_code_size;
state->code_size = state->set_code_size + 1;
state->clear_code = 1 << state->set_code_size;
state->end_code = state->clear_code + 1;
state->max_code_size = 2 * state->clear_code;
state->max_code = state->clear_code + 2;
Aug 10, 2000
Aug 10, 2000
514
Sep 11, 2019
Sep 11, 2019
515
GetCode(src, 0, TRUE, state);
Aug 10, 2000
Aug 10, 2000
516
Sep 11, 2019
Sep 11, 2019
517
state->fresh = TRUE;
Aug 10, 2000
Aug 10, 2000
518
Sep 11, 2019
Sep 11, 2019
519
520
521
522
523
524
525
for (i = 0; i < state->clear_code; ++i) {
state->table[0][i] = 0;
state->table[1][i] = i;
}
state->table[1][0] = 0;
for (; i < (1 << MAX_LWZ_BITS); ++i)
state->table[0][i] = 0;
Aug 10, 2000
Aug 10, 2000
526
Sep 11, 2019
Sep 11, 2019
527
state->sp = state->stack;
Aug 10, 2000
Aug 10, 2000
528
Sep 11, 2019
Sep 11, 2019
529
return 0;
Jun 10, 2019
Jun 10, 2019
530
} else if (state->fresh) {
Sep 11, 2019
Sep 11, 2019
531
532
533
534
535
state->fresh = FALSE;
do {
state->firstcode = state->oldcode = GetCode(src, state->code_size, FALSE, state);
} while (state->firstcode == state->clear_code);
return state->firstcode;
Jun 10, 2019
Jun 10, 2019
536
537
}
if (state->sp > state->stack)
Sep 11, 2019
Sep 11, 2019
538
return *--state->sp;
Jun 10, 2019
Jun 10, 2019
539
540
while ((code = GetCode(src, state->code_size, FALSE, state)) >= 0) {
Sep 11, 2019
Sep 11, 2019
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
if (code == state->clear_code) {
for (i = 0; i < state->clear_code; ++i) {
state->table[0][i] = 0;
state->table[1][i] = i;
}
for (; i < (1 << MAX_LWZ_BITS); ++i)
state->table[0][i] = state->table[1][i] = 0;
state->code_size = state->set_code_size + 1;
state->max_code_size = 2 * state->clear_code;
state->max_code = state->clear_code + 2;
state->sp = state->stack;
state->firstcode = state->oldcode = GetCode(src, state->code_size, FALSE, state);
return state->firstcode;
} else if (code == state->end_code) {
int count;
unsigned char buf[260];
if (state->ZeroDataBlock)
return -2;
while ((count = GetDataBlock(src, buf, state)) > 0)
;
if (count != 0) {
/*
* pm_message("missing EOD in data stream (common occurence)");
*/
}
return -2;
May 22, 2013
May 22, 2013
570
}
Sep 11, 2019
Sep 11, 2019
571
incode = code;
May 22, 2013
May 22, 2013
572
Sep 11, 2019
Sep 11, 2019
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
if (code >= state->max_code) {
*state->sp++ = state->firstcode;
code = state->oldcode;
}
while (code >= state->clear_code) {
/* Guard against buffer overruns */
if (code < 0 || code >= (1 << MAX_LWZ_BITS)) {
RWSetMsg("invalid LWZ data");
return -3;
}
*state->sp++ = state->table[1][code];
if (code == state->table[0][code]) {
RWSetMsg("circular table entry BIG ERROR");
return -3;
}
code = state->table[0][code];
May 22, 2013
May 22, 2013
589
590
591
592
593
}
/* Guard against buffer overruns */
if (code < 0 || code >= (1 << MAX_LWZ_BITS)) {
RWSetMsg("invalid LWZ data");
Sep 11, 2019
Sep 11, 2019
594
return -4;
May 22, 2013
May 22, 2013
595
}
Sep 11, 2019
Sep 11, 2019
596
597
598
599
600
601
602
603
604
605
606
*state->sp++ = state->firstcode = state->table[1][code];
if ((code = state->max_code) < (1 << MAX_LWZ_BITS)) {
state->table[0][code] = state->oldcode;
state->table[1][code] = state->firstcode;
++state->max_code;
if ((state->max_code >= state->max_code_size) &&
(state->max_code_size < (1 << MAX_LWZ_BITS))) {
state->max_code_size *= 2;
++state->code_size;
}
May 22, 2013
May 22, 2013
607
}
Sep 11, 2019
Sep 11, 2019
608
state->oldcode = incode;
May 22, 2013
May 22, 2013
609
Sep 11, 2019
Sep 11, 2019
610
611
if (state->sp > state->stack)
return *--state->sp;
Aug 10, 2000
Aug 10, 2000
612
613
614
615
616
617
}
return code;
}
static Image *
ReadImage(SDL_RWops * src, int len, int height, int cmapSize,
Sep 11, 2019
Sep 11, 2019
618
unsigned char cmap[3][MAXCOLORMAPSIZE],
Oct 9, 2019
Oct 9, 2019
619
int gray, int interlace, int ignore, State_t * state)
Aug 10, 2000
Aug 10, 2000
620
621
622
623
624
625
{
Image *image;
unsigned char c;
int i, v;
int xpos = 0, ypos = 0, pass = 0;
Oct 9, 2019
Oct 9, 2019
626
627
(void) gray; /* unused */
Aug 10, 2000
Aug 10, 2000
628
/*
May 22, 2013
May 22, 2013
629
** Initialize the compression routines
Aug 10, 2000
Aug 10, 2000
630
631
*/
if (!ReadOK(src, &c, 1)) {
Sep 11, 2019
Sep 11, 2019
632
633
RWSetMsg("EOF / read error on image data");
return NULL;
Aug 10, 2000
Aug 10, 2000
634
}
Jun 10, 2019
Jun 10, 2019
635
if (LWZReadByte(src, TRUE, c, state) < 0) {
Sep 11, 2019
Sep 11, 2019
636
637
RWSetMsg("error reading image");
return NULL;
Aug 10, 2000
Aug 10, 2000
638
639
}
/*
May 22, 2013
May 22, 2013
640
** If this is an "uninteresting picture" ignore it.
Aug 10, 2000
Aug 10, 2000
641
642
*/
if (ignore) {
Sep 11, 2019
Sep 11, 2019
643
644
645
while (LWZReadByte(src, FALSE, c, state) >= 0)
;
return NULL;
Aug 10, 2000
Aug 10, 2000
646
647
648
649
}
image = ImageNewCmap(len, height, cmapSize);
for (i = 0; i < cmapSize; i++)
Sep 11, 2019
Sep 11, 2019
650
651
ImageSetCmap(image, i, cmap[CM_RED][i],
cmap[CM_GREEN][i], cmap[CM_BLUE][i]);
Aug 10, 2000
Aug 10, 2000
652
Jun 10, 2019
Jun 10, 2019
653
while ((v = LWZReadByte(src, FALSE, c, state)) >= 0) {
Oct 9, 2019
Oct 9, 2019
654
((Uint8 *)image->pixels)[xpos + ypos * image->pitch] = (Uint8)v;
Sep 11, 2019
Sep 11, 2019
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
++xpos;
if (xpos == len) {
xpos = 0;
if (interlace) {
switch (pass) {
case 0:
case 1:
ypos += 8;
break;
case 2:
ypos += 4;
break;
case 3:
ypos += 2;
break;
}
if (ypos >= height) {
++pass;
switch (pass) {
case 1:
ypos = 4;
break;
case 2:
ypos = 2;
break;
case 3:
ypos = 1;
break;
default:
goto fini;
}
}
} else {
++ypos;
May 22, 2013
May 22, 2013
690
691
}
}
Sep 11, 2019
Sep 11, 2019
692
693
if (ypos >= height)
break;
Aug 10, 2000
Aug 10, 2000
694
695
696
697
698
699
700
}
fini:
return image;
}
Oct 4, 2019
Oct 4, 2019
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
/* Load a GIF type animation from an SDL datasource */
IMG_Animation *IMG_LoadGIFAnimation_RW(SDL_RWops *src)
{
Anim_t *internal = IMG_LoadGIF_RW_Internal(src, SDL_TRUE);
if (internal) {
IMG_Animation *anim = (IMG_Animation *)SDL_malloc(sizeof(*anim));
if (anim) {
anim->w = internal->frames[0].image->w;
anim->h = internal->frames[0].image->h;
anim->count = internal->count;
anim->frames = (SDL_Surface **)SDL_calloc(anim->count, sizeof(*anim->frames));
anim->delays = (int *)SDL_calloc(anim->count, sizeof(*anim->delays));
if (anim->frames && anim->delays) {
int i;
for (i = 0; i < anim->count; ++i) {
anim->frames[i] = internal->frames[i].image;
anim->delays[i] = internal->frames[i].delay;
}
} else {
IMG_FreeAnimation(anim);
anim = NULL;
}
}
if (!anim) {
SDL_OutOfMemory();
}
SDL_free(internal->frames);
SDL_free(internal);
return anim;
}
return NULL;
}
#else
/* Load a GIF type animation from an SDL datasource */
IMG_Animation *IMG_LoadGIFAnimation_RW(SDL_RWops *src)
{
return NULL;
}
#endif /* LOAD_GIF */
#if !defined(__APPLE__) || defined(SDL_IMAGE_USE_COMMON_BACKEND)
#ifdef LOAD_GIF
/* See if an image is contained in a data source */
int IMG_isGIF(SDL_RWops *src)
{
Sint64 start;
int is_GIF;
char magic[6];
if ( !src )
return 0;
start = SDL_RWtell(src);
is_GIF = 0;
if ( SDL_RWread(src, magic, sizeof(magic), 1) ) {
if ( (SDL_strncmp(magic, "GIF", 3) == 0) &&
((SDL_memcmp(magic + 3, "87a", 3) == 0) ||
(SDL_memcmp(magic + 3, "89a", 3) == 0)) ) {
is_GIF = 1;
}
}
SDL_RWseek(src, start, RW_SEEK_SET);
return(is_GIF);
}
/* Load a GIF type image from an SDL datasource */
SDL_Surface *IMG_LoadGIF_RW(SDL_RWops *src)
{
SDL_Surface *image = NULL;
Anim_t *internal = IMG_LoadGIF_RW_Internal(src, SDL_FALSE);
if (internal) {
image = internal->frames[0].image;
SDL_free(internal->frames);
SDL_free(internal);
}
return image;
}
Aug 10, 2000
Aug 10, 2000
786
#else
Oct 9, 2019
Oct 9, 2019
787
788
789
#if _MSC_VER >= 1300
#pragma warning(disable : 4100) /* warning C4100: 'op' : unreferenced formal parameter */
#endif
Aug 10, 2000
Aug 10, 2000
790
791
792
793
/* See if an image is contained in a data source */
int IMG_isGIF(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
794
return(0);
Aug 10, 2000
Aug 10, 2000
795
796
797
798
799
}
/* Load a GIF type image from an SDL datasource */
SDL_Surface *IMG_LoadGIF_RW(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
800
return(NULL);
Aug 10, 2000
Aug 10, 2000
801
802
803
}
#endif /* LOAD_GIF */
Nov 10, 2009
Nov 10, 2009
804
805
#endif /* !defined(__APPLE__) || defined(SDL_IMAGE_USE_COMMON_BACKEND) */