-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathxvgifwr.cpp
1247 lines (1016 loc) · 34.2 KB
/
xvgifwr.cpp
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
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
690
691
692
693
694
695
696
697
698
699
700
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
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
20050129 mvh Adapted for use in the Conquest DICOM server (see //)
20050130 mvh Made it ansi C
20050826 mvh Made it reentrant to avoid gif file corruption in server
20051219 mvh Fixed leak
20070902 mvh Made cpp
20080905 bcb Removed malloc.h for DARWIN
20090620 jf Include file stuff
20091231 bcb Changed char* to const char* for gcc4.2 warnings
20100111 mvh Merged
20100309 bcb Commented out unused variables (gcc4.2 Warnings)
20100619 bcb Added UNUSED_ARGUMENT.
20100717 mvh Merged
20101004 mvh Taken lsp's code of avs_animatedgif into use
20101116 bcb Warnings fixed
20101120 mvh Merged
20101128 mvh Fixed double fclose
20120703 bcb Added local prototypes
*/
/*
* xvgifwr.c - handles writing of GIF files. based on flgife.c and
* flgifc.c from the FBM Library, by Michael Maudlin
*
* Contains:
* WriteGIF(fp, pic, ptype, w, h, rmap, gmap, bmap, numcols, colorstyle,
* comment)
*
* Note: slightly brain-damaged, in that it'll only write non-interlaced
* GIF files (in the interests of speed, or something)
*
*/
#if 0
/*****************************************************************
* Portions of this code Copyright (C) 1989 by Michael Mauldin.
* Permission is granted to use this file in whole or in
* part for any purpose, educational, recreational or commercial,
* provided that this copyright notice is retained unchanged.
* This software is available to all free of charge by anonymous
* FTP and in the UUNET archives.
*
*
* Authors: Michael Mauldin (mlm@cs.cmu.edu)
* David Rowley (mgardi@watdcsu.waterloo.edu)
*
* Based on: compress.c - File compression ala IEEE Computer, June 1984.
*
* Spencer W. Thomas (decvax!harpo!utah-cs!utah-gr!thomas)
* Jim McKie (decvax!mcvax!jim)
* Steve Davies (decvax!vax135!petsd!peora!srd)
* Ken Turkowski (decvax!decwrl!turtlevax!ken)
* James A. Woods (decvax!ihnp4!ames!jaw)
* Joe Orost (decvax!vax135!petsd!joe)
*****************************************************************/
#ifndef UNUSED_ARGUMENT
#define UNUSED_ARGUMENT(x) (void)x
#endif
#include <stdio.h>
#include <stdlib.h> //DUCKHEAD92
#include <string.h>
#ifndef DARWIN
#include <malloc.h>
#endif //DARWIN
#define MONO(rd,gn,bl) ( ((int)(rd)*11 + (int)(gn)*16 + (int)(bl)*5) >> 5)
#define XV_BITS 12 /* BITS was already defined on some systems */
#define MSDOS 1
#define HSIZE 5003 /* 80% occupancy */
#define MAXCODE(n_bits) ( (1 << (n_bits)) - 1)
typedef long int count_int;
typedef unsigned char byte;
typedef unsigned long u_long;
typedef unsigned char char_type;
struct aap
{ unsigned long cur_accum;
int cur_bits;
int n_bits; /* number of bits/code */
int maxcode; /* maximum code, given n_bits */
int free_ent; /* first unused entry */
int clear_flg;
int g_init_bits;
FILE *g_outfile;
int ClearCode;
int EOFCode;
int a_count;
char accum[ 256 ];
byte pc2nc[256],r1[256],g1[256],b1[256];
};
static void putword (int, FILE *);
static void compress (int, FILE *, byte *, int, struct aap *);
static void output (int, struct aap *);
static void cl_block (count_int *, struct aap *);
static void cl_hash (count_int, count_int *);
static void char_out (int, struct aap *);
static void flush_char(struct aap *);
/*************************************************************/
int WriteGIF(FILE *fp, unsigned char *pic, int ptype, int w, int h,
unsigned char *rmap, unsigned char *gmap,
unsigned char *bmap, int numcols, int colorstyle,
const char *comment)
{ int RWidth, RHeight;
int LeftOfs, TopOfs;
int ColorMapSize, InitCodeSize, Background, BitsPerPixel;
int i,j,nc;
byte *pic8;
// byte rtemp[256],gtemp[256],btemp[256];
int Interlace;
struct aap *a = (struct aap *)malloc(sizeof(struct aap));
memset(a, 0, sizeof(struct aap));
UNUSED_ARGUMENT(ptype);
// if (ptype == PIC24) { /* have to quantize down to 8 bits */
// pic8 = Conv24to8(pic, w, h, 256, rtemp,gtemp,btemp);
// if (!pic8) FatalError("Unable to malloc in WriteGIF()");
// rmap = rtemp; gmap = gtemp; bmap = btemp; numcols=256;
// }
// else
pic8 = pic;
Interlace = 0;
Background = 0;
for (i=0; i<256; i++) { a->pc2nc[i] = a->r1[i] = a->g1[i] = a->b1[i] = 0; }
/* compute number of unique colors */
nc = 0;
for (i=0; i<numcols; i++) {
/* see if color #i is already used */
for (j=0; j<i; j++) {
if (rmap[i] == rmap[j] && gmap[i] == gmap[j] &&
bmap[i] == bmap[j]) break;
}
if (j==i) { /* wasn't found */
a->pc2nc[i] = nc;
a->r1[nc] = rmap[i];
a->g1[nc] = gmap[i];
a->b1[nc] = bmap[i];
nc++;
}
else a->pc2nc[i] = a->pc2nc[j];
}
/* figure out 'BitsPerPixel' */
for (i=1; i<8; i++)
if ( (1<<i) >= nc) break;
BitsPerPixel = i;
ColorMapSize = 1 << BitsPerPixel;
RWidth = w;
RHeight = h;
LeftOfs = TopOfs = 0;
if (BitsPerPixel <= 1) InitCodeSize = 2;
else InitCodeSize = BitsPerPixel;
if (!fp) {
fprintf(stderr, "WriteGIF: file not open for writing\n" );
// if (ptype == PIC24) free(pic8);
free(a);
return (1);
}
// if (DEBUG)
// fprintf(stderr,"WrGIF: pic=%lx, w,h=%dx%d, numcols=%d, Bits%d,Cmap=%d\n",
// (u_long) pic8, w,h,numcols,BitsPerPixel,ColorMapSize);
if (comment && strlen(comment) > (size_t) 0)
fwrite("GIF89a", (size_t) 1, (size_t) 6, fp); /* the GIF magic number */
else
fwrite("GIF87a", (size_t) 1, (size_t) 6, fp); /* the GIF magic number */
putword(RWidth, fp); /* screen descriptor */
putword(RHeight, fp);
i = 0x80; /* Yes, there is a color map */
i |= (8-1)<<4; /* OR in the color resolution (hardwired 8) */
i |= (BitsPerPixel - 1); /* OR in the # of bits per pixel */
fputc(i,fp);
fputc(Background, fp); /* background color */
fputc(0, fp); /* future expansion byte */
if (colorstyle == 1) { /* greyscale */
for (i=0; i<ColorMapSize; i++) {
j = MONO(a->r1[i], a->g1[i], a->b1[i]);
fputc(j, fp);
fputc(j, fp);
fputc(j, fp);
}
}
else {
for (i=0; i<ColorMapSize; i++) { /* write out Global colormap */
fputc(a->r1[i], fp);
fputc(a->g1[i], fp);
fputc(a->b1[i], fp);
}
}
if (comment && strlen(comment) > (size_t) 0) { /* write comment blocks */
const char *sp;
int k, blen;
fputc(0x21, fp); /* EXTENSION block */
fputc(0xFE, fp); /* comment extension */
sp = comment;
while ( (blen=strlen(sp)) > 0) {
if (blen>255) blen = 255;
fputc(blen, fp);
for (k=0; k<blen; k++, sp++) fputc(*sp, fp);
}
fputc(0, fp); /* zero-length data subblock to end extension */
}
fputc( ',', fp ); /* image separator */
/* Write the Image header */
putword(LeftOfs, fp);
putword(TopOfs, fp);
putword(RWidth, fp);
putword(RHeight, fp);
if (Interlace) fputc(0x40, fp); /* Use Global Colormap, maybe Interlace */
else fputc(0x00, fp);
fputc(InitCodeSize, fp);
compress(InitCodeSize+1, fp, pic8, w*h, a);
fputc(0,fp); /* Write out a Zero-length packet (EOF) */
fputc(';',fp); /* Write GIF file terminator */
// if (ptype == PIC24) free(pic8);
free(a);
if (ferror(fp)) return -1;
return (0);
}
/******************************/
static void putword(int w, FILE *fp)
{
/* writes a 16-bit integer in GIF order (LSB first) */
fputc(w & 0xff, fp);
fputc((w>>8)&0xff, fp);
}
/***********************************************************************/
/*
* To save much memory, we overlay the table used by compress() with those
* used by decompress(). The tab_prefix table is the same size and type
* as the codetab. The tab_suffix table needs 2**BITS characters. We
* get this from the beginning of htab. The output stack uses the rest
* of htab, and contains characters. There is plenty of room for any
* possible stack (stack used to be 8000 characters).
*/
/*
* block compression parameters -- after all codes are used up,
* and compression rate changes, start over.
*/
/*
* compress stdin to stdout
*
* Algorithm: use open addressing double hashing (no chaining) on the
* prefix code / next character combination. We do a variant of Knuth's
* algorithm D (vol. 3, sec. 6.4) along with G. Knott's relatively-prime
* secondary probe. Here, the modular division first probe is gives way
* to a faster exclusive-or manipulation. Also do block compression with
* an adaptive reset, whereby the code table is cleared when the compression
* ratio decreases, but after the table fills. The variable-length output
* codes are re-sized at this point, and a special CLEAR code is generated
* for the decompressor. Late addition: construct the table according to
* file size for noticeable speed improvement on small files. Please direct
* questions about this implementation to ames!jaw.
*/
/********************************************************/
static void compress(int init_bits, FILE *outfile, byte *data, int len, struct aap *a)
{
register long fcode;
register int i = 0;
register int c;
register int ent;
register int disp;
register int hsize_reg;
register int hshift;
unsigned short codetab [HSIZE];
count_int htab [HSIZE];
/*
* Set up the globals: g_init_bits - initial number of bits
* g_outfile - pointer to output file
*/
a->g_init_bits = init_bits;
a->g_outfile = outfile;
/* initialize 'compress' globals */
memset((char *) htab, 0, sizeof(htab));
memset((char *) codetab, 0, sizeof(codetab));
a->free_ent = 0;
a->clear_flg = 0;
a->cur_accum = 0;
a->cur_bits = 0;
/*
* Set up the necessary values
*/
a->clear_flg = 0;
a->maxcode = MAXCODE(a->n_bits = a->g_init_bits);
a->ClearCode = (1 << (init_bits - 1));
a->EOFCode = a->ClearCode + 1;
a->free_ent = a->ClearCode + 2;
a->a_count = 0;
ent = a->pc2nc[*data++]; len--;
hshift = 0;
for ( fcode = (long)HSIZE; fcode < 65536L; fcode *= 2L )
hshift++;
hshift = 8 - hshift; /* set hash code range bound */
hsize_reg = HSIZE;
cl_hash( (count_int) hsize_reg, htab); /* clear hash table */
output(a->ClearCode, a);
while (len) {
c = a->pc2nc[*data++]; len--;
fcode = (long) ( ( (long) c << XV_BITS) + ent);
i = (((int) c << hshift) ^ ent); /* xor hashing */
if ( htab[i] == fcode ) {
ent = codetab[i];
continue;
}
else if ( (long)htab[i] < 0 ) /* empty slot */
goto nomatch;
disp = hsize_reg - i; /* secondary hash (after G. Knott) */
if ( i == 0 )
disp = 1;
probe:
if ( (i -= disp) < 0 )
i += hsize_reg;
if ( htab[i] == fcode ) {
ent = codetab[i];
continue;
}
if ( (long)htab[i] >= 0 )
goto probe;
nomatch:
output(ent, a);
ent = c;
if ( a->free_ent < (1<<XV_BITS) ) {
codetab[i] = a->free_ent++; /* code -> hashtable */
htab[i] = fcode;
}
else
cl_block(htab, a);
}
/* Put out the final code */
output(ent, a);
output(a->EOFCode, a);
}
/*****************************************************************
* TAG( output )
*
* Output the given code.
* Inputs:
* code: A n_bits-bit integer. If == -1, then EOF. This assumes
* that n_bits =< (long)wordsize - 1.
* Outputs:
* Outputs code to the file.
* Assumptions:
* Chars are 8 bits long.
* Algorithm:
* Maintain a BITS character long buffer (so that 8 codes will
* fit in it exactly). Use the VAX insv instruction to insert each
* code in turn. When the buffer fills up empty it and start over.
*/
static
unsigned long masks[] = { 0x0000, 0x0001, 0x0003, 0x0007, 0x000F,
0x001F, 0x003F, 0x007F, 0x00FF,
0x01FF, 0x03FF, 0x07FF, 0x0FFF,
0x1FFF, 0x3FFF, 0x7FFF, 0xFFFF };
static void output(int code, struct aap *a)
{
a->cur_accum &= masks[a->cur_bits];
if (a->cur_bits > 0)
a->cur_accum |= ((long)code << a->cur_bits);
else
a->cur_accum = code;
a->cur_bits += a->n_bits;
while( a->cur_bits >= 8 ) {
char_out( (int) (a->cur_accum & 0xff), a );
a->cur_accum >>= 8;
a->cur_bits -= 8;
}
/*
* If the next entry is going to be too big for the code size,
* then increase it, if possible.
*/
if (a->free_ent > a->maxcode || a->clear_flg) {
if( a->clear_flg ) {
a->maxcode = MAXCODE (a->n_bits = a->g_init_bits);
a->clear_flg = 0;
}
else {
a->n_bits++;
if ( a->n_bits == XV_BITS )
a->maxcode = (1<<XV_BITS);
else
a->maxcode = MAXCODE(a->n_bits);
}
}
if( code == a->EOFCode ) {
/* At EOF, write the rest of the buffer */
while( a->cur_bits > 0 ) {
char_out( (int)(a->cur_accum & 0xff), a );
a->cur_accum >>= 8;
a->cur_bits -= 8;
}
flush_char(a);
fflush( a->g_outfile );
}
}
/********************************/
static void cl_block (count_int *htab, struct aap *a) /* table clear for block compress */
{
/* Clear out the hash table */
cl_hash ( (count_int)HSIZE, htab );
a->free_ent = a->ClearCode + 2;
a->clear_flg = 1;
output(a->ClearCode, a);
}
/********************************/
static void cl_hash(register count_int hsize, count_int *htab) /* reset code table */
{
register count_int *htab_p = htab+hsize;
register long i;
register long m1 = -1;
i = hsize - 16;
do { /* might use Sys V memset(3) here */
*(htab_p-16) = m1;
*(htab_p-15) = m1;
*(htab_p-14) = m1;
*(htab_p-13) = m1;
*(htab_p-12) = m1;
*(htab_p-11) = m1;
*(htab_p-10) = m1;
*(htab_p-9) = m1;
*(htab_p-8) = m1;
*(htab_p-7) = m1;
*(htab_p-6) = m1;
*(htab_p-5) = m1;
*(htab_p-4) = m1;
*(htab_p-3) = m1;
*(htab_p-2) = m1;
*(htab_p-1) = m1;
htab_p -= 16;
} while ((i -= 16) >= 0);
for ( i += 16; i > 0; i-- )
*--htab_p = m1;
}
/******************************************************************************
*
* GIF Specific routines
*
******************************************************************************/
/*
* Add a character to the end of the current packet, and if it is 254
* characters, flush the packet to disk.
*/
static void char_out(int c, struct aap *a)
{
a->accum[ a->a_count++ ] = c;
if( a->a_count >= 254 )
flush_char(a);
}
/*
* Flush the packet to disk, and reset the accumulator
*/
static void flush_char(struct aap *a)
{
if( a->a_count > 0 ) {
fputc(a->a_count, a->g_outfile );
fwrite(a->accum, (size_t) 1, (size_t) a->a_count, a->g_outfile );
a->a_count = 0;
}
}
#else
/************************************************************************/
/************************************************************************/
/************************************************************************/
/************************************************************************/
/************************************************************************/
/************************************************************************/
// new implementation includes animated gif
/************************************************************************/
/************************************************************************/
/************************************************************************/
/************************************************************************/
/************************************************************************/
/************************************************************************/
/*****************************************************************
* Portions of this code Copyright (C) 1989 by Michael Mauldin.
* Permission is granted to use this file in whole or in
* part for any purpose, educational, recreational or commercial,
* provided that this copyright notice is retained unchanged.
* This software is available to all free of charge by anonymous
* FTP and in the UUNET archives.
*
*
* Authors: Michael Mauldin (mlm@cs.cmu.edu)
* David Rowley (mgardi@watdcsu.waterloo.edu)
*
* Based on: compress.c - File compression ala IEEE Computer, June 1984.
*
* Spencer W. Thomas (decvax!harpo!utah-cs!utah-gr!thomas)
* Jim McKie (decvax!mcvax!jim)
* Steve Davies (decvax!vax135!petsd!peora!srd)
* Ken Turkowski (decvax!decwrl!turtlevax!ken)
* James A. Woods (decvax!ihnp4!ames!jaw)
* Joe Orost (decvax!vax135!petsd!joe)
*****************************************************************/
#ifndef UNUSED_ARGUMENT
#define UNUSED_ARGUMENT(x) (void)x
#endif
#include <stdio.h>
#include <stdlib.h> //DUCKHEAD92
#include <string.h>
#ifndef DARWIN
#include <malloc.h>
#endif //DARWIN
/************************************************************************/
/* DEFINES, ENUMERATED TYPES AND CONSTANTS */
/************************************************************************/
const unsigned short MAX_PATH_LEN=1024;
/* MAX_GIFS is the number of supported calls to ANIMATED_GIF_CREAT without matching ANIMATED_GIF_CLOSE */
const unsigned char MAX_GIFS=16;
#ifndef hasColorStyleType
#define hasColorStyleType 1
enum ColorStyleType {csGlobalPalette, csLocalPalette}; // Store a global palette and/or one for each frame
#endif
#define AVS_OK 1
#define AVS_ERROR 0
#define AVSerror printf
/************************************************************************/
/* MODULE FUNCTIONS */
/************************************************************************/
#define MONO(rd,gn,bl) ( ((int)(rd)*11 + (int)(gn)*16 + (int)(bl)*5) >> 5)
#define XV_BITS 12 /* BITS was already defined on some systems */
#define HSIZE 5003 /* 80% occupancy */
#define MAXCODE(n_bits) ( (1 << (n_bits)) - 1)
typedef long int count_int;
typedef unsigned char byte;
struct GifStore
{ unsigned long cur_accum;
int cur_bits;
int n_bits; /* number of bits/code */
int maxcode; /* maximum code, given n_bits */
int free_ent; /* first unused entry */
int clear_flg;
int g_init_bits;
FILE *g_outfile;
int ClearCode;
int EOFCode;
int a_count;
char accum[ 256 ];
byte pc2nc[256],r1[256],g1[256],b1[256];
};
struct GifDetails
{ char filename[MAX_PATH_LEN];
FILE *fHandle;
int dims[2];
int Ratefps;
};
class GifManager
{
public:
GifDetails Gifs[MAX_GIFS]; // global structure to store details between calls to
// ANIMATED_GIF_CREAT, ANIMATED_GIF_WRITE and ANIMATED_GIF_CLOSE
GifManager();
int FreeHandle()
{ for (int iFreeHandle=0; iFreeHandle<MAX_GIFS; iFreeHandle++)
if (Gifs[iFreeHandle].filename[0]=='\0')
return iFreeHandle;
return -1;
}
};
/******************* prototypes ******************************/
int WritePalette(FILE *fp, GifStore *aGifStore, int ColorMapSize);
int WriteComment(FILE *fp, char *comment);
static class GifManager GifMan;
static void putword2 (int, FILE *);
static void compress (int, FILE *, byte *, int, struct GifStore *);
static void output (int, struct GifStore *);
static void cl_block (count_int *, struct GifStore *);
static void cl_hash2 (count_int, count_int *);
static void char_out (char, struct GifStore *);
static void flush_char(struct GifStore *);
GifManager::GifManager()
{ memset(Gifs, 0, sizeof(Gifs));
}
int WritePalette(FILE *fp, GifStore *aGifStore, int ColorMapSize)
{ int i;
/* write local or global colormap */
{ for (i=0; i<ColorMapSize; i++)
{ fputc(aGifStore->r1[i], fp);
fputc(aGifStore->g1[i], fp);
fputc(aGifStore->b1[i], fp);
}
}
return AVS_OK;
}
int WriteComment(FILE *fp, char *comment)
{ int i;
if (comment && strlen(comment)>(size_t)0) /* write comment block */
{ char *sp;
int blen;
fputc(0x21, fp); /* EXTENSION block */
fputc(0xFF, fp); /* comment extension, including looping detail */
sp = comment;
while ( (blen=(int)strlen(sp)) > 0)
{ if (blen>255)
blen = 255;
fputc((int)blen, fp);
for (i=0; i<blen; i++, sp++)
fputc(*sp, fp);
}
fputc(0x03, fp); /* loop count */
fputc(0x01, fp);
fputc(0xff, fp); /* forever */
fputc(0xff, fp);
fputc(0, fp); /* zero-length data subblock to end extension */
}
return AVS_OK;
}
/*************************************************************/
int WriteGIFHeader(FILE *fp, int w, int h, byte *rmap, byte *gmap, byte *bmap,
int numcols, ColorStyleType colorstyle, char *comment)
{ int RWidth, RHeight;
int LeftOfs, TopOfs;
int ColorMapSize;
int InitCodeSize, BitsPerPixel;
int Background;
int i,j;
int nc;
int Interlace;
struct GifStore *aGifStore = (struct GifStore *)malloc(sizeof(struct GifStore));
if (aGifStore==NULL)
{ AVSerror("WriteGIFHeader: out of memory");
return AVS_ERROR;
}
memset(aGifStore, 0, sizeof(struct GifStore));
Interlace = 0;
Background = 0;
for (i=0; i<256; i++)
aGifStore->pc2nc[i] = aGifStore->r1[i] = aGifStore->g1[i] = aGifStore->b1[i] = 0;
/* compute number of unique colors */
nc = 0;
for (i=0; i<numcols; i++)
{ /* see if color #i is already used */
for (j=0; j<i; j++)
{ if (rmap[i] == rmap[j] && gmap[i] == gmap[j] && bmap[i] == bmap[j])
break;
}
if (j==i) /* wasn't found */
{ aGifStore->pc2nc[i] = (byte)nc;
aGifStore->r1[nc] = rmap[i];
aGifStore->g1[nc] = gmap[i];
aGifStore->b1[nc] = bmap[i];
nc++;
}
else
aGifStore->pc2nc[i] = aGifStore->pc2nc[j];
}
/* figure out 'BitsPerPixel' */
for (i=1; i<8; i++)
if ( (1<<i) >= nc)
break;
BitsPerPixel = (char)i;
ColorMapSize = 1 << BitsPerPixel;
RWidth = w;
RHeight = h;
LeftOfs = TopOfs = 0;
if (BitsPerPixel <= 1) InitCodeSize = 2;
else InitCodeSize = BitsPerPixel;
if (!fp)
{ AVSerror("WriteGIFHeader: file not open for writing");
free(aGifStore);
return AVS_ERROR;
}
fwrite("GIF89a", (size_t) 1, (size_t) 6, fp); /* the GIF magic number */
putword2(RWidth, fp); /* screen descriptor */
putword2(RHeight, fp);
if (colorstyle==csGlobalPalette)
{ i = 0x80; /* Yes, there is a color map */
i |= (8-1)<<4; /* OR in the color resolution (hardwired 8) */
i |= (BitsPerPixel - 1); /* OR in the # of bits per pixel */
}
else
i = 0;
fputc(i,fp);
fputc(Background, fp); /* background color */
fputc(0, fp); /* future expansion byte */
if (colorstyle==csGlobalPalette)
WritePalette(fp, aGifStore, ColorMapSize);
WriteComment(fp, comment);
free(aGifStore);
return AVS_OK;
}
int WriteGIFFrame(FILE *fp, byte *p, int w, int h,
byte *rmap, byte *gmap, byte *bmap,
int numcols,
int frames, int time, ColorStyleType colorstyle) // time in 0.01 sec
{ int RWidth, RHeight;
int LeftOfs, TopOfs;
int ColorMapSize, InitCodeSize, Background, BitsPerPixel;
int i,j,f;
int nc;
byte *pic8;
int Interlace;
int cmap;
struct GifStore *aGifStore = (struct GifStore *)malloc(sizeof(struct GifStore));
if (aGifStore==NULL)
{ AVSerror("WriteGIFFrame: out of memory");
return AVS_ERROR;
}
memset(aGifStore, 0, sizeof(struct GifStore));
pic8 = p;
Interlace = 0;
Background = 0;
for (i=0; i<256; i++)
aGifStore->pc2nc[i] = aGifStore->r1[i] = aGifStore->g1[i] = aGifStore->b1[i] = 0;
/* compute number of unique colors */
nc = 0;
for (i=0; i<numcols; i++)
{ /* see if color #i is already used */
for (j=0; j<i; j++)
{ if (rmap[i] == rmap[j] && gmap[i] == gmap[j] && bmap[i] == bmap[j])
break;
}
if (j==i) /* wasn't found */
{ aGifStore->pc2nc[i] = (byte)nc;
aGifStore->r1[nc] = rmap[i];
aGifStore->g1[nc] = gmap[i];
aGifStore->b1[nc] = bmap[i];
nc++;
}
else
aGifStore->pc2nc[i] = aGifStore->pc2nc[j];
}
nc = 256;
/* figure out 'BitsPerPixel' */
for (i=1; i<8; i++)
if ( (1<<i) >= nc)
break;
BitsPerPixel = i;
ColorMapSize = 1 << BitsPerPixel;
RWidth = w;
RHeight = h;
LeftOfs = TopOfs = 0;
if (BitsPerPixel <= 1) InitCodeSize = 2;
else InitCodeSize = BitsPerPixel;
if (!fp)
{ AVSerror("WriteGIFFrame: file not open for writing");
free(aGifStore);
return AVS_ERROR;
}
if (frames<1) frames=1;
for(f=0; f<frames; f++)
{ /* image extension */
// Graphic Control Extension starts with 21 F9 04
fputc(0x21, fp); fputc(0xf9, fp); fputc(0x04, fp);
fputc(0x00, fp); // no transparency
putword2(time, fp); // time in 0.01 sec
fputc(0x00, fp); // transparent color (not used)
fputc(0x00, fp);
fputc( 0x2c, fp ); /* image separator */
/* Write the Image header */
putword2(LeftOfs, fp);
putword2(TopOfs, fp);
putword2(RWidth, fp);
putword2(RHeight, fp);
if (colorstyle==csLocalPalette)
cmap = 0x80 | 0x07;
else
cmap = 0;
if (Interlace)
fputc(cmap | 0x40, fp); /* Use local Colormap, maybe Interlace */
else
fputc(cmap | 0x00, fp);
if (colorstyle==csLocalPalette)
WritePalette(fp, aGifStore, 256);
fputc(InitCodeSize, fp);
compress((char)(InitCodeSize+1), fp, pic8, w*h, aGifStore);
pic8 += w * h;
fputc(0,fp); /* Write out a Zero-length packet (EOF) */
};
/* GIF file terminator (0x3b) should be written in caller*/
free(aGifStore);
if (ferror(fp))
return AVS_ERROR;
return AVS_OK;
}
/******************************/
static void putword2(int w, FILE *fp)
{ /* writes a 16-bit integer in GIF order (LSB first) */
fputc(w & 0xff, fp);
fputc((w>>8)&0xff, fp);
}
/***********************************************************************/
/*
* To save much memory, we overlay the table used by compress() with those
* used by decompress(). The tab_prefix table is the same size and type
* as the codetab. The tab_suffix table needs 2**BITS characters. We
* get this from the beginning of htab. The output stack uses the rest
* of htab, and contains characters. There is plenty of room for any
* possible stack (stack used to be 8000 characters).
*/
/*
* block compression parameters -- after all codes are used up,
* and compression rate changes, start over.
*/
/*
* compress stdin to stdout
*
* Algorithm: use open addressing double hashing (no chaining) on the
* prefix code / next character combination. We do a variant of Knuth's
* algorithm D (vol. 3, sec. 6.4) along with G. Knott's relatively-prime
* secondary probe. Here, the modular division first probe is gives way
* to a faster exclusive-or manipulation. Also do block compression with
* an adaptive reset, whereby the code table is cleared when the compression
* ratio decreases, but after the table fills. The variable-length output
* codes are re-sized at this point, and a special CLEAR code is generated
* for the decompressor. Late addition: construct the table according to
* file size for noticeable speed improvement on small files. Please direct
* questions about this implementation to ames!jaw.
*/
/********************************************************/
static void compress(int init_bits, FILE *outfile, byte *data, int len, struct GifStore *aGifStore)
{ register long fcode;
register int i = 0;
register int c;
register int ent;
register int disp;
register int hsize_reg;
register int hshift;
unsigned short codetab [HSIZE];
count_int htab [HSIZE];
/*
* Set up the globals: g_init_bits - initial number of bits
* g_outfile - pointer to output file
*/
aGifStore->g_init_bits = init_bits;