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

Comparing ray/src/util/dctimestep.c (file contents):
Revision 2.38 by greg, Tue Apr 10 23:22:42 2018 UTC vs.
Revision 2.41 by greg, Wed Aug 14 18:20:02 2019 UTC

# Line 30 | Line 30 | sum_images(const char *fspec, const CMATRIX *cv, FILE
30                  error(INTERNAL, "expected vector in sum_images()");
31          for (i = 0; i < cv->nrows; i++) {
32                  const COLORV    *scv = cv_lval(cv,i);
33 +                int             flat_file = 0;
34                  char            fname[1024];
35                  FILE            *fp;
36 +                long            data_start;
37                  int             dt, xr, yr;
38                  COLORV          *psp;
39                  char            *err;
# Line 46 | Line 48 | sum_images(const char *fspec, const CMATRIX *cv, FILE
48                          error(SYSTEM, errmsg);
49                  }
50                  dt = DTfromHeader;
51 <                if ((err = cm_getheader(&dt, NULL, NULL, fp)) != NULL)
51 >                if ((err = cm_getheader(&dt, NULL, NULL, NULL, fp)) != NULL)
52                          error(USER, err);
53                  if ((dt != DTrgbe) & (dt != DTxyze) ||
54                                  !fscnresolu(&xr, &yr, fp)) {
# Line 70 | Line 72 | sum_images(const char *fspec, const CMATRIX *cv, FILE
72                                          fname);
73                          error(USER, errmsg);
74                  }
75 +                                                        /* flat file check */
76 +                if ((data_start = ftell(fp)) > 0 && fseek(fp, 0L, SEEK_END) == 0) {
77 +                        flat_file = (ftell(fp) == data_start + sizeof(COLR)*xr*yr);
78 +                        if (fseek(fp, data_start, SEEK_SET) < 0) {
79 +                                sprintf(errmsg, "cannot seek on picture '%s'", fname);
80 +                                error(SYSTEM, errmsg);
81 +                        }
82 +                }
83                  psp = pmat->cmem;
84                  for (y = 0; y < yr; y++) {              /* read it in */
85                          COLOR   col;
86                          int     x;
87 <                        if (freadcolrs(scanline, xr, fp) < 0) {
87 >                        if (flat_file ? getbinary(scanline, sizeof(COLR), xr, fp) != xr :
88 >                                        freadcolrs(scanline, xr, fp) < 0) {
89                                  sprintf(errmsg, "error reading picture '%s'",
90                                                  fname);
91                                  error(SYSTEM, errmsg);
# Line 236 | Line 247 | main(int argc, char *argv[])
247                          for (i = 0; i < nsteps; i++) {
248                                  CMATRIX *cvec = cm_column(cmtx, i);
249                                  if (ofspec != NULL) {
250 <                                        sprintf(fnbuf, ofspec, i+1);
250 >                                        sprintf(fnbuf, ofspec, i);
251                                          if ((ofp = fopen(fnbuf, "wb")) == NULL) {
252                                                  fprintf(stderr,
253                                          "%s: cannot open '%s' for output\n",
# Line 247 | Line 258 | main(int argc, char *argv[])
258                                          printargs(argc, argv, ofp);
259                                          fputnow(ofp);
260                                  }
261 <                                fprintf(ofp, "FRAME=%d\n", i+1);
261 >                                fprintf(ofp, "FRAME=%d\n", i);
262                                  if (!sum_images(argv[a], cvec, ofp))
263                                          return(1);
264                                  if (ofspec != NULL) {
# Line 271 | Line 282 | main(int argc, char *argv[])
282                          const char      *wtype = (outfmt==DTascii) ? "w" : "wb";
283                          for (i = 0; i < nsteps; i++) {
284                                  CMATRIX *rvec = cm_column(rmtx, i);
285 <                                sprintf(fnbuf, ofspec, i+1);
285 >                                sprintf(fnbuf, ofspec, i);
286                                  if ((ofp = fopen(fnbuf, wtype)) == NULL) {
287                                          fprintf(stderr,
288                                          "%s: cannot open '%s' for output\n",
# Line 285 | Line 296 | main(int argc, char *argv[])
296                                          newheader("RADIANCE", ofp);
297                                          printargs(argc, argv, ofp);
298                                          fputnow(ofp);
299 <                                        fprintf(ofp, "FRAME=%d\n", i+1);
299 >                                        fprintf(ofp, "FRAME=%d\n", i);
300                                          fprintf(ofp, "NROWS=%d\n", rvec->nrows);
301                                          fputs("NCOLS=1\nNCOMP=3\n", ofp);
302                                          fputformat((char *)cm_fmt_id[outfmt], ofp);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines