ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/color.c
(Generate patch)

Comparing ray/src/common/color.c (file contents):
Revision 2.1 by greg, Tue Nov 12 16:55:34 1991 UTC vs.
Revision 2.7 by greg, Fri Jun 4 14:51:39 1993 UTC

# Line 12 | Line 12 | static char SCCSid[] = "$SunId$ LBL";
12  
13   #include  <stdio.h>
14  
15 + #include  <math.h>
16 +
17   #include  "color.h"
18  
19   #define  MINELEN        8       /* minimum scanline length for encoding */
20 + #define  MAXELEN        0x7fff  /* maximum scanline length for encoding */
21   #define  MINRUN         4       /* minimum run length */
22  
23  
# Line 24 | Line 27 | unsigned  len;
27   {
28          extern char  *malloc(), *realloc();
29          static char  *tempbuf = NULL;
30 <        static int  tempbuflen = 0;
30 >        static unsigned  tempbuflen = 0;
31  
32          if (len > tempbuflen) {
33                  if (tempbuflen > 0)
# Line 39 | Line 42 | unsigned  len;
42  
43   fwritecolrs(scanline, len, fp)          /* write out a colr scanline */
44   register COLR  *scanline;
45 < int  len;
45 > unsigned  len;
46   register FILE  *fp;
47   {
48          register int  i, j, beg, cnt;
49          int  c2;
50          
51 <        if (len < MINELEN)              /* too small to encode */
51 >        if (len < MINELEN | len > MAXELEN)      /* OOBs, write out flat */
52                  return(fwrite((char *)scanline,sizeof(COLR),len,fp) - len);
53 <        if (len > 32767)                /* too big! */
51 <                return(-1);
52 <        putc(2, fp);                    /* put magic header */
53 >                                        /* put magic header */
54          putc(2, fp);
55 +        putc(2, fp);
56          putc(len>>8, fp);
57          putc(len&255, fp);
58                                          /* put components seperately */
# Line 96 | Line 98 | int  len;
98   register FILE  *fp;
99   {
100          register int  i, j;
101 <        int  code;
101 >        int  code, val;
102                                          /* determine scanline type */
103 <        if (len < MINELEN)
103 >        if (len < MINELEN | len > MAXELEN)
104                  return(oldreadcolrs(scanline, len, fp));
105          if ((i = getc(fp)) == EOF)
106                  return(-1);
# Line 123 | Line 125 | register FILE  *fp;
125                  if ((code = getc(fp)) == EOF)
126                      return(-1);
127                  if (code > 128) {       /* run */
128 <                    scanline[j++][i] = getc(fp);
129 <                    for (code &= 127; --code; j++)
130 <                        scanline[j][i] = scanline[j-1][i];
128 >                    code &= 127;
129 >                    val = getc(fp);
130 >                    while (code--)
131 >                        scanline[j++][i] = val;
132                  } else                  /* non-run */
133                      while (code--)
134                          scanline[j++][i] = getc(fp);
# Line 226 | Line 229 | setcolr(clr, r, g, b)          /* assign a short color value *
229   register COLR  clr;
230   double  r, g, b;
231   {
229        double  frexp();
232          double  d;
233          int  e;
234          

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines