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

Comparing ray/src/util/ranimove1.c (file contents):
Revision 3.1 by greg, Sat Feb 22 02:07:30 2003 UTC vs.
Revision 3.12 by greg, Tue Dec 20 03:49:51 2005 UTC

# Line 4 | Line 4 | static const char      RCSid[] = "$Id$";
4   /*
5   *  ranimove1.c
6   *
7 < *  Basic frame rendering routines for ranimate(1).
7 > *  Basic frame rendering routines for ranimove(1).
8   *
9   *  Created by Gregory Ward on Wed Jan 08 2003.
10   */
11  
12 < /* ====================================================================
13 < * The Radiance Software License, Version 1.0
14 < *
15 < * Copyright (c) 1990 - 2002 The Regents of the University of California,
16 < * through Lawrence Berkeley National Laboratory.   All rights reserved.
17 < *
18 < * Redistribution and use in source and binary forms, with or without
19 < * modification, are permitted provided that the following conditions
20 < * are met:
21 < *
22 < * 1. Redistributions of source code must retain the above copyright
23 < *         notice, this list of conditions and the following disclaimer.
24 < *
25 < * 2. Redistributions in binary form must reproduce the above copyright
26 < *       notice, this list of conditions and the following disclaimer in
27 < *       the documentation and/or other materials provided with the
28 < *       distribution.
29 < *
30 < * 3. The end-user documentation included with the redistribution,
31 < *           if any, must include the following acknowledgment:
32 < *             "This product includes Radiance software
33 < *                 (http://radsite.lbl.gov/)
34 < *                 developed by the Lawrence Berkeley National Laboratory
35 < *               (http://www.lbl.gov/)."
36 < *       Alternately, this acknowledgment may appear in the software itself,
37 < *       if and wherever such third-party acknowledgments normally appear.
38 < *
39 < * 4. The names "Radiance," "Lawrence Berkeley National Laboratory"
40 < *       and "The Regents of the University of California" must
41 < *       not be used to endorse or promote products derived from this
42 < *       software without prior written permission. For written
43 < *       permission, please contact [email protected].
44 < *
45 < * 5. Products derived from this software may not be called "Radiance",
46 < *       nor may "Radiance" appear in their name, without prior written
47 < *       permission of Lawrence Berkeley National Laboratory.
48 < *
49 < * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
50 < * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
51 < * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
52 < * DISCLAIMED.   IN NO EVENT SHALL Lawrence Berkeley National Laboratory OR
53 < * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
54 < * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
55 < * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
56 < * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
57 < * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
58 < * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
59 < * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 < * SUCH DAMAGE.
61 < * ====================================================================
62 < *
63 < * This software consists of voluntary contributions made by many
64 < * individuals on behalf of Lawrence Berkeley National Laboratory.   For more
65 < * information on Lawrence Berkeley National Laboratory, please see
66 < * <http://www.lbl.gov/>.
67 < */
12 > #include "copyright.h"
13  
14 + #include <string.h>
15 +
16 + #include "platform.h"
17   #include "ranimove.h"
18   #include "otypes.h"
19 + #include "source.h"
20   #include "random.h"
21  
22   double          acctab[256];    /* accuracy value table */
# Line 98 | Line 47 | double         frm_stop;       /* when to stop rendering this frame
47   double          hlsmax;         /* maximum high-level saliency this frame */
48  
49  
50 < void
51 < write_map(mp, fn)               /* write out float map (debugging) */
52 < float   *mp;
53 < char    *fn;
50 > static void next_frame(void);
51 > static int sample_here(int      x, int  y);
52 > static int offset_cmp(const void        *p1, const void *p2);
53 > static void setmotion(int       n, FVECT        wpos);
54 > static void init_frame_sample(void);
55 >
56 >
57 > extern void
58 > write_map(              /* write out float map (debugging) */
59 >        float   *mp,
60 >        char    *fn
61 > )
62   {
63          FILE    *fp = fopen(fn, "w");
64          COLOR   scanbuf[2048];
# Line 125 | Line 82 | char   *fn;
82  
83  
84   static void
85 < next_frame()                    /* prepare next frame buffer */
85 > next_frame(void)                        /* prepare next frame buffer */
86   {
87          VIEW    *fv;
88          char    *err;
89                                          /* get previous view */
90          if (vw.type != 0)
91 <                copystruct(&vwprev, &vw);
91 >                vwprev = vw;
92          else if (fcur > 1 && (fv = getview(fcur-1)) != NULL) {
93 <                copystruct(&vwprev, fv);
93 >                vwprev = *fv;
94                  if (setview(&vwprev) != NULL)
95                          vwprev.type = 0;
96          }
# Line 142 | Line 99 | next_frame()                   /* prepare next frame buffer */
99                  sprintf(errmsg, "cannot get view for frame %d", fcur);
100                  error(USER, errmsg);
101          }
102 <        copystruct(&vw, fv);
102 >        vw = *fv;
103          if ((err = setview(&vw)) != NULL) {
104                  sprintf(errmsg, "view error at frame %d: %s", fcur, err);
105                  error(USER, errmsg);
# Line 158 | Line 115 | next_frame()                   /* prepare next frame buffer */
115                          pixaspect = 1.;
116                          /* fall through */
117                  case 3:
118 <                        if ((hres > 0 & vres > 0))
118 >                        if ((hres > 0) & (vres > 0))
119                                  break;
120                          /* fall through */
121                  default:
# Line 177 | Line 134 | next_frame()                   /* prepare next frame buffer */
134                  zprev = (float *)malloc(sizeof(float)*hres*vres);
135                  oprev = (OBJECT *)malloc(sizeof(OBJECT)*hres*vres);
136                  aprev = (BYTE *)malloc(sizeof(BYTE)*hres*vres);
137 <                if ((cbuffer==NULL | zbuffer==NULL | obuffer==NULL |
138 <                                xmbuffer==NULL | ymbuffer==NULL |
139 <                                abuffer==NULL | sbuffer==NULL |
140 <                                cprev==NULL | zprev == NULL |
141 <                                oprev==NULL | aprev==NULL))
137 >                if ((cbuffer==NULL) | (zbuffer==NULL) | (obuffer==NULL) |
138 >                                (xmbuffer==NULL) | (ymbuffer==NULL) |
139 >                                (abuffer==NULL) | (sbuffer==NULL) |
140 >                                (cprev==NULL) | (zprev == NULL) |
141 >                                (oprev==NULL) | (aprev==NULL))
142                          error(SYSTEM, "out of memory in init_frame");
143                  frm_stop = getTime() + rtperfrm;
144          } else {
# Line 193 | Line 150 | next_frame()                   /* prepare next frame buffer */
150                  fp = zprev; zprev = zbuffer; zbuffer = fp;
151                  op = oprev; oprev = obuffer; obuffer = op;
152                  bp = aprev; aprev = abuffer; abuffer = bp;
153 <                bzero(abuffer, sizeof(BYTE)*hres*vres);
154 <                bzero(sbuffer, sizeof(BYTE)*hres*vres);
153 >                memset(abuffer, '\0', sizeof(BYTE)*hres*vres);
154 >                memset(sbuffer, '\0', sizeof(BYTE)*hres*vres);
155                  frm_stop += rtperfrm;
156          }
157          cerrmap = NULL;
# Line 207 | Line 164 | next_frame()                   /* prepare next frame buffer */
164  
165  
166   static int
167 < sample_here(x, y)               /* 4x4 quincunx sample at this pixel? */
168 < register int    x, y;
167 > sample_here(            /* 4x4 quincunx sample at this pixel? */
168 >        register int    x,
169 >        register int    y
170 > )
171   {
172          if (y & 0x1)            /* every other row has samples */
173                  return(0);
# Line 218 | Line 177 | register int   x, y;
177   }
178  
179  
180 < void
181 < sample_pos(hv, x, y, sn)        /* compute jittered sample position */
182 < double  hv[2];
183 < int     x, y;
184 < int     sn;
180 > extern void
181 > sample_pos(     /* compute jittered sample position */
182 >        double  hv[2],
183 >        int     x,
184 >        int     y,
185 >        int     sn
186 > )
187   {
188          int     hl[2];
189  
# Line 233 | Line 194 | int    sn;
194   }
195  
196  
197 < double
198 < sample_wt(xo, yo)               /* compute interpolant sample weight */
199 < int     xo, yo;
197 > extern double
198 > sample_wt(              /* compute interpolant sample weight */
199 >        int     xo,
200 >        int yo
201 > )
202   {
203          static double   etab[400];
204 <        int     rad2 = xo*xo + yo*yo;
204 >        /* we can't use the name rad2 here, for some reason Visual C
205 >           thinks that is a constant (compiler bug?) */
206 >        int     rad_2 = xo*xo + yo*yo;
207          int     i;
208  
209          if (etab[0] <= FTINY)           /* initialize exponent table */
# Line 246 | Line 211 | int    xo, yo;
211                          etab[i] = exp(-0.1*i);
212  
213                                          /* look up Gaussian */
214 <        i = (int)((10.*3./(double)SAMPDIST2)*rad2 + .5);
214 >        i = (int)((10.*3./(double)SAMPDIST2)*rad_2 + .5);
215          if (i >= 400)
216                  return(0.0);
217          return(etab[i]);
# Line 254 | Line 219 | int    xo, yo;
219  
220  
221   static int
222 < offset_cmp(p1, p2)              /* compare offset distances */
223 < const void      *p1, *p2;
222 > offset_cmp(             /* compare offset distances */
223 >        const void      *p1,
224 >        const void      *p2
225 > )
226   {
227          return(*(const int *)p1 - *(const int *)p2);
228   }
229  
230  
231 < int
232 < getclosest(iarr, nc, x, y)      /* get nc closest neighbors on same object */
233 < int     *iarr;
234 < int     nc;
235 < int     x, y;
231 > extern int
232 > getclosest(     /* get nc closest neighbors on same object */
233 >        int     *iarr,
234 >        int     nc,
235 >        int     x,
236 >        int     y
237 > )
238   {
239   #define NSCHECK         ((2*SAMPDIST+1)*(2*SAMPDIST+1))
240          static int      hro, vro;
# Line 276 | Line 245 | int    x, y;
245                                          /* get our object number */
246          myobj = obuffer[fndx(x, y)];
247                                          /* special case for borders */
248 <        if ((x < SAMPDIST | x >= hres-SAMPDIST |
249 <                        y < SAMPDIST | y >= vres-SAMPDIST)) {
248 >        if ((x < SAMPDIST) | (x >= hres-SAMPDIST) |
249 >                        (y < SAMPDIST) | (y >= vres-SAMPDIST)) {
250                  int     tndx[NSCHECK][2];
251                  nf = 0;
252                  for (j = y - SAMPDIST; j <= y + SAMPDIST; j++) {
# Line 289 | Line 258 | int    x, y;
258                          i0 = fndx(i, j);
259                          if (!sbuffer[i0])
260                                  continue;
261 <                        if ((myobj != OVOID & obuffer[i0] != myobj))
261 >                        if ((myobj != OVOID) & (obuffer[i0] != myobj))
262                                  continue;
263                          tndx[nf][0] = (i-x)*(i-x) + (j-y)*(j-y);
264                          tndx[nf][1] = i0;
# Line 304 | Line 273 | int    x, y;
273                  return(nf);
274          }
275                                          /* initialize offset array */
276 <        if ((hres != hro | vres != vro)) {
276 >        if ((hres != hro) | (vres != vro)) {
277                  int     toffs[NSCHECK][2];
278                  i0 = fndx(SAMPDIST, SAMPDIST);
279                  nf = 0;
# Line 323 | Line 292 | int    x, y;
292          }
293                                          /* find up to nc neighbors */
294          i0 = fndx(x, y);
295 <        for (j = 0, nf = 0; (j < NSCHECK & nf < nc); j++) {
295 >        for (j = 0, nf = 0; (j < NSCHECK) & (nf < nc); j++) {
296                  i = i0 + ioffs[j];
297 <                if (sbuffer[i] && (myobj == OVOID | obuffer[i] == myobj))
297 >                if (sbuffer[i] && (myobj == OVOID) | (obuffer[i] == myobj))
298                          iarr[nf++] = i;
299          }
300                                          /* return number found */
# Line 335 | Line 304 | int    x, y;
304  
305  
306   static void
307 < setmotion(n, wpos)              /* compute motion vector for this pixel */
308 < register int    n;
309 < FVECT   wpos;
307 > setmotion(              /* compute motion vector for this pixel */
308 >                register int    n,
309 >                FVECT   wpos
310 > )
311   {
312          FVECT   ovp;
343        MAT4    xfm;
344        double  d;
313          int     moi;
314          int     xp, yp;
315                                          /* ID object and update maximum HLS */
# Line 361 | Line 329 | FVECT  wpos;
329          yp = (int)(ovp[1]*vres);
330          xmbuffer[n] = xp - (n % hres);
331          ymbuffer[n] = yp - (n / hres);
332 <        if ((xp < 0 | xp >= hres))
332 >        if ((xp < 0) | (xp >= hres))
333                  return;
334 <        if ((yp < 0 | yp >= vres))
334 >        if ((yp < 0) | (yp >= vres))
335                  return;
336          n = fndx(xp, yp);
337 <        if ((zprev[n] < 0.97*ovp[2] | zprev[n] > 1.03*ovp[2]))
337 >        if ((zprev[n] < 0.97*ovp[2]) | (zprev[n] > 1.03*ovp[2]))
338                  oprev[n] = OVOID;       /* assume it's a bad match */
339   }
340  
341  
342   static void
343 < init_frame_sample()             /* sample our initial frame */
343 > init_frame_sample(void)         /* sample our initial frame */
344   {
345          RAY     ir;
346          int     x, y;
# Line 399 | Line 367 | init_frame_sample()            /* sample our initial frame */
367                          continue;
368                  }
369                  if (!sample_here(x, y)) {       /* just cast */
370 <                        rayorigin(&ir, NULL, PRIMARY, 1.0);
370 >                        rayorigin(&ir, PRIMARY, NULL, NULL);
371                          if (!localhit(&ir, &thescene)) {
372                                  if (ir.ro != &Aftplane)
373                                          sourcehit(&ir);
# Line 417 | Line 385 | init_frame_sample()            /* sample our initial frame */
385                  }
386                  if (nprocs > 1) {               /* get sample */
387                          int     rval;
388 <                        rayorigin(&ir, NULL, PRIMARY, 1.0);
388 >                        rayorigin(&ir, PRIMARY, NULL, NULL);
389                          ir.rno = n;
390                          rval = ray_pqueue(&ir);
391                          if (!rval)
# Line 459 | Line 427 | init_frame_sample()            /* sample our initial frame */
427                  n = fndx(x, y);
428                  if ((obj = obuffer[n]) == OVOID)
429                          continue;
430 <                if ((obuffer[n+1] != OVOID & obuffer[n+1] != obj)) {
430 >                if ((obuffer[n+1] != OVOID) & (obuffer[n+1] != obj)) {
431                          obuffer[n] = OVOID;
432                          obuffer[n+1] = OVOID;
433                  }
434 <                if ((obuffer[n+hres] != OVOID & obuffer[n+hres] != obj)) {
434 >                if ((obuffer[n+hres] != OVOID) & (obuffer[n+hres] != obj)) {
435                          obuffer[n] = OVOID;
436                          obuffer[n+hres] = OVOID;
437                  }
# Line 474 | Line 442 | init_frame_sample()            /* sample our initial frame */
442   }
443  
444  
445 < int
446 < getambcolor(clr, obj)           /* get ambient color for object if we can */
447 < COLOR   clr;
448 < int     obj;
445 > extern int
446 > getambcolor(            /* get ambient color for object if we can */
447 >                COLOR   clr,
448 >                int     obj
449 > )
450   {
451          register OBJREC *op;
452  
453          if (obj == OVOID)
454                  return(0);
455          op = objptr(obj);
456 <        if ((op->otype == OBJ_INSTANCE & op->omod == OVOID))
456 >        if ((op->otype == OBJ_INSTANCE) & (op->omod == OVOID))
457                  return(0);
458                                          /* search for material */
459          do {
# Line 544 | Line 513 | int    obj;
513   }
514  
515  
516 < double
517 < estimaterr(cs, cs2, ns, ns0)    /* estimate relative error from samples */
518 < COLOR   cs, cs2;
519 < int     ns;
516 > extern double
517 > estimaterr(             /* estimate relative error from samples */
518 >                COLOR   cs,
519 >                COLOR   cs2,
520 >                int     ns,
521 >                int ns0
522 > )
523   {
524          double  d, d2, brt;
525  
# Line 567 | Line 539 | int    ns;
539   }
540  
541  
542 < double
543 < comperr(neigh, nc, ns0)         /* estimate relative error in neighborhood */
544 < int     *neigh;
545 < int     nc;
546 < int     ns0;
542 > extern double
543 > comperr(                /* estimate relative error in neighborhood */
544 >                int     *neigh,
545 >                int     nc,
546 >                int     ns0
547 > )
548   {
549          COLOR   csum, csum2;
550          COLOR   ctmp;
# Line 581 | Line 554 | int    ns0;
554                                          /* add together samples */
555          setcolor(csum, 0., 0., 0.);
556          setcolor(csum2, 0., 0., 0.);
557 <        for (i = 0, ns = 0; (i < nc & ns < NSAMPOK); i++) {
557 >        for (i = 0, ns = 0; (i < nc) & (ns < NSAMPOK); i++) {
558                  n = neigh[i];
559                  addcolor(csum, cbuffer[n]);
560                  if (val2map != NULL) {
# Line 602 | Line 575 | int    ns0;
575   }
576  
577  
578 < void
579 < comp_frame_error()              /* initialize frame error values */
578 > extern void
579 > comp_frame_error(void)          /* initialize frame error values */
580   {
581          BYTE    *edone = NULL;
582          COLOR   objamb;
583          double  eest;
584          int     neigh[NSAMPOK];
585          int     nc;
586 <        int     x, y, i, j;
586 >        int     x, y, i;
587          register int    n;
588  
589          if (!silent) {
# Line 633 | Line 606 | comp_frame_error()             /* initialize frame error values *
606                  for (y = vres; y--; )
607                      for (x = hres; x--; ) {
608                          n = fndx(x, y);
609 <                        if ((abuffer[n] != ALOWQ | obuffer[n] == OVOID))
609 >                        if ((abuffer[n] != ALOWQ) | (obuffer[n] == OVOID))
610                                  continue;
611                          if (!getambcolor(objamb, obuffer[n]))
612                                  continue;
# Line 681 | Line 654 | comp_frame_error()             /* initialize frame error values *
654   }
655  
656  
657 < void
658 < init_frame()                    /* render base (low quality) frame */
657 > extern void
658 > init_frame(void)                        /* render base (low quality) frame */
659   {
660          int     restart;
661  
# Line 692 | Line 665 | init_frame()                   /* render base (low quality) frame */
665          restart = (!nobjects || vdef(MOVE));
666          if (!restart && curparams != &lorendparams && nprocs > 1)
667                  restart = -1;
668 <        if (restart > 0)
668 >        if (restart > 0) {
669                  if (nprocs > 1)
670                          ray_pdone(1);
671                  else
672                          ray_done(1);
673 +        }
674                                          /* post low quality parameters */
675          if (curparams != &lorendparams)
676                  ray_restore(curparams = &lorendparams);
# Line 743 | Line 717 | return;
717   }
718  
719  
720 < void
721 < filter_frame()                  /* interpolation, motion-blur, and exposure */
720 > extern void
721 > filter_frame(void)                      /* interpolation, motion-blur, and exposure */
722   {
723          double  expval = expspec_val(getexp(fcur));
724          int     x, y;
# Line 755 | Line 729 | filter_frame()                 /* interpolation, motion-blur, and ex
729          register int    n;
730  
731   #if 0
732 < /* XXX TEMPORARY!! */
733 < conspicuity();
734 < write_map(cerrmap, "outcmap.pic");
735 < {
736 <        float   *ebuf = (float *)malloc(sizeof(float)*hres*vres);
737 <        for (n = hres*vres; n--; )
738 <                ebuf[n] = acctab[abuffer[n]];
739 <        write_map(ebuf, "outerr.pic");
740 <        free((void *)ebuf);
741 < }
732 >        /* XXX TEMPORARY!! */
733 >        conspicuity();
734 >        write_map(cerrmap, "outcmap.pic");
735 >        {
736 >                float   *ebuf = (float *)malloc(sizeof(float)*hres*vres);
737 >                for (n = hres*vres; n--; )
738 >                        ebuf[n] = acctab[abuffer[n]];
739 >                write_map(ebuf, "outerr.pic");
740 >                free((void *)ebuf);
741 >        }
742   #endif
743  
744          if (!silent) {
# Line 788 | Line 762 | write_map(cerrmap, "outcmap.pic");
762                          continue;
763                  nc = getclosest(neigh, NPINTERP, x, y);
764                  setcolor(cbuffer[n], 0., 0., 0.);
765 +                if (nc <= 0) {          /* no acceptable neighbors */
766 +                        if (y < vres-1)
767 +                                nc = fndx(x, y+1);
768 +                        else if (x < hres-1)
769 +                                nc = fndx(x+1, y);
770 +                        else
771 +                                continue;
772 +                        copycolor(cbuffer[n], cbuffer[nc]);
773 +                        continue;
774 +                }
775                  wsum = 0.;
776                  while (nc-- > 0) {
777                          copycolor(cval, cbuffer[neigh[nc]]);
# Line 797 | Line 781 | write_map(cerrmap, "outcmap.pic");
781                          addcolor(cbuffer[n], cval);
782                          wsum += w;
783                  }
784 <                if (wsum > FTINY) {
785 <                        w = 1.0/wsum;
802 <                        scalecolor(cbuffer[n], w);
803 <                }
784 >                w = 1.0/wsum;
785 >                scalecolor(cbuffer[n], w);
786              }
787                                          /* motion blur if requested */
788          if (mblur > .02) {
807                int     len;
789                  int     xs, ys, xl, yl;
790                  int     rise, run;
791                  long    rise2, run2;
792                  int     n2;
793                  int     cnt;
794                                          /* sum in motion streaks */
795 <                bzero(outbuffer, sizeof(COLOR)*hres*vres);
796 <                bzero(wbuffer, sizeof(float)*hres*vres);
795 >                memset(outbuffer, '\0', sizeof(COLOR)*hres*vres);
796 >                memset(wbuffer, '\0', sizeof(float)*hres*vres);
797                  for (y = vres; y--; )
798                      for (x = hres; x--; ) {
799                          n = fndx(x, y);
# Line 841 | Line 822 | write_map(cerrmap, "outcmap.pic");
822                                  scalecolor(cval, w);
823                                  while (cnt)
824                                          if (rise2 >= run2) {
825 <                                                if ((xl >= 0 & xl < hres &
826 <                                                        yl >= 0 & yl < vres)) {
825 >                                                if ((xl >= 0) & (xl < hres) &
826 >                                                    (yl >= 0) & (yl < vres)) {
827                                                          n2 = fndx(xl, yl);
828                                                          addcolor(outbuffer[n2],
829                                                                          cval);
# Line 862 | Line 843 | write_map(cerrmap, "outcmap.pic");
843                                  scalecolor(cval, w);
844                                  while (cnt)
845                                          if (run2 >= rise2) {
846 <                                                if ((xl >= 0 & xl < hres &
847 <                                                        yl >= 0 & yl < vres)) {
846 >                                                if ((xl >= 0) & (xl < hres) &
847 >                                                    (yl >= 0) & (yl < vres)) {
848                                                          n2 = fndx(xl, yl);
849                                                          addcolor(outbuffer[n2],
850                                                                          cval);
# Line 890 | Line 871 | write_map(cerrmap, "outcmap.pic");
871          } else
872                  for (n = hres*vres; n--; )
873                          copycolor(outbuffer[n], cbuffer[n]);
874 < /*
875 < for (n = hres*vres; n--; )
876 <        if (!sbuffer[n])
877 <                setcolor(outbuffer[n], 0., 0., 0.);
878 < */
879 <                                /* adjust exposure */
880 <        if ((expval < 0.99 | expval > 1.01))
874 >        /*
875 >           for (n = hres*vres; n--; )
876 >                   if (!sbuffer[n])
877 >                           setcolor(outbuffer[n], 0., 0., 0.);
878 >         */
879 >        /* adjust exposure */
880 >        if ((expval < 0.99) | (expval > 1.01))
881                  for (n = hres*vres; n--; )
882                          scalecolor(outbuffer[n], expval);
883 < return;
884 < {
885 <        float   *sbuf = (float *)malloc(sizeof(float)*hres*vres);
886 <        char    fnm[256];
887 <        sprintf(fnm, vval(BASENAME), fcur);
888 <        strcat(fnm, "_outsamp.pic");
889 <        for (n = hres*vres; n--; )
890 <                sbuf[n] = (float)sbuffer[n];
891 <        write_map(sbuf, fnm);
892 <        free((void *)sbuf);
883 > #if 0
884 >        {
885 >                float   *sbuf = (float *)malloc(sizeof(float)*hres*vres);
886 >                char    fnm[256];
887 >                sprintf(fnm, vval(BASENAME), fcur);
888 >                strcat(fnm, "_outsamp.pic");
889 >                for (n = hres*vres; n--; )
890 >                        sbuf[n] = (float)sbuffer[n];
891 >                write_map(sbuf, fnm);
892 >                free((void *)sbuf);
893 >        }
894 > #endif
895   }
913 }
896  
897  
898 < void
899 < send_frame()                    /* send frame to destination */
898 > extern void
899 > send_frame(void)                        /* send frame to destination */
900   {
901          char    pfname[1024];
902          double  d;
# Line 928 | Line 910 | send_frame()                   /* send frame to destination */
910                  sprintf(errmsg, "cannot open output frame \"%s\"", pfname);
911                  error(SYSTEM, errmsg);
912          }
913 < #ifdef MSDOS
932 <        setmode(fileno(fp), O_BINARY);
933 < #endif
913 >        SET_FILE_BINARY(fp);
914          if (!silent) {
915                  printf("\tWriting to \"%s\"\n", pfname);
916                  fflush(stdout);
# Line 943 | Line 923 | send_frame()                   /* send frame to destination */
923          fputnow(fp);
924          fputs(VIEWSTR, fp); fprintview(&vw, fp); fputc('\n', fp);
925          d = expspec_val(getexp(fcur));
926 <        if ((d < 0.99 | d > 1.01))
926 >        if ((d < 0.99) | (d > 1.01))
927                  fputexpos(d, fp);
928          d = viewaspect(&vw) * hres / vres;
929 <        if ((d < 0.99 | d > 1.01))
929 >        if ((d < 0.99) | (d > 1.01))
930                  fputaspect(d, fp);
931          fputformat(COLRFMT, fp);
932          fputc('\n', fp);                /* end header */
# Line 968 | Line 948 | writerr:
948   }
949  
950  
951 < void
952 < free_frame()                    /* free frame allocation */
951 > extern void
952 > free_frame(void)                        /* free frame allocation */
953   {
954          if (cbuffer == NULL)
955                  return;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines