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

Comparing ray/src/px/pcompos.c (file contents):
Revision 2.38 by greg, Fri Jul 19 17:37:56 2019 UTC vs.
Revision 2.39 by greg, Thu Sep 2 16:10:01 2021 UTC

# Line 63 | Line 63 | int  nfile;                    /* number of files */
63   int  echoheader = 1;
64   char  ourfmt[LPICFMT+1] = PICFMT;
65   int  wrongformat = 0;
66 + double  common_expos = 1.;
67  
68 + double  this_expos;
69  
70   static gethfunc headline;
71   static void compos(void);
# Line 82 | Line 84 | headline(                      /* print line preceded by a tab */
84  
85          if (isheadid(s))
86                  return(0);
87 +        if (isexpos(s))
88 +                this_expos *= exposval(s);
89          if (formatval(fmt, s)) {
90                  if (globmatch(ourfmt, fmt)) {
91                          wrongformat = 0;
# Line 233 | Line 237 | getfile:
237                                                  /* get header */
238                  if (echoheader)
239                          printf("%s:\n", input[nfile].name);
240 +                this_expos = 1;
241                  getheader(input[nfile].fp, headline, NULL);
242 +                if (!nfile)
243 +                        common_expos = this_expos;
244 +                else if (common_expos > 0 &&
245 +                                fabs(this_expos/common_expos - 1.) > 0.02)
246 +                        common_expos = 0;
247                  if (wrongformat) {
248                          fprintf(stderr, "%s: incompatible input format\n",
249                                          input[nfile].name);
# Line 307 | Line 317 | getfile:
317          }
318                                          /* add new header info. */
319          printargs(argc, argv, stdout);
320 +        if (common_expos > 0)           /* print exposure if shared */
321 +                fputexpos(common_expos, stdout);
322          if (strcmp(ourfmt, PICFMT))
323                  fputformat(ourfmt, stdout);     /* print format if known */
324          putchar('\n');

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines