| 512 |
|
/* figure # frames per batch */ |
| 513 |
|
d1 = mult*xres*mult*yres*4; /* space for orig. picture */ |
| 514 |
|
if ((i=vint(INTERP)) || atoi(vval(MBLUR))) |
| 515 |
< |
d1 += mult*xres*mult*yres*4; /* space for z-buffer */ |
| 515 |
> |
d1 += mult*xres*mult*yres*sizeof(float); /* Z-buffer */ |
| 516 |
|
d2 = xres*yres*4; /* space for final picture */ |
| 517 |
|
frames_batch = (i+1)*(vflt(DISKSPACE)*1048576.-d1)/(d1+i*d2); |
| 518 |
|
if (frames_batch < i+2) { |
| 841 |
|
while (*arcnext) arcnext++; |
| 842 |
|
strcpy(arcnext, ".unf"); |
| 843 |
|
arcnext += 4; |
| 844 |
< |
if (usepinterp || vint(INTERP)) { /* and z-buf */ |
| 844 |
> |
if (usepinterp || vint(INTERP)) { /* and Z-buf */ |
| 845 |
|
*arcnext++ = ' '; |
| 846 |
|
sprintf(arcnext, vval(BASENAME), |
| 847 |
|
frame-vint(INTERP)-1); |