-
Notifications
You must be signed in to change notification settings - Fork 0
/
xviris.c
811 lines (657 loc) · 18.7 KB
/
xviris.c
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
/*
* xviris.c - load routine for IRIS 'rgb' format pictures
*
* LoadIRIS()
* WriteIRIS()
*/
#include "copyright.h"
/* based on:
*
* fastimg -
* Faster reading and writing of image files.
*
* This code should work on machines with any byte order.
*
* Could someone make this run real fast using multiple processors
* or how about using memory mapped files to speed it up?
*
* Paul Haeberli - 1991
*/
#include "xv.h"
#define IMAGIC 0732
#define BPPMASK 0x00ff
#define ITYPE_VERBATIM 0x0000
#define ITYPE_RLE 0x0100
#define ISRLE(type) (((type) & 0xff00) == ITYPE_RLE)
#define ISVERBATIM(type) (((type) & 0xff00) == ITYPE_VERBATIM)
#define BPP(type) ((type) & BPPMASK)
#define RLE(bpp) (ITYPE_RLE | (bpp))
#define VERBATIM(bpp) (ITYPE_VERBATIM | (bpp))
#define FERROR(fp) (ferror(fp) || feof(fp))
typedef struct {
u_short imagic; /* stuff saved on disk . . */
u_short type;
u_short dim;
u_short xsize;
u_short ysize;
u_short zsize;
u_long min;
u_long max;
u_long wastebytes;
char name[80];
u_long colormap;
long file; /* stuff used in core only */
u_short flags;
short dorev;
short x;
short y;
short z;
short cnt;
u_short *ptr;
u_short *base;
u_short *tmpbuf;
u_long offset;
u_long rleend; /* for rle images */
u_long *rowstart; /* for rle images */
long *rowsize; /* for rle images */
} IMAGE;
#define TAGLEN (5)
#define RINTLUM (79)
#define GINTLUM (156)
#define BINTLUM (21)
#define OFFSET_R 3 /* this is byte order dependent */
#define OFFSET_G 2
#define OFFSET_B 1
#define OFFSET_A 0
#define ILUM(r,g,b) ((int)(RINTLUM*(r)+GINTLUM*(g)+BINTLUM*(b))>>8)
#define CHANOFFSET(z) (3-(z)) /* this is byte order dependent */
static int irisError PARM((const char *, const char *));
static byte *getimagedata PARM((FILE *, IMAGE *));
static void interleaverow PARM((byte *, byte *, int, int));
static void expandrow PARM((byte *, byte *, int));
static void readtab PARM((FILE *, u_long *, int));
static void addimgtag PARM((byte *, int, int));
static void lumrow PARM((byte *, byte *, int));
static int compressrow PARM((byte *, byte *, int, int));
static void writetab PARM((FILE *, u_long *, int));
static u_short getshort PARM((FILE *));
static u_long getlong PARM((FILE *));
static void putshort PARM((FILE *, int));
static void putlong PARM((FILE *, u_long));
static const char *loaderr;
static const char *bname;
/*****************************************************/
int LoadIRIS(fname, pinfo)
char *fname;
PICINFO *pinfo;
/*****************************************************/
{
/* returns '1' on success, '0' on failure */
FILE *fp;
IMAGE img;
byte *rawdata, *rptr;
byte *pic824, *bptr;
int trunc, i, npixels, bufsize;
u_short ii, jj;
long filesize;
trunc = 0;
xvbzero((char *) &img, sizeof(IMAGE));
bname = BaseName(fname);
/* open the file */
fp = xv_fopen(fname, "r");
if (!fp) return(irisError(bname, "can't open file"));
/* figure out the file size */
fseek(fp, 0L, 2);
filesize = ftell(fp);
fseek(fp, 0L, 0);
/* read header information from file */
img.imagic = getshort(fp);
img.type = getshort(fp);
img.dim = getshort(fp);
img.xsize = getshort(fp); /* u_short */
img.ysize = getshort(fp);
img.zsize = getshort(fp);
if (FERROR(fp) || img.xsize == 0 || img.ysize == 0 || img.zsize == 0) {
fclose(fp);
return irisError(bname, "error in header info");
}
if (img.imagic != IMAGIC) {
fclose(fp);
return irisError(bname, "bad magic number");
}
rawdata = getimagedata(fp, &img);
if (!rawdata) {
fclose(fp);
if (loaderr) irisError(bname, loaderr);
return 0;
}
if (FERROR(fp)) trunc = 1; /* probably truncated file */
fclose(fp);
/* got the raw image data. Convert to an XV image (1,3 bytes / pix) */
npixels = img.xsize * img.ysize; /* 65535*65535 = (2^32 - 131071) max */
if (npixels/img.xsize != img.ysize)
return irisError(bname, "IRIS image dimensions out of range");
if (img.zsize < 3) { /* grayscale */
pic824 = (byte *) malloc((size_t) npixels);
if (!pic824) FatalError("couldn't malloc pic824 in LoadIRIS()");
/* copy plane 3 from rawdata into pic824, inverting pic vertically */
for (ii=0, bptr=pic824; ii<img.ysize; ii++) {
rptr = rawdata + 3 + ((img.ysize - 1) - ii) * (img.xsize * 4);
for (jj=0; jj<img.xsize; jj++, bptr++, rptr+=4) *bptr = *rptr;
}
for (i=0; i<256; i++)
pinfo->r[i] = pinfo->g[i] = pinfo->b[i] = i;
pinfo->pic = pic824;
pinfo->type = PIC8;
pinfo->frmType = F_IRIS;
pinfo->colType = F_GREYSCALE;
sprintf(pinfo->fullInfo, "IRIS Greyscale format%s (%ld bytes)",
(ISRLE(img.type)) ? ", RLE compressed." : ".", filesize);
sprintf(pinfo->shrtInfo, "%dx%d IRIS Greyscale.", img.xsize, img.ysize);
}
else { /* truecolor */
bufsize = 3 * npixels;
if (npixels/img.xsize != img.ysize || bufsize/3 != npixels) {
return irisError(bname, "IRIS image dimensions out of range");
}
pic824 = (byte *) malloc((size_t) bufsize);
if (!pic824) FatalError("couldn't malloc pic824 in LoadIRIS()");
/* copy plane 3 from rawdata into pic824, inverting pic vertically */
for (ii=0, bptr=pic824; ii<img.ysize; ii++) {
rptr = rawdata + ((img.ysize - 1) - ii) * (img.xsize * 4);
for (jj=0; jj<img.xsize; jj++, rptr+=4) {
*bptr++ = rptr[3];
*bptr++ = rptr[2];
*bptr++ = rptr[1];
}
}
pinfo->pic = pic824;
pinfo->type = PIC24;
pinfo->frmType = F_IRIS;
pinfo->colType = F_FULLCOLOR;
sprintf(pinfo->fullInfo, "IRIS RGB format%s (%ld bytes)",
(ISRLE(img.type)) ? ", RLE compressed." : ".", filesize);
sprintf(pinfo->shrtInfo, "%dx%d IRIS RGB.", img.xsize, img.ysize);
}
free(rawdata);
if (trunc) irisError(bname, "File appears to be truncated.");
pinfo->w = img.xsize; pinfo->h = img.ysize;
pinfo->normw = pinfo->w; pinfo->normh = pinfo->h;
pinfo->comment = (char *) NULL;
return 1;
}
/*******************************************/
static int irisError(name, st)
const char *name, *st;
{
SetISTR(ISTR_WARNING,"%s: %s", name, st);
return 0;
}
/****************************************************/
static byte *getimagedata(fp, img)
FILE *fp;
IMAGE *img;
{
/* read in a B/W RGB or RGBA iris image file and return a
pointer to an array of 4-byte pixels, arranged ABGR, NULL on error */
byte *base, *lptr;
byte *verdat;
int y, z, tablen;
int xsize, ysize, zsize;
int bpp, rle, cur, badorder;
int rlebuflen, npixels, bufsize;
rle = ISRLE(img->type);
bpp = BPP(img->type);
loaderr = (const char *) NULL;
if (bpp != 1) {
loaderr = "image must have 1 byte per pix chan";
return (byte *) NULL;
}
xsize = img->xsize; /* all three are > 0 (checked by caller), <= 65535 */
ysize = img->ysize;
zsize = img->zsize;
npixels = xsize * ysize; /* 65535*65535 = (2^32 - 131071) max */
if (npixels/xsize != ysize) {
loaderr = "IRIS image dimensions out of range";
return (byte *) NULL;
}
if (rle) {
byte *rledat;
u_long *starttab, *lengthtab;
rlebuflen = 2 * xsize + 10; /* 10 <= rlebuflen <= 131080 */
tablen = ysize * zsize;
bufsize = tablen * sizeof(long);
if (tablen/ysize != zsize || bufsize/tablen != sizeof(long)) {
loaderr = "IRIS image dimensions out of range";
return (byte *)NULL;
}
starttab = (u_long *) malloc((size_t) bufsize);
lengthtab = (u_long *) malloc((size_t) bufsize);
rledat = (byte *) malloc((size_t) rlebuflen);
if (!starttab || !lengthtab || !rledat)
FatalError("out of memory in LoadIRIS()");
fseek(fp, 512L, 0);
readtab(fp, starttab, tablen);
readtab(fp, lengthtab, tablen);
if (FERROR(fp)) {
loaderr = "error reading scanline tables";
free(starttab); free(lengthtab); free(rledat);
return (byte *) NULL;
}
/* check data order */
cur = 0;
badorder = 0;
for (y=0; y<ysize && !badorder; y++) {
for (z=0; z<zsize && !badorder; z++) {
if (starttab[y+z*ysize] < cur) badorder = 1;
else cur = starttab[y+z*ysize];
}
}
fseek(fp, (long) (512 + 2*tablen*4), 0);
cur = 512 + 2*tablen*4;
bufsize = 4 * (npixels+TAGLEN);
if (bufsize/4 != (npixels+TAGLEN)) {
loaderr = "Bogus IRIS File!";
free(starttab); free(lengthtab); free(rledat);
return (byte *)NULL;
}
base = (byte *) malloc((size_t) bufsize);
if (!base) FatalError("out of memory in LoadIRIS()");
addimgtag(base,xsize,ysize);
if (badorder) {
for (z=0; z<zsize; z++) {
lptr = base;
for (y=0; y<ysize; y++) {
if (cur != starttab[y+z*ysize]) {
fseek(fp, (long) starttab[y+z*ysize], 0);
cur = starttab[y+z*ysize];
}
if (lengthtab[y+z*ysize]>rlebuflen) {
free(starttab); free(lengthtab); free(rledat); free(base);
loaderr = "rlebuf too small (corrupt image file?)";
return (byte *) NULL;
}
fread(rledat, (size_t) lengthtab[y+z*ysize], (size_t) 1, fp);
cur += lengthtab[y+z*ysize];
expandrow(lptr,rledat,3-z);
lptr += (xsize * 4);
}
}
}
else {
lptr = base;
for (y=0; y<ysize; y++) {
for (z=0; z<zsize; z++) {
if (cur != starttab[y+z*ysize]) {
fseek(fp, (long) starttab[y+z*ysize], 0);
cur = starttab[y+z*ysize];
}
fread(rledat, (size_t) lengthtab[y+z*ysize], (size_t) 1, fp);
cur += lengthtab[y+z*ysize];
expandrow(lptr,rledat,3-z);
}
lptr += (xsize * 4);
}
}
free(starttab);
free(lengthtab);
free(rledat);
return base;
} /* end of RLE case */
else { /* not RLE */
bufsize = 4 * (npixels+TAGLEN);
if (bufsize/4 != (npixels+TAGLEN)) {
loaderr = "Bogus IRIS File!";
return (byte *)NULL;
}
base = (byte *) malloc((size_t) bufsize);
verdat = (byte *) malloc((size_t) xsize);
if (!base || !verdat) FatalError("out of memory in LoadIRIS()");
addimgtag(base,xsize,ysize);
fseek(fp,512L,0);
for (z=0; z<zsize; z++) {
lptr = base;
for (y=0; y<ysize; y++) {
fread(verdat, (size_t) xsize, (size_t) 1,fp);
interleaverow(lptr,verdat,3-z,xsize);
lptr += (xsize * 4);
}
}
free(verdat);
return base;
}
}
/******************************************/
static void interleaverow(lptr,cptr,z,n)
byte *lptr, *cptr;
int z, n;
{
lptr += z;
while(n--) {
*lptr = *cptr++;
lptr += 4;
}
}
/******************************************/
static void expandrow(optr,iptr,z)
byte *optr, *iptr;
int z;
{
byte pixel, count;
optr += z;
while (1) {
pixel = *iptr++;
if ( !(count = (pixel & 0x7f)) ) return;
if (pixel & 0x80) {
while (count>=8) {
optr[0*4] = iptr[0];
optr[1*4] = iptr[1];
optr[2*4] = iptr[2];
optr[3*4] = iptr[3];
optr[4*4] = iptr[4];
optr[5*4] = iptr[5];
optr[6*4] = iptr[6];
optr[7*4] = iptr[7];
optr += 8*4;
iptr += 8;
count -= 8;
}
while(count--) {
*optr = *iptr++;
optr+=4;
}
}
else {
pixel = *iptr++;
while(count>=8) {
optr[0*4] = pixel;
optr[1*4] = pixel;
optr[2*4] = pixel;
optr[3*4] = pixel;
optr[4*4] = pixel;
optr[5*4] = pixel;
optr[6*4] = pixel;
optr[7*4] = pixel;
optr += 8*4;
count -= 8;
}
while(count--) {
*optr = pixel;
optr+=4;
}
}
}
}
/****************************************************/
static void readtab(fp, tab, n)
FILE *fp;
u_long *tab;
int n;
{
while (n) {
*tab++ = getlong(fp);
n--;
}
}
/*****************************************************/
static void addimgtag(dptr,xsize,ysize)
byte *dptr;
int xsize, ysize;
{
/* this is used to extract image data from core dumps.
I doubt this is necessary... --jhb */
dptr = dptr + (xsize * ysize * 4);
dptr[0] = 0x12; dptr[1] = 0x34; dptr[2] = 0x56; dptr[3] = 0x78;
dptr += 4;
dptr[0] = 0x59; dptr[1] = 0x49; dptr[2] = 0x33; dptr[3] = 0x33;
dptr += 4;
dptr[0] = 0x69; dptr[1] = 0x43; dptr[2] = 0x42; dptr[3] = 0x22;
dptr += 4;
dptr[0] = (xsize>>24)&0xff;
dptr[1] = (xsize>>16)&0xff;
dptr[2] = (xsize>> 8)&0xff;
dptr[3] = (xsize )&0xff;
dptr += 4;
dptr[0] = (ysize>>24)&0xff;
dptr[1] = (ysize>>16)&0xff;
dptr[2] = (ysize>> 8)&0xff;
dptr[3] = (ysize )&0xff;
}
/*************************************************/
/* IRIS image-writing routines */
/*************************************************/
/*************************************************/
int WriteIRIS(fp, pic, ptype, w, h, rmap, gmap, bmap, numcols, colorstyle)
FILE *fp;
byte *pic, *rmap, *gmap, *bmap;
int ptype, w, h, numcols, colorstyle;
{
/* writes a greyscale or 24-bit RGB IRIS file to the already open
stream, RLE-compressed; returns 0 on success, -1 on minor error */
IMAGE img;
int i, j, pos, len, tablen, rlebuflen, zsize, npixels, bufsize;
u_long *starttab, *lengthtab;
byte *rlebuf, *pptr;
byte *lumbuf, *lptr, *longpic;
xvbzero((char *) &img, sizeof(IMAGE));
/* write header information */
fwrite(&img, sizeof(IMAGE), (size_t) 1, fp);
fseek(fp, 0L, 0);
if (w <= 0 || h <= 0 || w > 65535 || h > 65535) {
SetISTR(ISTR_WARNING, "image dimensions too large for IRIS format");
return -1;
}
/* load up header */
img.imagic = IMAGIC;
img.type = ITYPE_RLE | (1 & BPPMASK); /* RLE, 1 byteperpix */
img.dim = (colorstyle == F_FULLCOLOR) ? 3 : 2;
img.xsize = (u_short)w;
img.ysize = (u_short)h;
img.zsize = zsize = (colorstyle == F_FULLCOLOR) ? 3 : 1;
img.min = 0;
img.max = 255;
putshort(fp, img.imagic);
putshort(fp, img.type);
putshort(fp, img.dim);
putshort(fp, img.xsize);
putshort(fp, img.ysize);
putshort(fp, img.zsize);
putlong (fp, img.min);
putlong (fp, img.max);
putlong (fp, 0L);
fwrite ("no name", (size_t) 8, (size_t) 1,fp);
if (ferror(fp)) { fclose(fp); return -1; }
/* allocate RLE compression tables & stuff */
rlebuflen = 2*w + 10; /* 10 <= rlebuflen <= 131080 */
tablen = h * zsize; /* 1 <= tablen <= 196605 */
/* no overflow is possible with any of these (given check on w,h above): */
starttab = (u_long *) malloc((size_t) tablen * sizeof(long));
lengthtab = (u_long *) malloc((size_t) tablen * sizeof(long));
rlebuf = (byte *) malloc((size_t) rlebuflen);
lumbuf = (byte *) malloc((size_t) w * 4); /* 262140 max */
if (!starttab || !lengthtab || !rlebuf || !lumbuf)
FatalError("out of memory in WriteIRIS()");
pos = 512 + 2 * (tablen * 4);
fseek(fp, (long) pos, 0);
/* convert image into 4-byte per pix image that the compress routines want */
npixels = w * h;
bufsize = 4 * npixels;
if (npixels/w != h || bufsize/4 != npixels) {
SetISTR(ISTR_WARNING, "can't malloc longpic in WriteIRIS()");
free(starttab);
free(lengthtab);
free(rlebuf);
free(lumbuf);
return -1;
}
longpic = (byte *) malloc((size_t) bufsize);
if (!longpic) FatalError("couldn't malloc longpic in WriteIRIS()");
for (i=0, pptr=pic; i<h; i++) {
lptr = longpic + ((h-1) - i) * (w * 4); /* vertical flip */
if (ptype == PIC8) { /* colormapped */
for (j=0; j<w; j++, pptr++) {
*lptr++ = 0xff;
*lptr++ = bmap[*pptr];
*lptr++ = gmap[*pptr];
*lptr++ = rmap[*pptr];
}
}
else { /* PIC24 */
for (j=0; j<w; j++, pptr+=3) {
*lptr++ = 0xff;
*lptr++ = pptr[2];
*lptr++ = pptr[1];
*lptr++ = pptr[0];
}
}
}
/* compress and write the data */
lptr = longpic;
for (i=0; i<h; i++) {
for (j=0; j<zsize; j++) {
if (zsize == 1) {
lumrow(lptr, lumbuf, w);
len = compressrow(lumbuf, rlebuf, CHANOFFSET(j), w);
}
else {
len = compressrow(lptr, rlebuf, CHANOFFSET(j), w);
}
if (len > rlebuflen) {
/* this condition shouldn't kill XV, just abort writing the image */
FatalError("WriteIRIS: rlebuf is too small");
exit(1);
}
fwrite(rlebuf, (size_t) len, (size_t) 1, fp);
starttab [i + j*h] = pos;
lengthtab[i + j*h] = len;
pos += len;
}
lptr += (w*4);
}
/* write out line start and length tables */
fseek (fp, 512L, 0);
writetab(fp, starttab, tablen);
writetab(fp, lengthtab,tablen);
free(starttab);
free(lengthtab);
free(rlebuf);
free(lumbuf);
free(longpic);
if (ferror(fp)) return -1;
return 0;
}
/*************************************/
static void lumrow(rgbptr, lumptr, n)
byte *rgbptr, *lumptr;
int n;
{
lumptr += CHANOFFSET(0);
while (n--) {
*lumptr = ILUM(rgbptr[OFFSET_R],rgbptr[OFFSET_G],rgbptr[OFFSET_B]);
lumptr += 4;
rgbptr += 4;
}
}
/*************************************/
static int compressrow(lbuf, rlebuf, z, cnt)
byte *lbuf, *rlebuf;
int z, cnt;
{
byte *iptr, *ibufend, *sptr, *optr;
short todo, cc;
long count;
lbuf += z;
iptr = lbuf;
ibufend = iptr+cnt*4;
optr = rlebuf;
while (iptr<ibufend) {
sptr = iptr;
iptr += 8;
while ((iptr<ibufend) && ((iptr[-8]!=iptr[-4])||(iptr[-4]!=iptr[0])))
iptr += 4;
iptr -= 8;
count = (iptr-sptr)/4;
while (count) {
todo = count>126 ? 126 : count;
count -= todo;
*optr++ = 0x80|todo;
while (todo>8) {
optr[0] = sptr[0*4];
optr[1] = sptr[1*4];
optr[2] = sptr[2*4];
optr[3] = sptr[3*4];
optr[4] = sptr[4*4];
optr[5] = sptr[5*4];
optr[6] = sptr[6*4];
optr[7] = sptr[7*4];
optr += 8;
sptr += 8*4;
todo -= 8;
}
while (todo--) {
*optr++ = *sptr;
sptr += 4;
}
}
sptr = iptr;
cc = *iptr;
iptr += 4;
while ((iptr<ibufend) && (*iptr == cc)) iptr += 4;
count = (iptr-sptr)/4;
while (count) {
todo = count>126 ? 126:count;
count -= todo;
*optr++ = todo;
*optr++ = cc;
}
}
*optr++ = 0;
return (optr - rlebuf);
}
/****************************************************/
static void writetab(outf,tab,n)
FILE *outf;
u_long *tab;
int n;
{
while (n) {
putlong(outf,*tab++);
n--;
}
}
/* byte order independent read/write of shorts and longs. */
static u_short getshort(inf)
FILE *inf;
{
byte buf[2];
fread(buf, (size_t) 2, (size_t) 1,inf);
return (buf[0]<<8)+(buf[1]<<0);
}
static u_long getlong(inf)
FILE *inf;
{
byte buf[4];
fread(buf, (size_t) 4, (size_t) 1,inf);
return (((u_long) buf[0])<<24) + (((u_long) buf[1])<<16)
+ (((u_long) buf[2])<<8) + buf[3];
}
static void putshort(outf,val)
FILE *outf;
int val;
{
byte buf[2];
buf[0] = (val>>8);
buf[1] = (val>>0);
fwrite(buf,(size_t) 2,(size_t) 1,outf);
}
static void putlong(outf,val)
FILE *outf;
u_long val;
{
byte buf[4];
buf[0] = (val>>24);
buf[1] = (val>>16);
buf[2] = (val>>8);
buf[3] = (val>>0);
fwrite(buf,(size_t) 4,(size_t) 1,outf);
}