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
|
/*
* whirlgif.h
*
* Copyright (c) 1997,1998 by Hans Dinsen-Hansen
* Copyright (c) 1995,1996 by Kevin Kadow
* Copyright (c) 1990,1991,1992 by Mark Podlipec.
* All rights reserved.
*
* This software may be freely copied, modified and redistributed
* without fee provided that this copyright notice is preserved
* intact on all copies and modified copies.
*
* There is no warranty or other guarantee of fitness of this software.
* It is provided solely "as is". The author(s) disclaim(s) all
* responsibility and liability with respect to this software's usage
* or its effect upon hardware or computer systems.
*
* The Graphics Interchange format (c) is the Copyright property of
* Compuserve Incorporated. Gif(sm) is a Service Mark property of
* Compuserve Incorporated.
*
*/
#define gif_encod_header
#define DA_REV 3.02
/* common includes */
#include <stdio.h>
#include <stdlib.h>
#ifdef _USE_STRINGS_H
#include <strings.h>
#else
#include <string.h>
#endif
#ifdef _FOPEN_TXT_OR_BIN
#define WRIBIN "wb"
#define REATXT "rt"
#define REABIN "rb"
#else
/* Usually there is no need to distinguish between binary and txt */
#define WRIBIN "w"
#define REATXT "r"
#define REABIN "r"
#endif
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
/* define constants and defaults */
/* Default amount of inter-frame time */
#define DEFAULT_TIME 10
/* If set to 1, Netscape 'loop' code will be added by default */
#define DEFAULT_LOOP 0
/* If set to 1, use the colormaps from all images, not just the first */
#define DEFAULT_USE_COLORMAP 0
/* Used in calculating the transparent color */
#define TRANS_NONE 1
#define TRANS_RGB 2
#define TRANS_MAP 3
#define DISP_NONE 0
#define DISP_NOT 1
#define DISP_BACK 2
#define DISP_PREV 3
#define DEFAULT_DISPOSAL DISP_NONE
/* set default disposal method here to any of the DISP_XXXX values */
#define BIGSTRING 256
#define MAXVAL 4100 /* maxval of lzw coding size */
#define MAXVALP 4200
#define TERMIN 'T'
#define LOOKUP 'L'
#define SEARCH 'S'
#define noOfArrays 20
/* defines the amount of memory set aside in the encoding for the
* LOOKUP type nodes; for a 256 color GIF, the number of LOOKUP
* nodes will be <= noOfArrays, for a 128 color GIF the number of
* LOOKUP nodes will be <= 2 * noOfArrays, etc. */
/* define shorthand for various types */
#define LONG int
#define ULONG unsigned int
#define BYTE char
#define UBYTE unsigned char
#define SHORT short
#define USHORT unsigned short
#define WORD short int
#define UWORD unsigned short int
int chainlen = 0, maxchainlen = 0, nodecount = 0, lookuptypes = 0, nbits;
short need = 8;
unsigned int debugFlag, verbose;
int count;
/* definition of various structures */
typedef struct Transparency {
int type;
UBYTE valid;
UBYTE map;
UBYTE red;
UBYTE green;
UBYTE blue;
} Transparency;
typedef struct Global {
Transparency trans;
int left;
int top;
unsigned int time;
unsigned short disposal;
} Global;
typedef struct GifScreenHdr {
int width;
int height;
UBYTE m;
UBYTE cres;
UBYTE pixbits;
UBYTE bc;
UBYTE aspect;
} GifScreenHdr;
typedef union GifColor {
struct cmap {
UBYTE red;
UBYTE green;
UBYTE blue;
UBYTE pad;
} cmap;
ULONG pixel;
} GifColor;
typedef struct GifImageHdr {
int left;
int top;
int width;
int height;
UBYTE m;
UBYTE i;
UBYTE pixbits;
UBYTE reserved;
} GifImageHdr;
typedef struct GifTable {
UBYTE valid;
UBYTE data;
UBYTE first;
UBYTE res;
int last;
} GifTable;
typedef struct GifTree {
char typ; /* terminating, lookup, or search */
int code; /* the code to be output */
UBYTE ix; /* the color map index */
struct GifTree **node, *nxt, *alt;
} GifTree;
GifTree *empty[256], GifRoot = {LOOKUP, 0, 0, empty, NULL, NULL},
*topNode, *baseNode, **nodeArray, **lastArray;
/* define inline functions */
#define GifPutShort(i, fout) {fputc(i&0xff, fout); fputc(i>>8, fout);}
#define GifGetShort(fin) (Xgetc(fin) | Xgetc(fin)<<8)
/* forward declaration of the functions */
void CalcTrans();
void GifAddToTable();
void GifClearTable();
void GifComment();
void GifDecode();
void GifEncode();
ULONG GifGetCode();
void GifGetNextEntry();
void GifLoop();
void GifReadFile();
void GifScreenHeader();
UBYTE *GifSendData();
void ReadImageHeader();
void SetOffset();
void TheEnd();
void TheEnd1();
void Usage();
void WriteImageHeader();
UBYTE Xgetc();
void ClearTree(int cc, GifTree *root);
char *AddCodeToBuffer(int code, short n, char *buf);
|