1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
|
/*
*
* mediancut algorithm implementation is imported from pnmcolormap.c
* in netpbm library.
* http://netpbm.sourceforge.net/
*
* *******************************************************************************
* original license block of pnmcolormap.c
* *******************************************************************************
*
* Derived from ppmquant, originally by Jef Poskanzer.
*
* Copyright (C) 1989, 1991 by Jef Poskanzer.
* Copyright (C) 2001 by Bryan Henderson.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted, provided
* that the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. This software is provided "as is" without express or
* implied warranty.
*
* ******************************************************************************
*
* Copyright (c) 2021 libsixel developers. See `AUTHORS`.
* Copyright (c) 2014-2018 Hayaki Saito
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*
*/
#include "config.h"
# include <stdlib.h>
# include <stdio.h>
# include <string.h>
#include <math.h>
# include <limits.h>
# include <inttypes.h>
#include "quant.h"
#if HAVE_DEBUG
#define quant_trace fprintf
#else
static inline void quant_trace(FILE *f, ...) { (void) f; }
#endif
/*****************************************************************************
*
* quantization
*
*****************************************************************************/
typedef struct box* boxVector;
struct box {
unsigned int ind;
unsigned int colors;
unsigned int sum;
};
typedef unsigned long sample;
typedef sample * tuple;
struct tupleint {
/* An ordered pair of a tuple value and an integer, such as you
would find in a tuple table or tuple hash.
Note that this is a variable length structure.
*/
unsigned int value;
sample tuple[1];
/* This is actually a variable size array -- its size is the
depth of the tuple in question. Some compilers do not let us
declare a variable length array.
*/
};
typedef struct tupleint ** tupletable;
typedef struct {
unsigned int size;
tupletable table;
} tupletable2;
static unsigned int compareplanePlane;
/* This is a parameter to compareplane(). We use this global variable
so that compareplane() can be called by qsort(), to compare two
tuples. qsort() doesn't pass any arguments except the two tuples.
*/
static int
compareplane(const void * const arg1,
const void * const arg2)
{
int lhs, rhs;
typedef const struct tupleint * const * const sortarg;
sortarg comparandPP = (sortarg) arg1;
sortarg comparatorPP = (sortarg) arg2;
lhs = (int)(*comparandPP)->tuple[compareplanePlane];
rhs = (int)(*comparatorPP)->tuple[compareplanePlane];
return lhs - rhs;
}
static int
sumcompare(const void * const b1, const void * const b2)
{
return (int)((boxVector)b2)->sum - (int)((boxVector)b1)->sum;
}
static SIXELSTATUS
alloctupletable(
tupletable /* out */ *result,
unsigned int const /* in */ depth,
unsigned int const /* in */ size,
sixel_allocator_t /* in */ *allocator)
{
SIXELSTATUS status = SIXEL_FALSE;
enum { message_buffer_size = 256 };
char message[message_buffer_size];
int nwrite;
unsigned int mainTableSize;
unsigned int tupleIntSize;
unsigned int allocSize;
void * pool;
tupletable tbl;
unsigned int i;
if (UINT_MAX / sizeof(struct tupleint) < size) {
nwrite = sprintf(message,
"size %u is too big for arithmetic",
size);
if (nwrite > 0) {
sixel_helper_set_additional_message(message);
}
status = SIXEL_RUNTIME_ERROR;
goto end;
}
mainTableSize = size * sizeof(struct tupleint *);
tupleIntSize = sizeof(struct tupleint) - sizeof(sample)
+ depth * sizeof(sample);
/* To save the enormous amount of time it could take to allocate
each individual tuple, we do a trick here and allocate everything
as a single malloc block and suballocate internally.
*/
if ((UINT_MAX - mainTableSize) / tupleIntSize < size) {
nwrite = sprintf(message,
"size %u is too big for arithmetic",
size);
if (nwrite > 0) {
sixel_helper_set_additional_message(message);
}
status = SIXEL_RUNTIME_ERROR;
goto end;
}
allocSize = mainTableSize + size * tupleIntSize;
pool = sixel_allocator_malloc(allocator, allocSize);
if (pool == NULL) {
sprintf(message,
"unable to allocate %u bytes for a %u-entry "
"tuple table",
allocSize, size);
sixel_helper_set_additional_message(message);
status = SIXEL_BAD_ALLOCATION;
goto end;
}
tbl = (tupletable) pool;
for (i = 0; i < size; ++i)
tbl[i] = (struct tupleint *)
((char*)pool + mainTableSize + i * tupleIntSize);
*result = tbl;
status = SIXEL_OK;
end:
return status;
}
/*
** Here is the fun part, the median-cut colormap generator. This is based
** on Paul Heckbert's paper "Color Image Quantization for Frame Buffer
** Display", SIGGRAPH '82 Proceedings, page 297.
*/
static tupletable2
newColorMap(unsigned int const newcolors, unsigned int const depth, sixel_allocator_t *allocator)
{
SIXELSTATUS status = SIXEL_FALSE;
tupletable2 colormap;
unsigned int i;
colormap.size = 0;
status = alloctupletable(&colormap.table, depth, newcolors, allocator);
if (SIXEL_FAILED(status)) {
goto end;
}
if (colormap.table) {
for (i = 0; i < newcolors; ++i) {
unsigned int plane;
for (plane = 0; plane < depth; ++plane)
colormap.table[i]->tuple[plane] = 0;
}
colormap.size = newcolors;
}
end:
return colormap;
}
static boxVector
newBoxVector(
unsigned int const /* in */ colors,
unsigned int const /* in */ sum,
unsigned int const /* in */ newcolors,
sixel_allocator_t /* in */ *allocator)
{
boxVector bv;
bv = (boxVector)sixel_allocator_malloc(allocator,
sizeof(struct box) * (size_t)newcolors);
if (bv == NULL) {
quant_trace(stderr, "out of memory allocating box vector table\n");
return NULL;
}
/* Set up the initial box. */
bv[0].ind = 0;
bv[0].colors = colors;
bv[0].sum = sum;
return bv;
}
static void
findBoxBoundaries(tupletable2 const colorfreqtable,
unsigned int const depth,
unsigned int const boxStart,
unsigned int const boxSize,
sample minval[],
sample maxval[])
{
/*----------------------------------------------------------------------------
Go through the box finding the minimum and maximum of each
component - the boundaries of the box.
-----------------------------------------------------------------------------*/
unsigned int plane;
unsigned int i;
for (plane = 0; plane < depth; ++plane) {
minval[plane] = colorfreqtable.table[boxStart]->tuple[plane];
maxval[plane] = minval[plane];
}
for (i = 1; i < boxSize; ++i) {
for (plane = 0; plane < depth; ++plane) {
sample const v = colorfreqtable.table[boxStart + i]->tuple[plane];
if (v < minval[plane]) minval[plane] = v;
if (v > maxval[plane]) maxval[plane] = v;
}
}
}
static unsigned int
largestByNorm(sample minval[], sample maxval[], unsigned int const depth)
{
unsigned int largestDimension;
unsigned int plane;
sample largestSpreadSoFar;
largestSpreadSoFar = 0;
largestDimension = 0;
for (plane = 0; plane < depth; ++plane) {
sample const spread = maxval[plane]-minval[plane];
if (spread > largestSpreadSoFar) {
largestDimension = plane;
largestSpreadSoFar = spread;
}
}
return largestDimension;
}
static unsigned int
largestByLuminosity(sample minval[], sample maxval[], unsigned int const depth)
{
/*----------------------------------------------------------------------------
This subroutine presumes that the tuple type is either
BLACKANDWHITE, GRAYSCALE, or RGB (which implies pamP->depth is 1 or 3).
To save time, we don't actually check it.
-----------------------------------------------------------------------------*/
unsigned int retval;
double lumin_factor[3] = {0.2989, 0.5866, 0.1145};
if (depth == 1) {
retval = 0;
} else {
/* An RGB tuple */
unsigned int largestDimension;
unsigned int plane;
double largestSpreadSoFar;
largestSpreadSoFar = 0.0;
largestDimension = 0;
for (plane = 0; plane < 3; ++plane) {
double const spread =
lumin_factor[plane] * (maxval[plane]-minval[plane]);
if (spread > largestSpreadSoFar) {
largestDimension = plane;
largestSpreadSoFar = spread;
}
}
retval = largestDimension;
}
return retval;
}
static void
centerBox(unsigned int const boxStart,
unsigned int const boxSize,
tupletable2 const colorfreqtable,
unsigned int const depth,
tuple const newTuple)
{
unsigned int plane;
sample minval, maxval;
unsigned int i;
for (plane = 0; plane < depth; ++plane) {
minval = maxval = colorfreqtable.table[boxStart]->tuple[plane];
for (i = 1; i < boxSize; ++i) {
sample v = colorfreqtable.table[boxStart + i]->tuple[plane];
minval = minval < v ? minval: v;
maxval = maxval > v ? maxval: v;
}
newTuple[plane] = (minval + maxval) / 2;
}
}
static void
averageColors(unsigned int const boxStart,
unsigned int const boxSize,
tupletable2 const colorfreqtable,
unsigned int const depth,
tuple const newTuple)
{
unsigned int plane;
sample sum;
unsigned int i;
for (plane = 0; plane < depth; ++plane) {
sum = 0;
for (i = 0; i < boxSize; ++i) {
sum += colorfreqtable.table[boxStart + i]->tuple[plane];
}
newTuple[plane] = sum / boxSize;
}
}
static void
averagePixels(unsigned int const boxStart,
unsigned int const boxSize,
tupletable2 const colorfreqtable,
unsigned int const depth,
tuple const newTuple)
{
unsigned int n;
/* Number of tuples represented by the box */
unsigned int plane;
unsigned int i;
/* Count the tuples in question */
n = 0; /* initial value */
for (i = 0; i < boxSize; ++i) {
n += (unsigned int)colorfreqtable.table[boxStart + i]->value;
}
for (plane = 0; plane < depth; ++plane) {
sample sum;
sum = 0;
for (i = 0; i < boxSize; ++i) {
sum += colorfreqtable.table[boxStart + i]->tuple[plane]
* (unsigned int)colorfreqtable.table[boxStart + i]->value;
}
newTuple[plane] = sum / n;
}
}
static tupletable2
colormapFromBv(unsigned int const newcolors,
boxVector const bv,
unsigned int const boxes,
tupletable2 const colorfreqtable,
unsigned int const depth,
int const methodForRep,
sixel_allocator_t *allocator)
{
/*
** Ok, we've got enough boxes. Now choose a representative color for
** each box. There are a number of possible ways to make this choice.
** One would be to choose the center of the box; this ignores any structure
** within the boxes. Another method would be to average all the colors in
** the box - this is the method specified in Heckbert's paper. A third
** method is to average all the pixels in the box.
*/
tupletable2 colormap;
unsigned int bi;
colormap = newColorMap(newcolors, depth, allocator);
if (!colormap.size) {
return colormap;
}
for (bi = 0; bi < boxes; ++bi) {
switch (methodForRep) {
case SIXEL_REP_CENTER_BOX:
centerBox(bv[bi].ind, bv[bi].colors,
colorfreqtable, depth,
colormap.table[bi]->tuple);
break;
case SIXEL_REP_AVERAGE_COLORS:
averageColors(bv[bi].ind, bv[bi].colors,
colorfreqtable, depth,
colormap.table[bi]->tuple);
break;
case SIXEL_REP_AVERAGE_PIXELS:
averagePixels(bv[bi].ind, bv[bi].colors,
colorfreqtable, depth,
colormap.table[bi]->tuple);
break;
default:
quant_trace(stderr, "Internal error: "
"invalid value of methodForRep: %d\n",
methodForRep);
}
}
return colormap;
}
static SIXELSTATUS
splitBox(boxVector const bv,
unsigned int *const boxesP,
unsigned int const bi,
tupletable2 const colorfreqtable,
unsigned int const depth,
int const methodForLargest)
{
/*----------------------------------------------------------------------------
Split Box 'bi' in the box vector bv (so that bv contains one more box
than it did as input). Split it so that each new box represents about
half of the pixels in the distribution given by 'colorfreqtable' for
the colors in the original box, but with distinct colors in each of the
two new boxes.
Assume the box contains at least two colors.
-----------------------------------------------------------------------------*/
SIXELSTATUS status = SIXEL_FALSE;
unsigned int const boxStart = bv[bi].ind;
unsigned int const boxSize = bv[bi].colors;
unsigned int const sm = bv[bi].sum;
enum { max_depth= 16 };
sample minval[max_depth];
sample maxval[max_depth];
/* assert(max_depth >= depth); */
unsigned int largestDimension;
/* number of the plane with the largest spread */
unsigned int medianIndex;
unsigned int lowersum;
/* Number of pixels whose value is "less than" the median */
findBoxBoundaries(colorfreqtable, depth, boxStart, boxSize,
minval, maxval);
/* Find the largest dimension, and sort by that component. I have
included two methods for determining the "largest" dimension;
first by simply comparing the range in RGB space, and second by
transforming into luminosities before the comparison.
*/
switch (methodForLargest) {
case SIXEL_LARGE_NORM:
largestDimension = largestByNorm(minval, maxval, depth);
break;
case SIXEL_LARGE_LUM:
largestDimension = largestByLuminosity(minval, maxval, depth);
break;
default:
sixel_helper_set_additional_message(
"Internal error: invalid value of methodForLargest.");
status = SIXEL_LOGIC_ERROR;
goto end;
}
/* TODO: I think this sort should go after creating a box,
not before splitting. Because you need the sort to use
the SIXEL_REP_CENTER_BOX method of choosing a color to
represent the final boxes
*/
/* Set the gross global variable 'compareplanePlane' as a
parameter to compareplane(), which is called by qsort().
*/
compareplanePlane = largestDimension;
qsort((char*) &colorfreqtable.table[boxStart], boxSize,
sizeof(colorfreqtable.table[boxStart]),
compareplane);
{
/* Now find the median based on the counts, so that about half
the pixels (not colors, pixels) are in each subdivision. */
unsigned int i;
lowersum = colorfreqtable.table[boxStart]->value; /* initial value */
for (i = 1; i < boxSize - 1 && lowersum < sm / 2; ++i) {
lowersum += colorfreqtable.table[boxStart + i]->value;
}
medianIndex = i;
}
/* Split the box, and sort to bring the biggest boxes to the top. */
bv[bi].colors = medianIndex;
bv[bi].sum = lowersum;
bv[*boxesP].ind = boxStart + medianIndex;
bv[*boxesP].colors = boxSize - medianIndex;
bv[*boxesP].sum = sm - lowersum;
++(*boxesP);
qsort((char*) bv, *boxesP, sizeof(struct box), sumcompare);
status = SIXEL_OK;
end:
return status;
}
static SIXELSTATUS
mediancut(tupletable2 const colorfreqtable,
unsigned int const depth,
unsigned int const newcolors,
int const methodForLargest,
int const methodForRep,
tupletable2 *const colormapP,
sixel_allocator_t *allocator)
{
/*----------------------------------------------------------------------------
Compute a set of only 'newcolors' colors that best represent an
image whose pixels are summarized by the histogram
'colorfreqtable'. Each tuple in that table has depth 'depth'.
colorfreqtable.table[i] tells the number of pixels in the subject image
have a particular color.
As a side effect, sort 'colorfreqtable'.
-----------------------------------------------------------------------------*/
boxVector bv;
unsigned int bi;
unsigned int boxes;
int multicolorBoxesExist;
unsigned int i;
unsigned int sum;
SIXELSTATUS status = SIXEL_FALSE;
sum = 0;
for (i = 0; i < colorfreqtable.size; ++i) {
sum += colorfreqtable.table[i]->value;
}
/* There is at least one box that contains at least 2 colors; ergo,
there is more splitting we can do. */
bv = newBoxVector(colorfreqtable.size, sum, newcolors, allocator);
if (bv == NULL) {
goto end;
}
boxes = 1;
multicolorBoxesExist = (colorfreqtable.size > 1);
/* Main loop: split boxes until we have enough. */
while (boxes < newcolors && multicolorBoxesExist) {
/* Find the first splittable box. */
for (bi = 0; bi < boxes && bv[bi].colors < 2; ++bi)
;
if (bi >= boxes) {
multicolorBoxesExist = 0;
} else {
status = splitBox(bv, &boxes, bi,
colorfreqtable, depth,
methodForLargest);
if (SIXEL_FAILED(status)) {
goto end;
}
}
}
*colormapP = colormapFromBv(newcolors, bv, boxes,
colorfreqtable, depth,
methodForRep, allocator);
sixel_allocator_free(allocator, bv);
status = SIXEL_OK;
end:
return status;
}
static unsigned int
computeHash(unsigned char const *data, unsigned int const depth)
{
unsigned int hash = 0;
unsigned int n;
for (n = 0; n < depth; n++) {
hash |= (unsigned int)(data[depth - 1 - n] >> 3) << n * 5;
}
return hash;
}
static SIXELSTATUS
computeHistogram(unsigned char const /* in */ *data,
unsigned int /* in */ length,
unsigned long const /* in */ depth,
tupletable2 * const /* out */ colorfreqtableP,
int const /* in */ qualityMode,
sixel_allocator_t /* in */ *allocator)
{
SIXELSTATUS status = SIXEL_FALSE;
typedef unsigned short unit_t;
unsigned int i, n;
unit_t *histogram = NULL;
unit_t *refmap = NULL;
unit_t *ref;
unit_t *it;
unsigned int bucket_index;
unsigned int step;
unsigned int max_sample;
switch (qualityMode) {
case SIXEL_QUALITY_LOW:
max_sample = 18383;
step = length / depth / max_sample * depth;
break;
case SIXEL_QUALITY_HIGH:
max_sample = 18383;
step = length / depth / max_sample * depth;
break;
case SIXEL_QUALITY_FULL:
default:
max_sample = 4003079;
step = length / depth / max_sample * depth;
break;
}
if (length < max_sample * depth) {
step = 6 * depth;
}
if (step <= 0) {
step = depth;
}
quant_trace(stderr, "making histogram...\n");
histogram = (unit_t *)sixel_allocator_calloc(allocator,
(size_t)(1 << depth * 5),
sizeof(unit_t));
if (histogram == NULL) {
sixel_helper_set_additional_message(
"unable to allocate memory for histogram.");
status = SIXEL_BAD_ALLOCATION;
goto end;
}
it = ref = refmap
= (unsigned short *)sixel_allocator_malloc(allocator,
(size_t)(1 << depth * 5) * sizeof(unit_t));
if (!it) {
sixel_helper_set_additional_message(
"unable to allocate memory for lookup table.");
status = SIXEL_BAD_ALLOCATION;
goto end;
}
for (i = 0; i < length; i += step) {
bucket_index = computeHash(data + i, 3);
if (histogram[bucket_index] == 0) {
*ref++ = bucket_index;
}
if (histogram[bucket_index] < (unsigned int)(1 << sizeof(unsigned short) * 8) - 1) {
histogram[bucket_index]++;
}
}
colorfreqtableP->size = (unsigned int)(ref - refmap);
status = alloctupletable(&colorfreqtableP->table, depth, (unsigned int)(ref - refmap), allocator);
if (SIXEL_FAILED(status)) {
goto end;
}
for (i = 0; i < colorfreqtableP->size; ++i) {
if (histogram[refmap[i]] > 0) {
colorfreqtableP->table[i]->value = histogram[refmap[i]];
for (n = 0; n < depth; n++) {
colorfreqtableP->table[i]->tuple[depth - 1 - n]
= (sample)((*it >> n * 5 & 0x1f) << 3);
}
}
it++;
}
quant_trace(stderr, "%u colors found\n", colorfreqtableP->size);
status = SIXEL_OK;
end:
sixel_allocator_free(allocator, refmap);
sixel_allocator_free(allocator, histogram);
return status;
}
static int
computeColorMapFromInput(unsigned char const *data,
unsigned int const length,
unsigned int const depth,
unsigned int const reqColors,
int const methodForLargest,
int const methodForRep,
int const qualityMode,
tupletable2 * const colormapP,
unsigned int *origcolors,
sixel_allocator_t *allocator)
{
/*----------------------------------------------------------------------------
Produce a colormap containing the best colors to represent the
image stream in file 'ifP'. Figure it out using the median cut
technique.
The colormap will have 'reqcolors' or fewer colors in it, unless
'allcolors' is true, in which case it will have all the colors that
are in the input.
The colormap has the same maxval as the input.
Put the colormap in newly allocated storage as a tupletable2
and return its address as *colormapP. Return the number of colors in
it as *colorsP and its maxval as *colormapMaxvalP.
Return the characteristics of the input file as
*formatP and *freqPamP. (This information is not really
relevant to our colormap mission; just a fringe benefit).
-----------------------------------------------------------------------------*/
SIXELSTATUS status = SIXEL_FALSE;
tupletable2 colorfreqtable = {0, NULL};
unsigned int i;
unsigned int n;
status = computeHistogram(data, length, depth,
&colorfreqtable, qualityMode, allocator);
if (SIXEL_FAILED(status)) {
goto end;
}
if (origcolors) {
*origcolors = colorfreqtable.size;
}
if (colorfreqtable.size <= reqColors) {
quant_trace(stderr,
"Image already has few enough colors (<=%d). "
"Keeping same colors.\n", reqColors);
/* *colormapP = colorfreqtable; */
colormapP->size = colorfreqtable.size;
status = alloctupletable(&colormapP->table, depth, colorfreqtable.size, allocator);
if (SIXEL_FAILED(status)) {
goto end;
}
for (i = 0; i < colorfreqtable.size; ++i) {
colormapP->table[i]->value = colorfreqtable.table[i]->value;
for (n = 0; n < depth; ++n) {
colormapP->table[i]->tuple[n] = colorfreqtable.table[i]->tuple[n];
}
}
} else {
quant_trace(stderr, "choosing %d colors...\n", reqColors);
status = mediancut(colorfreqtable, depth, reqColors,
methodForLargest, methodForRep, colormapP, allocator);
if (SIXEL_FAILED(status)) {
goto end;
}
quant_trace(stderr, "%d colors are choosed.\n", colorfreqtable.size);
}
status = SIXEL_OK;
end:
sixel_allocator_free(allocator, colorfreqtable.table);
return status;
}
/* diffuse error energy to surround pixels */
static void
error_diffuse(unsigned char /* in */ *data, /* base address of pixel buffer */
int /* in */ pos, /* address of the destination pixel */
int /* in */ depth, /* color depth in bytes */
int /* in */ error, /* error energy */
int /* in */ numerator, /* numerator of diffusion coefficient */
int /* in */ denominator ,/* denominator of diffusion coefficient */
int /* in */ area /* area, in pixels */)
{
int c;
if (pos < 0 || pos >= area) {
return;
}
data += pos * depth;
c = *data + error * numerator / denominator;
if (c < 0) {
c = 0;
}
if (c >= 1 << 8) {
c = (1 << 8) - 1;
}
*data = (unsigned char)c;
}
static void
diffuse_none(unsigned char *data, int width, int height,
int x, int y, int depth, int error)
{
/* unused */ (void) data;
/* unused */ (void) width;
/* unused */ (void) height;
/* unused */ (void) x;
/* unused */ (void) y;
/* unused */ (void) depth;
/* unused */ (void) error;
}
static void
diffuse_fs(unsigned char *data, int width, int height,
int x, int y, int depth, int error)
{
int pos;
pos = y * width + x;
/* Floyd Steinberg Method
* curr 7/16
* 3/16 5/48 1/16
*/
if (x < width - 1 && y < height - 1) {
/* add error to the right cell */
error_diffuse(data, pos + width * 0 + 1, depth, error, 7, 16, width * height);
/* add error to the left-bottom cell */
error_diffuse(data, pos + width * 1 - 1, depth, error, 3, 16, width * height);
/* add error to the bottom cell */
error_diffuse(data, pos + width * 1 + 0, depth, error, 5, 16, width * height);
/* add error to the right-bottom cell */
error_diffuse(data, pos + width * 1 + 1, depth, error, 1, 16, width * height);
}
}
static void
diffuse_atkinson(unsigned char *data, int width, int height,
int x, int y, int depth, int error)
{
int pos;
pos = y * width + x;
/* Atkinson's Method
* curr 1/8 1/8
* 1/8 1/8 1/8
* 1/8
*/
if (y < height - 2) {
/* add error to the right cell */
error_diffuse(data, pos + width * 0 + 1, depth, error, 1, 8, width * height);
/* add error to the 2th right cell */
error_diffuse(data, pos + width * 0 + 2, depth, error, 1, 8, width * height);
/* add error to the left-bottom cell */
error_diffuse(data, pos + width * 1 - 1, depth, error, 1, 8, width * height);
/* add error to the bottom cell */
error_diffuse(data, pos + width * 1 + 0, depth, error, 1, 8, width * height);
/* add error to the right-bottom cell */
error_diffuse(data, pos + width * 1 + 1, depth, error, 1, 8, width * height);
/* add error to the 2th bottom cell */
error_diffuse(data, pos + width * 2 + 0, depth, error, 1, 8, width * height);
}
}
static void
diffuse_jajuni(unsigned char *data, int width, int height,
int x, int y, int depth, int error)
{
int pos;
pos = y * width + x;
/* Jarvis, Judice & Ninke Method
* curr 7/48 5/48
* 3/48 5/48 7/48 5/48 3/48
* 1/48 3/48 5/48 3/48 1/48
*/
if (pos < (height - 2) * width - 2) {
error_diffuse(data, pos + width * 0 + 1, depth, error, 7, 48, width * height);
error_diffuse(data, pos + width * 0 + 2, depth, error, 5, 48, width * height);
error_diffuse(data, pos + width * 1 - 2, depth, error, 3, 48, width * height);
error_diffuse(data, pos + width * 1 - 1, depth, error, 5, 48, width * height);
error_diffuse(data, pos + width * 1 + 0, depth, error, 7, 48, width * height);
error_diffuse(data, pos + width * 1 + 1, depth, error, 5, 48, width * height);
error_diffuse(data, pos + width * 1 + 2, depth, error, 3, 48, width * height);
error_diffuse(data, pos + width * 2 - 2, depth, error, 1, 48, width * height);
error_diffuse(data, pos + width * 2 - 1, depth, error, 3, 48, width * height);
error_diffuse(data, pos + width * 2 + 0, depth, error, 5, 48, width * height);
error_diffuse(data, pos + width * 2 + 1, depth, error, 3, 48, width * height);
error_diffuse(data, pos + width * 2 + 2, depth, error, 1, 48, width * height);
}
}
static void
diffuse_stucki(unsigned char *data, int width, int height,
int x, int y, int depth, int error)
{
int pos;
pos = y * width + x;
/* Stucki's Method
* curr 8/48 4/48
* 2/48 4/48 8/48 4/48 2/48
* 1/48 2/48 4/48 2/48 1/48
*/
if (pos < (height - 2) * width - 2) {
error_diffuse(data, pos + width * 0 + 1, depth, error, 1, 6, width * height);
error_diffuse(data, pos + width * 0 + 2, depth, error, 1, 12, width * height);
error_diffuse(data, pos + width * 1 - 2, depth, error, 1, 24, width * height);
error_diffuse(data, pos + width * 1 - 1, depth, error, 1, 12, width * height);
error_diffuse(data, pos + width * 1 + 0, depth, error, 1, 6, width * height);
error_diffuse(data, pos + width * 1 + 1, depth, error, 1, 12, width * height);
error_diffuse(data, pos + width * 1 + 2, depth, error, 1, 24, width * height);
error_diffuse(data, pos + width * 2 - 2, depth, error, 1, 48, width * height);
error_diffuse(data, pos + width * 2 - 1, depth, error, 1, 24, width * height);
error_diffuse(data, pos + width * 2 + 0, depth, error, 1, 12, width * height);
error_diffuse(data, pos + width * 2 + 1, depth, error, 1, 24, width * height);
error_diffuse(data, pos + width * 2 + 2, depth, error, 1, 48, width * height);
}
}
static void
diffuse_burkes(unsigned char *data, int width, int height,
int x, int y, int depth, int error)
{
int pos;
pos = y * width + x;
/* Burkes' Method
* curr 4/16 2/16
* 1/16 2/16 4/16 2/16 1/16
*/
if (pos < (height - 1) * width - 2) {
error_diffuse(data, pos + width * 0 + 1, depth, error, 1, 4, width * height);
error_diffuse(data, pos + width * 0 + 2, depth, error, 1, 8, width * height);
error_diffuse(data, pos + width * 1 - 2, depth, error, 1, 16, width * height);
error_diffuse(data, pos + width * 1 - 1, depth, error, 1, 8, width * height);
error_diffuse(data, pos + width * 1 + 0, depth, error, 1, 4, width * height);
error_diffuse(data, pos + width * 1 + 1, depth, error, 1, 8, width * height);
error_diffuse(data, pos + width * 1 + 2, depth, error, 1, 16, width * height);
}
}
static float
mask_a (int x, int y, int c)
{
return ((((x + c * 67) + y * 236) * 119) & 255 ) / 128.0 - 1.0;
}
static float
mask_x (int x, int y, int c)
{
return ((((x + c * 29) ^ y* 149) * 1234) & 511 ) / 256.0 - 1.0;
}
/* lookup closest color from palette with "normal" strategy */
static int
lookup_normal(unsigned char const * const pixel,
int const depth,
unsigned char const * const palette,
int const reqcolor,
unsigned short * const cachetable,
int const complexion)
{
int result;
int diff;
int r;
int i;
int n;
int distant;
result = (-1);
diff = INT_MAX;
/* don't use cachetable in 'normal' strategy */
(void) cachetable;
for (i = 0; i < reqcolor; i++) {
distant = 0;
r = pixel[0] - palette[i * depth + 0];
distant += r * r * complexion;
for (n = 1; n < depth; ++n) {
r = pixel[n] - palette[i * depth + n];
distant += r * r;
}
if (distant < diff) {
diff = distant;
result = i;
}
}
return result;
}
/* lookup closest color from palette with "fast" strategy */
static int
lookup_fast(unsigned char const * const pixel,
int const depth,
unsigned char const * const palette,
int const reqcolor,
unsigned short * const cachetable,
int const complexion)
{
int result;
unsigned int hash;
int diff;
int cache;
int i;
int distant;
/* don't use depth in 'fast' strategy because it's always 3 */
(void) depth;
result = (-1);
diff = INT_MAX;
hash = computeHash(pixel, 3);
cache = cachetable[hash];
if (cache) { /* fast lookup */
return cache - 1;
}
/* collision */
for (i = 0; i < reqcolor; i++) {
distant = 0;
#if 0
for (n = 0; n < 3; ++n) {
r = pixel[n] - palette[i * 3 + n];
distant += r * r;
}
#elif 1 /* complexion correction */
distant = (pixel[0] - palette[i * 3 + 0]) * (pixel[0] - palette[i * 3 + 0]) * complexion
+ (pixel[1] - palette[i * 3 + 1]) * (pixel[1] - palette[i * 3 + 1])
+ (pixel[2] - palette[i * 3 + 2]) * (pixel[2] - palette[i * 3 + 2])
;
#endif
if (distant < diff) {
diff = distant;
result = i;
}
}
cachetable[hash] = result + 1;
return result;
}
static int
lookup_mono_darkbg(unsigned char const * const pixel,
int const depth,
unsigned char const * const palette,
int const reqcolor,
unsigned short * const cachetable,
int const complexion)
{
int n;
int distant;
/* unused */ (void) palette;
/* unused */ (void) cachetable;
/* unused */ (void) complexion;
distant = 0;
for (n = 0; n < depth; ++n) {
distant += pixel[n];
}
return distant >= 128 * reqcolor ? 1: 0;
}
static int
lookup_mono_lightbg(unsigned char const * const pixel,
int const depth,
unsigned char const * const palette,
int const reqcolor,
unsigned short * const cachetable,
int const complexion)
{
int n;
int distant;
/* unused */ (void) palette;
/* unused */ (void) cachetable;
/* unused */ (void) complexion;
distant = 0;
for (n = 0; n < depth; ++n) {
distant += pixel[n];
}
return distant < 128 * reqcolor ? 1: 0;
}
/* choose colors using median-cut method */
SIXELSTATUS
sixel_quant_make_palette(
unsigned char /* out */ **result,
unsigned char const /* in */ *data,
unsigned int /* in */ length,
int /* in */ pixelformat,
unsigned int /* in */ reqcolors,
unsigned int /* in */ *ncolors,
unsigned int /* in */ *origcolors,
int /* in */ methodForLargest,
int /* in */ methodForRep,
int /* in */ qualityMode,
sixel_allocator_t /* in */ *allocator)
{
SIXELSTATUS status = SIXEL_FALSE;
unsigned int i;
unsigned int n;
int ret;
tupletable2 colormap;
unsigned int depth;
int result_depth;
result_depth = sixel_helper_compute_depth(pixelformat);
if (result_depth <= 0) {
*result = NULL;
goto end;
}
depth = (unsigned int)result_depth;
ret = computeColorMapFromInput(data, length, depth,
reqcolors, methodForLargest,
methodForRep, qualityMode,
&colormap, origcolors, allocator);
if (ret != 0) {
*result = NULL;
goto end;
}
*ncolors = colormap.size;
quant_trace(stderr, "tupletable size: %d\n", *ncolors);
*result = (unsigned char *)sixel_allocator_malloc(allocator, *ncolors * depth);
for (i = 0; i < *ncolors; i++) {
for (n = 0; n < depth; ++n) {
(*result)[i * depth + n] = colormap.table[i]->tuple[n];
}
}
sixel_allocator_free(allocator, colormap.table);
status = SIXEL_OK;
end:
return status;
}
/* apply color palette into specified pixel buffers */
SIXELSTATUS
sixel_quant_apply_palette(
sixel_index_t /* out */ *result,
unsigned char /* in */ *data,
int /* in */ width,
int /* in */ height,
int /* in */ depth,
unsigned char /* in */ *palette,
int /* in */ reqcolor,
int /* in */ methodForDiffuse,
int /* in */ foptimize,
int /* in */ foptimize_palette,
int /* in */ complexion,
unsigned short /* in */ *cachetable,
int /* in */ *ncolors,
sixel_allocator_t /* in */ *allocator)
{
typedef int component_t;
enum { max_depth = 4 };
SIXELSTATUS status = SIXEL_FALSE;
int pos, n, x, y, sum1, sum2;
component_t offset;
int color_index;
unsigned short *indextable;
unsigned char new_palette[SIXEL_PALETTE_MAX * 4];
unsigned short migration_map[SIXEL_PALETTE_MAX];
float (*f_mask) (int x, int y, int c) = NULL;
void (*f_diffuse)(unsigned char *data, int width, int height,
int x, int y, int depth, int offset);
int (*f_lookup)(unsigned char const * const pixel,
int const depth,
unsigned char const * const palette,
int const reqcolor,
unsigned short * const cachetable,
int const complexion);
/* check bad reqcolor */
if (reqcolor < 1) {
status = SIXEL_BAD_ARGUMENT;
sixel_helper_set_additional_message(
"sixel_quant_apply_palette: "
"a bad argument is detected, reqcolor < 0.");
goto end;
}
if (depth != 3) {
f_diffuse = diffuse_none;
} else {
switch (methodForDiffuse) {
case SIXEL_DIFFUSE_NONE:
f_diffuse = diffuse_none;
break;
case SIXEL_DIFFUSE_ATKINSON:
f_diffuse = diffuse_atkinson;
break;
case SIXEL_DIFFUSE_FS:
f_diffuse = diffuse_fs;
break;
case SIXEL_DIFFUSE_JAJUNI:
f_diffuse = diffuse_jajuni;
break;
case SIXEL_DIFFUSE_STUCKI:
f_diffuse = diffuse_stucki;
break;
case SIXEL_DIFFUSE_BURKES:
f_diffuse = diffuse_burkes;
break;
case SIXEL_DIFFUSE_A_DITHER:
f_diffuse = diffuse_none;
f_mask = mask_a;
break;
case SIXEL_DIFFUSE_X_DITHER:
f_diffuse = diffuse_none;
f_mask = mask_x;
break;
default:
quant_trace(stderr, "Internal error: invalid value of"
" methodForDiffuse: %d\n",
methodForDiffuse);
f_diffuse = diffuse_none;
break;
}
}
f_lookup = NULL;
if (reqcolor == 2) {
sum1 = 0;
sum2 = 0;
for (n = 0; n < depth; ++n) {
sum1 += palette[n];
}
for (n = depth; n < depth + depth; ++n) {
sum2 += palette[n];
}
if (sum1 == 0 && sum2 == 255 * 3) {
f_lookup = lookup_mono_darkbg;
} else if (sum1 == 255 * 3 && sum2 == 0) {
f_lookup = lookup_mono_lightbg;
}
}
if (f_lookup == NULL) {
if (foptimize && depth == 3) {
f_lookup = lookup_fast;
} else {
f_lookup = lookup_normal;
}
}
indextable = cachetable;
if (cachetable == NULL && f_lookup == lookup_fast) {
indextable = (unsigned short *)sixel_allocator_calloc(allocator,
(size_t)(1 << depth * 5),
sizeof(unsigned short));
if (!indextable) {
quant_trace(stderr, "Unable to allocate memory for indextable.\n");
goto end;
}
}
if (foptimize_palette) {
*ncolors = 0;
memset(new_palette, 0x00, sizeof(SIXEL_PALETTE_MAX * depth));
memset(migration_map, 0x00, sizeof(migration_map));
if (f_mask) {
for (y = 0; y < height; ++y) {
for (x = 0; x < width; ++x) {
unsigned char copy[max_depth];
int d;
int val;
pos = y * width + x;
for (d = 0; d < depth; d ++) {
val = data[pos * depth + d] + f_mask(x, y, d) * 32;
copy[d] = val < 0 ? 0 : val > 255 ? 255 : val;
}
color_index = f_lookup(copy, depth,
palette, reqcolor, indextable, complexion);
if (migration_map[color_index] == 0) {
result[pos] = *ncolors;
for (n = 0; n < depth; ++n) {
new_palette[*ncolors * depth + n] = palette[color_index * depth + n];
}
++*ncolors;
migration_map[color_index] = *ncolors;
} else {
result[pos] = migration_map[color_index] - 1;
}
}
}
memcpy(palette, new_palette, (size_t)(*ncolors * depth));
} else {
for (y = 0; y < height; ++y) {
for (x = 0; x < width; ++x) {
pos = y * width + x;
color_index = f_lookup(data + (pos * depth), depth,
palette, reqcolor, indextable, complexion);
if (migration_map[color_index] == 0) {
result[pos] = *ncolors;
for (n = 0; n < depth; ++n) {
new_palette[*ncolors * depth + n] = palette[color_index * depth + n];
}
++*ncolors;
migration_map[color_index] = *ncolors;
} else {
result[pos] = migration_map[color_index] - 1;
}
for (n = 0; n < depth; ++n) {
offset = data[pos * depth + n] - palette[color_index * depth + n];
f_diffuse(data + n, width, height, x, y, depth, offset);
}
}
}
memcpy(palette, new_palette, (size_t)(*ncolors * depth));
}
} else {
if (f_mask) {
for (y = 0; y < height; ++y) {
for (x = 0; x < width; ++x) {
unsigned char copy[max_depth];
int d;
int val;
pos = y * width + x;
for (d = 0; d < depth; d ++) {
val = data[pos * depth + d] + f_mask(x, y, d) * 32;
copy[d] = val < 0 ? 0 : val > 255 ? 255 : val;
}
result[pos] = f_lookup(copy, depth,
palette, reqcolor, indextable, complexion);
}
}
} else {
for (y = 0; y < height; ++y) {
for (x = 0; x < width; ++x) {
pos = y * width + x;
color_index = f_lookup(data + (pos * depth), depth,
palette, reqcolor, indextable, complexion);
result[pos] = color_index;
for (n = 0; n < depth; ++n) {
offset = data[pos * depth + n] - palette[color_index * depth + n];
f_diffuse(data + n, width, height, x, y, depth, offset);
}
}
}
}
*ncolors = reqcolor;
}
if (cachetable == NULL) {
sixel_allocator_free(allocator, indextable);
}
status = SIXEL_OK;
end:
return status;
}
void
sixel_quant_free_palette(
unsigned char /* in */ *data,
sixel_allocator_t /* in */ *allocator)
{
sixel_allocator_free(allocator, data);
}
#if HAVE_TESTS
static int
test1(void)
{
int nret = EXIT_FAILURE;
sample minval[1] = { 1 };
sample maxval[1] = { 2 };
unsigned int retval;
retval = largestByLuminosity(minval, maxval, 1);
if (retval != 0) {
goto error;
}
nret = EXIT_SUCCESS;
error:
return nret;
}
SIXELAPI int
sixel_quant_tests_main(void)
{
int nret = EXIT_FAILURE;
size_t i;
typedef int (* testcase)(void);
static testcase const testcases[] = {
test1,
};
for (i = 0; i < sizeof(testcases) / sizeof(testcase); ++i) {
nret = testcases[i]();
if (nret != EXIT_SUCCESS) {
goto error;
}
}
nret = EXIT_SUCCESS;
error:
return nret;
}
#endif /* HAVE_TESTS */
/* emacs Local Variables: */
/* emacs mode: c */
/* emacs tab-width: 4 */
/* emacs indent-tabs-mode: nil */
/* emacs c-basic-offset: 4 */
/* emacs End: */
/* vim: set expandtab ts=4 sts=4 sw=4 : */
/* EOF */
|