| 5 |
|
* Simple median-cut color quantization based on colortab.c |
| 6 |
|
*/ |
| 7 |
|
|
| 8 |
< |
#include "standard.h" |
| 8 |
> |
#include "copyright.h" |
| 9 |
|
|
| 10 |
+ |
#include <string.h> |
| 11 |
+ |
|
| 12 |
+ |
#include "standard.h" |
| 13 |
|
#include "color.h" |
| 14 |
+ |
|
| 15 |
|
/* histogram resolution */ |
| 16 |
|
#define NRED 36 |
| 17 |
|
#define NGRN 48 |
| 49 |
|
new_histo(n) /* clear our histogram */ |
| 50 |
|
int n; |
| 51 |
|
{ |
| 52 |
< |
bzero((char *)histo, sizeof(histo)); |
| 52 |
> |
memset((void *)histo, '\0', sizeof(histo)); |
| 53 |
|
return(0); |
| 54 |
|
} |
| 55 |
|
|
| 134 |
|
return; |
| 135 |
|
} |
| 136 |
|
N = n; |
| 137 |
< |
bzero((char *)cerr, 3*N*sizeof(short)); |
| 137 |
> |
memset((void *)cerr, '\0', 3*N*sizeof(short)); |
| 138 |
|
} |
| 139 |
|
err[0] = err[1] = err[2] = 0; |
| 140 |
|
for (x = 0; x < n; x++) { |
| 173 |
|
} |
| 174 |
|
/* split box */ |
| 175 |
|
branch = split(box); |
| 176 |
< |
bcopy((char *)box, (char *)kb, sizeof(kb)); |
| 176 |
> |
memcpy((void *)kb, (void *)box, sizeof(kb)); |
| 177 |
|
/* do left (lesser) branch */ |
| 178 |
|
kb[prim(branch)][1] = part(branch); |
| 179 |
|
cut(kb, c0, (c0+c1)>>1); |