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

Comparing ray/src/common/tmapcolrs.c (file contents):
Revision 3.1 by greg, Tue Apr 15 16:53:02 1997 UTC vs.
Revision 3.8 by gwlarson, Tue Oct 27 09:32:54 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1997 Regents of the University of California */
1 > /* Copyright (c) 1998 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4 < static char SCCSid[] = "$SunId$ LBL";
4 > static char SCCSid[] = "$SunId$ SGI";
5   #endif
6  
7   /*
# Line 17 | Line 17 | static char SCCSid[] = "$SunId$ LBL";
17  
18   extern char     *tempbuffer();
19  
20 + #define GAMTSZ  1024
21 +
22 + typedef struct {
23 +        BYTE            gamb[GAMTSZ];   /* gamma lookup table */
24 +        COLR            clfb;           /* encoded tm->clf */
25 +        TMbright        inpsfb;         /* encoded tm->inpsf */
26 + } COLRDATA;
27 +
28 + static MEM_PTR  colrInit();
29 + static void     colrNewSpace();
30 + extern void     free();
31 + static struct tmPackage colrPkg = {     /* our package functions */
32 +        colrInit, colrNewSpace, free
33 + };
34 + static int      colrReg = -1;           /* our package registration number */
35 +
36   #define LOGISZ  260
37   static TMbright logi[LOGISZ];
38   static BYTE     photofact[BMESUPPER-BMESLOWER];
39  
40  
41   int
42 < tmCvColrs(ls, cs, scan, len)            /* tone map RGBE/XYZE colors */
42 > tmCvColrs(ls, cs, scan, len)            /* convert RGBE/XYZE colors */
43   TMbright        *ls;
44   BYTE    *cs;
45   COLR    *scan;
# Line 31 | Line 47 | int    len;
47   {
48          static char     funcName[] = "tmCvColrs";
49          COLR    cmon;
50 +        register COLRDATA       *cd;
51          register int    i, bi, li;
52  
53          if (tmTop == NULL)
54                  returnErr(TM_E_TMINVAL);
55 <        if (ls == NULL | scan == NULL | len <= 0)
55 >        if (ls == NULL | scan == NULL | len < 0)
56                  returnErr(TM_E_ILLEGAL);
57 <        if (tmTop->flags & TM_F_NEEDMAT) {      /* need floating point */
57 >        if (tmNeedMatrix(tmTop)) {              /* need floating point */
58                  register COLOR  *newscan;
59                  newscan = (COLOR *)tempbuffer(len*sizeof(COLOR));
60                  if (newscan == NULL)
# Line 46 | Line 63 | int    len;
63                          colr_color(newscan[i], scan[i]);
64                  return(tmCvColors(ls, cs, newscan, len));
65          }
66 <        if (logi[0] == 0) {                     /* build tables if necessary */
66 >        if (colrReg < 0) {                      /* build tables if necessary */
67 >                colrReg = tmRegPkg(&colrPkg);
68 >                if (colrReg < 0)
69 >                        returnErr(TM_E_CODERR1);
70                  for (i = 256; i--; )
71                          logi[i] = TM_BRTSCALE*log((i+.5)/256.) - .5;
72                  for (i = 256; i < LOGISZ; i++)
# Line 56 | Line 76 | int    len;
76                                          (tmLuminance(i) - LMESLOWER) /
77                                          (LMESUPPER - LMESLOWER);
78          }
79 +        if ((cd = (COLRDATA *)tmPkgData(tmTop,colrReg)) == NULL)
80 +                returnErr(TM_E_NOMEM);
81          for (i = len; i--; ) {
82                  copycolr(cmon, scan[i]);
83                                                          /* world luminance */
84 <                li =  ( tmTop->clfb[RED]*cmon[RED] +
85 <                        tmTop->clfb[GRN]*cmon[GRN] +
86 <                        tmTop->clfb[BLU]*cmon[BLU] ) >> 8;
84 >                li =  ( cd->clfb[RED]*cmon[RED] +
85 >                        cd->clfb[GRN]*cmon[GRN] +
86 >                        cd->clfb[BLU]*cmon[BLU] ) >> 8;
87                  bi = BRT2SCALE*(cmon[EXP]-COLXS) +
88 <                                logi[li] + tmTop->inpsfb;
88 >                                logi[li] + cd->inpsfb;
89                  if (bi < MINBRT) {
90                          bi = MINBRT-1;                  /* bogus value */
91                          li++;                           /* avoid li==0 */
# Line 88 | Line 110 | int    len;
110                  } else if (tmTop->flags & TM_F_BW) {
111                          cmon[RED] = cmon[GRN] = cmon[BLU] = li;
112                  }
113 <                bi = ( (int4)TM_GAMTSZ*tmTop->clfb[RED]*cmon[RED]/li ) >> 8;
114 <                cs[3*i  ] = bi>=TM_GAMTSZ ? 255 : tmTop->gamb[bi];
115 <                bi = ( (int4)TM_GAMTSZ*tmTop->clfb[GRN]*cmon[GRN]/li ) >> 8;
116 <                cs[3*i+1] = bi>=TM_GAMTSZ ? 255 : tmTop->gamb[bi];
117 <                bi = ( (int4)TM_GAMTSZ*tmTop->clfb[BLU]*cmon[BLU]/li ) >> 8;
118 <                cs[3*i+2] = bi>=TM_GAMTSZ ? 255 : tmTop->gamb[bi];
113 >                bi = ( (int4)GAMTSZ*cd->clfb[RED]*cmon[RED]/li ) >> 8;
114 >                cs[3*i  ] = bi>=GAMTSZ ? 255 : cd->gamb[bi];
115 >                bi = ( (int4)GAMTSZ*cd->clfb[GRN]*cmon[GRN]/li ) >> 8;
116 >                cs[3*i+1] = bi>=GAMTSZ ? 255 : cd->gamb[bi];
117 >                bi = ( (int4)GAMTSZ*cd->clfb[BLU]*cmon[BLU]/li ) >> 8;
118 >                cs[3*i+2] = bi>=GAMTSZ ? 255 : cd->gamb[bi];
119          }
120          returnOK;
121   }
# Line 126 | Line 148 | register struct radhead        *rh;
148                          rh->format = FMTCIE;
149                  else
150                          rh->format = FMTBAD;
151 <                return;
151 >                return(0);
152          }
153          if (isexpos(s)) {
154                  rh->expos *= exposval(s);
155 <                return;
155 >                return(0);
156          }
157          if (isprims(s)) {
158                  primsval(rh->mypri, s);
159                  rh->primp = rh->mypri;
160 <                return;
160 >                return(0);
161          }
162 +        return(0);
163   }
164  
165  
# Line 163 | Line 186 | FILE   *fp;
186          *xp = *yp = 0;                          /* error precaution */
187          if ((inpf = fp) == TM_GETFILE && (inpf = fopen(fname, "r")) == NULL)
188                  returnErr(TM_E_BADFILE);
189 +        *lpp = NULL;
190 +        if (cpp != TM_NOCHROMP) *cpp = NULL;
191          info = rhdefault;                       /* get our header */
192 <        getheader(inpf, headline, (char *)&info);
192 >        getheader(inpf, headline, (MEM_PTR)&info);
193          if (info.format == FMTBAD | info.expos <= 0. ||
194                          fgetresolu(xp, yp, inpf) < 0) {
195                  err = TM_E_BADFILE; goto done;
# Line 205 | Line 230 | done:                                          /* clean up */
230          if (fp == NULL)
231                  fclose(inpf);
232          if (scanin != NULL)
233 <                free((char *)scanin);
234 <        if (err != TM_E_OK)
233 >                free((MEM_PTR)scanin);
234 >        if (err != TM_E_OK) {
235 >                if (*lpp != NULL)
236 >                        free((MEM_PTR)*lpp);
237 >                if (cpp != TM_NOCHROMP && *cpp != NULL)
238 >                        free((MEM_PTR)*cpp);
239                  returnErr(err);
240 +        }
241          returnOK;
242   }
243  
# Line 262 | Line 292 | char   *fname;
292                  returnErr(TM_E_BADFILE);
293          }
294                                          /* allocate arrays */
295 +        scan = (COLR *)malloc(sizeof(COLR) * *xp);
296          if (flags & TM_F_BW)
297                  rp = (BYTE *)malloc(sizeof(BYTE) * *xp * *yp);
298          else
299                  rp = (BYTE *)malloc(3*sizeof(BYTE) * *xp * *yp);
269        scan = (COLR *)malloc(sizeof(COLR) * *xp);
300          if ((*psp = rp) == NULL | scan == NULL) {
301                  pclose(infp);
302                  returnErr(TM_E_NOMEM);
# Line 275 | Line 305 | char   *fname;
305          for (y = 0; y < *yp; y++) {
306                  if (freadcolrs(scan, *xp, infp) < 0) {
307                          pclose(infp);
308 +                        free((MEM_PTR)scan);
309 +                        free((MEM_PTR)*psp);
310 +                        *psp = NULL;
311                          returnErr(TM_E_BADFILE);
312                  }
313                  colrs_gambs(scan, *xp);
# Line 288 | Line 321 | char   *fname;
321                                  *rp++ = scan[x][BLU];
322                          }
323          }
324 <        free((char *)scan);
324 >        free((MEM_PTR)scan);
325          pclose(infp);
326          returnOK;
327   }
# Line 305 | Line 338 | char   *fname;
338   FILE    *fp;
339   {
340          char    *funcName = fname==NULL ? "tmMapPicture" : fname;
308        FILE    *inpf;
341          BYTE    *cp;
342          TMbright        *lp;
343          int     err;
# Line 335 | Line 367 | FILE   *fp;
367                                                  /* allocate space for result */
368          if (flags & TM_F_BW) {
369                  *psp = (BYTE *)malloc(sizeof(BYTE) * *xp * *yp);
370 <                if (*psp == NULL)
370 >                if (*psp == NULL) {
371 >                        free((MEM_PTR)lp);
372 >                        tmDone(NULL);
373                          returnErr(TM_E_NOMEM);
374 +                }
375                  cp = TM_NOCHROM;
376          } else
377                  *psp = cp;
# Line 351 | Line 386 | FILE   *fp;
386          err = tmMapPixels(*psp, lp, cp, *xp * *yp);
387  
388   done:                                           /* clean up */
389 <        free((char *)lp);
389 >        free((MEM_PTR)lp);
390          tmDone(NULL);
391          if (err != TM_E_OK) {                   /* free memory on error */
392 <                free((char *)*psp);
392 >                free((MEM_PTR)*psp);
393                  *psp = NULL;
394                  returnErr(err);
395          }
396          returnOK;
397 + }
398 +
399 +
400 + static void
401 + colrNewSpace(tms)               /* color space changed for tone mapping */
402 + register struct tmStruct        *tms;
403 + {
404 +        register COLRDATA       *cd;
405 +        double  d;
406 +
407 +        cd = (COLRDATA *)tms->pd[colrReg];
408 +        cd->clfb[RED] = 256.*tms->clf[RED] + .5;
409 +        cd->clfb[GRN] = 256.*tms->clf[GRN] + .5;
410 +        cd->clfb[BLU] = 256.*tms->clf[BLU] + .5;
411 +        cd->clfb[EXP] = COLXS;
412 +        d = TM_BRTSCALE*log(tms->inpsf);
413 +        cd->inpsfb = d<0. ? d-.5 : d+.5;
414 + }
415 +
416 +
417 + static MEM_PTR
418 + colrInit(tms)                   /* initialize private data for tone mapping */
419 + register struct tmStruct        *tms;
420 + {
421 +        register COLRDATA       *cd;
422 +        register int    i;
423 +                                        /* allocate our data */
424 +        cd = (COLRDATA *)malloc(sizeof(COLRDATA));
425 +        if (cd == NULL)
426 +                return(NULL);
427 +        tms->pd[colrReg] = (MEM_PTR)cd;
428 +                                        /* compute gamma table */
429 +        for (i = GAMTSZ; i--; )
430 +                cd->gamb[i] = 256.*pow((i+.5)/GAMTSZ, 1./tms->mongam);
431 +                                        /* compute color and scale factors */
432 +        colrNewSpace(tms);
433 +        return((MEM_PTR)cd);
434   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines