1 |
< |
/* Copyright (c) 1986 Regents of the University of California */ |
1 |
> |
/* Copyright (c) 1991 Regents of the University of California */ |
2 |
|
|
3 |
|
#ifndef lint |
4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
13 |
|
#include <stdio.h> |
14 |
|
|
15 |
|
#include "color.h" |
16 |
+ |
#include "resolu.h" |
17 |
|
|
17 |
– |
|
18 |
|
#define NROWS 1440 /* 10" at 144 dpi */ |
19 |
|
#define NCOLS 960 /* 8" at 120 dpi */ |
20 |
|
|
69 |
|
return(-1); |
70 |
|
} |
71 |
|
/* get picture dimensions */ |
72 |
< |
if (fgetresolu(&xres, &yres, input) != (YMAJOR|YDECR)) { |
72 |
> |
if (fgetresolu(&xres, &yres, input) < 0) { |
73 |
|
fprintf(stderr, "%s: bad picture size\n", fname); |
74 |
|
return(-1); |
75 |
|
} |
143 |
|
int s; |
144 |
|
{ |
145 |
|
static int cerr[NCOLS][3]; |
146 |
< |
static int err[3], errp[3]; |
147 |
< |
int b; |
146 |
> |
static int err[3]; |
147 |
> |
int b, errp; |
148 |
|
register int a, ison; |
149 |
|
|
150 |
|
a = sub_add(s); /* use additive primary */ |
151 |
|
b = col[a]; |
152 |
< |
errp[a] = err[a]; |
152 |
> |
errp = err[a]; |
153 |
|
err[a] += b + cerr[x][a]; |
154 |
|
ison = err[a] < 128; |
155 |
|
if (!ison) err[a] -= 256; |
156 |
|
err[a] /= 3; |
157 |
< |
cerr[x][a] = err[a] + errp[a]; |
157 |
> |
cerr[x][a] = err[a] + errp; |
158 |
|
return(ison); |
159 |
|
} |