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.10 by greg, Tue Feb 25 02:47:21 2003 UTC vs.
Revision 2.16 by greg, Wed Feb 9 00:00:17 2005 UTC

# Line 17 | Line 17 | static const char      RCSid[] = "$Id$";
17  
18   #include  "color.h"
19  
20 + #ifdef getc_unlocked            /* avoid horrendous overhead of flockfile */
21 + #undef getc
22 + #undef putc
23 + #define getc    getc_unlocked
24 + #define putc    putc_unlocked
25 + #endif
26 +
27   #define  MINELEN        8       /* minimum scanline length for encoding */
28   #define  MAXELEN        0x7fff  /* maximum scanline length for encoding */
29   #define  MINRUN         4       /* minimum run length */
# Line 31 | Line 38 | unsigned int  len;
38  
39          if (len > tempbuflen) {
40                  if (tempbuflen > 0)
41 <                        tempbuf = (char *)realloc(tempbuf, len);
41 >                        tempbuf = (char *)realloc((void *)tempbuf, len);
42                  else
43                          tempbuf = (char *)malloc(len);
44                  tempbuflen = tempbuf==NULL ? 0 : len;
# Line 49 | Line 56 | register FILE  *fp;
56          register int  i, j, beg, cnt = 1;
57          int  c2;
58          
59 <        if (len < MINELEN | len > MAXELEN)      /* OOBs, write out flat */
59 >        if ((len < MINELEN) | (len > MAXELEN))  /* OOBs, write out flat */
60                  return(fwrite((char *)scanline,sizeof(COLR),len,fp) - len);
61                                          /* put magic header */
62          putc(2, fp);
# Line 139 | Line 146 | register FILE  *fp;
146          register int  i, j;
147          int  code, val;
148                                          /* determine scanline type */
149 <        if (len < MINELEN | len > MAXELEN)
149 >        if ((len < MINELEN) | (len > MAXELEN))
150                  return(oldreadcolrs(scanline, len, fp));
151          if ((i = getc(fp)) == EOF)
152                  return(-1);
# Line 167 | Line 174 | register FILE  *fp;
174                      code &= 127;
175                      if ((val = getc(fp)) == EOF)
176                          return -1;
177 +                    if (j + code > len)
178 +                        return -1;      /* overrun */
179                      while (code--)
180                          scanline[j++][i] = val;
181 <                } else                  /* non-run */
181 >                } else {                /* non-run */
182 >                    if (j + code > len)
183 >                        return -1;      /* overrun */
184                      while (code--) {
185                          if ((val = getc(fp)) == EOF)
186                              return -1;
187                          scanline[j++][i] = val;
188                      }
189 +                }
190              }
191          return(0);
192   }
# Line 253 | Line 265 | double  r, g, b;
265  
266          d = frexp(d, &e) * 255.9999 / d;
267  
268 <        clr[RED] = r * d;
269 <        clr[GRN] = g * d;
270 <        clr[BLU] = b * d;
268 >        if (r > 0.0)
269 >                clr[RED] = r * d;
270 >        else
271 >                clr[RED] = 0;
272 >        if (g > 0.0)
273 >                clr[GRN] = g * d;
274 >        else
275 >                clr[GRN] = 0;
276 >        if (b > 0.0)
277 >                clr[BLU] = b * d;
278 >        else
279 >                clr[BLU] = 0;
280 >
281          clr[EXP] = e + COLXS;
282   }
283  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines