30 |
|
#include "platform.h" |
31 |
|
#include "standard.h" |
32 |
|
#include "cmatrix.h" |
33 |
– |
#include "platform.h" |
33 |
|
#include "resolu.h" |
34 |
|
#include "cmglare.h" |
35 |
|
|
67 |
|
error(SYSTEM, errmsg); |
68 |
|
} |
69 |
|
dt = DTfromHeader; |
70 |
< |
if ((err = cm_getheader(&dt, NULL, NULL, NULL, fp)) != NULL) |
70 |
> |
if ((err = cm_getheader(&dt, NULL, NULL, NULL, NULL, fp)) != NULL) |
71 |
|
error(USER, err); |
72 |
|
if ((dt != DTrgbe) & (dt != DTxyze) || |
73 |
|
!fscnresolu(&xr, &yr, fp)) { |
83 |
|
pmat = cm_alloc(myYR, myXR); |
84 |
|
memset(pmat->cmem, 0, sizeof(COLOR)*myXR*myYR); |
85 |
|
/* finish header */ |
86 |
< |
fputformat((char *)cm_fmt_id[myDT], fout); |
86 |
> |
fputformat(cm_fmt_id[myDT], fout); |
87 |
|
fputc('\n', fout); |
88 |
|
fflush(fout); |
89 |
|
} else if ((dt != myDT) | (xr != myXR) | (yr != myYR)) { |
93 |
|
} |
94 |
|
/* flat file check */ |
95 |
|
if ((data_start = ftell(fp)) > 0 && fseek(fp, 0L, SEEK_END) == 0) { |
96 |
< |
flat_file = (ftell(fp) == data_start + sizeof(COLR)*xr*yr); |
96 |
> |
flat_file = (ftell(fp) >= data_start + sizeof(COLR)*xr*yr); |
97 |
|
if (fseek(fp, data_start, SEEK_SET) < 0) { |
98 |
|
sprintf(errmsg, "cannot seek on picture '%s'", fname); |
99 |
|
error(SYSTEM, errmsg); |
300 |
|
if ((argc-a < 2) | (argc-a > 5)) |
301 |
|
goto userr; |
302 |
|
/* single bounce daylight coefficients file */ |
303 |
< |
direct_path = argv[++a]; |
303 |
> |
direct_path = argv[a++]; |
304 |
|
#else |
305 |
|
if ((argc-a < 1) | (argc-a > 4)) |
306 |
|
goto userr; |
475 |
|
fprintf(ofp, "FRAME=%d\n", i); |
476 |
|
fprintf(ofp, "NROWS=%d\n", rvec->nrows); |
477 |
|
fputs("NCOLS=1\nNCOMP=3\n", ofp); |
478 |
< |
if ((outfmt == 'f') | (outfmt == 'd')) |
478 |
> |
if ((outfmt == DTfloat) | (outfmt == DTdouble)) |
479 |
|
fputendian(ofp); |
480 |
< |
fputformat((char *)cm_fmt_id[outfmt], ofp); |
480 |
> |
fputformat(cm_fmt_id[outfmt], ofp); |
481 |
|
fputc('\n', ofp); |
482 |
|
} |
483 |
|
cm_write(rvec, outfmt, ofp); |
508 |
|
fprintf(ofp, "NCOLS=%d\n", rmtx->ncols); |
509 |
|
fputs("NCOMP=3\n", ofp); |
510 |
|
#endif /* DC_GLARE */ |
511 |
< |
if ((outfmt == 'f') | (outfmt == 'd')) |
511 |
> |
if ((outfmt == DTfloat) | (outfmt == DTdouble)) |
512 |
|
fputendian(ofp); |
513 |
< |
fputformat((char *)cm_fmt_id[outfmt], ofp); |
513 |
> |
fputformat(cm_fmt_id[outfmt], ofp); |
514 |
|
fputc('\n', ofp); |
515 |
|
} |
516 |
|
#ifdef DC_GLARE |