123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- #include <stdlib.h>
- #include <stdio.h>
- #include "gif_lib.h"
- #include "gif_lib_private.h"
- #define ABS(x) ((x) > 0 ? (x) : (-(x)))
- #define COLOR_ARRAY_SIZE 32768
- #define BITS_PER_PRIM_COLOR 5
- #define MAX_PRIM_COLOR 0x1f
- static int SortRGBAxis;
- typedef struct QuantizedColorType {
- GifByteType RGB[3];
- GifByteType NewColorIndex;
- long Count;
- struct QuantizedColorType *Pnext;
- } QuantizedColorType;
- typedef struct NewColorMapType {
- GifByteType RGBMin[3], RGBWidth[3];
- unsigned int NumEntries;
- unsigned long Count;
- QuantizedColorType *QuantizedColors;
- } NewColorMapType;
- static int SubdivColorMap(NewColorMapType * NewColorSubdiv,
- unsigned int ColorMapSize,
- unsigned int *NewColorMapSize);
- static int SortCmpRtn(const void *Entry1, const void *Entry2);
- int
- GifQuantizeBuffer(unsigned int Width,
- unsigned int Height,
- int *ColorMapSize,
- GifByteType * RedInput,
- GifByteType * GreenInput,
- GifByteType * BlueInput,
- GifByteType * OutputBuffer,
- GifColorType * OutputColorMap) {
- unsigned int Index, NumOfEntries;
- int i, j, MaxRGBError[3];
- unsigned int NewColorMapSize;
- long Red, Green, Blue;
- NewColorMapType NewColorSubdiv[256];
- QuantizedColorType *ColorArrayEntries, *QuantizedColor;
- ColorArrayEntries = (QuantizedColorType *)malloc(
- sizeof(QuantizedColorType) * COLOR_ARRAY_SIZE);
- if (ColorArrayEntries == NULL) {
- return GIF_ERROR;
- }
- for (i = 0; i < COLOR_ARRAY_SIZE; i++) {
- ColorArrayEntries[i].RGB[0] = i >> (2 * BITS_PER_PRIM_COLOR);
- ColorArrayEntries[i].RGB[1] = (i >> BITS_PER_PRIM_COLOR) &
- MAX_PRIM_COLOR;
- ColorArrayEntries[i].RGB[2] = i & MAX_PRIM_COLOR;
- ColorArrayEntries[i].Count = 0;
- }
-
- for (i = 0; i < (int)(Width * Height); i++) {
- Index = ((RedInput[i] >> (8 - BITS_PER_PRIM_COLOR)) <<
- (2 * BITS_PER_PRIM_COLOR)) +
- ((GreenInput[i] >> (8 - BITS_PER_PRIM_COLOR)) <<
- BITS_PER_PRIM_COLOR) +
- (BlueInput[i] >> (8 - BITS_PER_PRIM_COLOR));
- ColorArrayEntries[Index].Count++;
- }
-
- for (i = 0; i < 256; i++) {
- NewColorSubdiv[i].QuantizedColors = NULL;
- NewColorSubdiv[i].Count = NewColorSubdiv[i].NumEntries = 0;
- for (j = 0; j < 3; j++) {
- NewColorSubdiv[i].RGBMin[j] = 0;
- NewColorSubdiv[i].RGBWidth[j] = 255;
- }
- }
-
- for (i = 0; i < COLOR_ARRAY_SIZE; i++)
- if (ColorArrayEntries[i].Count > 0)
- break;
- QuantizedColor = NewColorSubdiv[0].QuantizedColors = &ColorArrayEntries[i];
- NumOfEntries = 1;
- while (++i < COLOR_ARRAY_SIZE)
- if (ColorArrayEntries[i].Count > 0) {
- QuantizedColor->Pnext = &ColorArrayEntries[i];
- QuantizedColor = &ColorArrayEntries[i];
- NumOfEntries++;
- }
- QuantizedColor->Pnext = NULL;
- NewColorSubdiv[0].NumEntries = NumOfEntries;
- NewColorSubdiv[0].Count = ((long)Width) * Height;
- NewColorMapSize = 1;
- if (SubdivColorMap(NewColorSubdiv, *ColorMapSize, &NewColorMapSize) !=
- GIF_OK) {
- free((char *)ColorArrayEntries);
- return GIF_ERROR;
- }
- if (NewColorMapSize < *ColorMapSize) {
-
- for (i = NewColorMapSize; i < *ColorMapSize; i++)
- OutputColorMap[i].Red = OutputColorMap[i].Green =
- OutputColorMap[i].Blue = 0;
- }
-
- for (i = 0; i < NewColorMapSize; i++) {
- if ((j = NewColorSubdiv[i].NumEntries) > 0) {
- QuantizedColor = NewColorSubdiv[i].QuantizedColors;
- Red = Green = Blue = 0;
- while (QuantizedColor) {
- QuantizedColor->NewColorIndex = i;
- Red += QuantizedColor->RGB[0];
- Green += QuantizedColor->RGB[1];
- Blue += QuantizedColor->RGB[2];
- QuantizedColor = QuantizedColor->Pnext;
- }
- OutputColorMap[i].Red = (Red << (8 - BITS_PER_PRIM_COLOR)) / j;
- OutputColorMap[i].Green = (Green << (8 - BITS_PER_PRIM_COLOR)) / j;
- OutputColorMap[i].Blue = (Blue << (8 - BITS_PER_PRIM_COLOR)) / j;
- }
- }
-
- MaxRGBError[0] = MaxRGBError[1] = MaxRGBError[2] = 0;
- for (i = 0; i < (int)(Width * Height); i++) {
- Index = ((RedInput[i] >> (8 - BITS_PER_PRIM_COLOR)) <<
- (2 * BITS_PER_PRIM_COLOR)) +
- ((GreenInput[i] >> (8 - BITS_PER_PRIM_COLOR)) <<
- BITS_PER_PRIM_COLOR) +
- (BlueInput[i] >> (8 - BITS_PER_PRIM_COLOR));
- Index = ColorArrayEntries[Index].NewColorIndex;
- OutputBuffer[i] = Index;
- if (MaxRGBError[0] < ABS(OutputColorMap[Index].Red - RedInput[i]))
- MaxRGBError[0] = ABS(OutputColorMap[Index].Red - RedInput[i]);
- if (MaxRGBError[1] < ABS(OutputColorMap[Index].Green - GreenInput[i]))
- MaxRGBError[1] = ABS(OutputColorMap[Index].Green - GreenInput[i]);
- if (MaxRGBError[2] < ABS(OutputColorMap[Index].Blue - BlueInput[i]))
- MaxRGBError[2] = ABS(OutputColorMap[Index].Blue - BlueInput[i]);
- }
- #ifdef DEBUG
- fprintf(stderr,
- "Quantization L(0) errors: Red = %d, Green = %d, Blue = %d.\n",
- MaxRGBError[0], MaxRGBError[1], MaxRGBError[2]);
- #endif
- free((char *)ColorArrayEntries);
- *ColorMapSize = NewColorMapSize;
- return GIF_OK;
- }
- static int
- SubdivColorMap(NewColorMapType * NewColorSubdiv,
- unsigned int ColorMapSize,
- unsigned int *NewColorMapSize) {
- int MaxSize;
- unsigned int i, j, Index = 0, NumEntries, MinColor, MaxColor;
- long Sum, Count;
- QuantizedColorType *QuantizedColor, **SortArray;
- while (ColorMapSize > *NewColorMapSize) {
-
- MaxSize = -1;
- for (i = 0; i < *NewColorMapSize; i++) {
- for (j = 0; j < 3; j++) {
- if ((((int)NewColorSubdiv[i].RGBWidth[j]) > MaxSize) &&
- (NewColorSubdiv[i].NumEntries > 1)) {
- MaxSize = NewColorSubdiv[i].RGBWidth[j];
- Index = i;
- SortRGBAxis = j;
- }
- }
- }
- if (MaxSize == -1)
- return GIF_OK;
-
-
- SortArray = (QuantizedColorType **)malloc(
- sizeof(QuantizedColorType *) *
- NewColorSubdiv[Index].NumEntries);
- if (SortArray == NULL)
- return GIF_ERROR;
- for (j = 0, QuantizedColor = NewColorSubdiv[Index].QuantizedColors;
- j < NewColorSubdiv[Index].NumEntries && QuantizedColor != NULL;
- j++, QuantizedColor = QuantizedColor->Pnext)
- SortArray[j] = QuantizedColor;
-
- qsort(SortArray, NewColorSubdiv[Index].NumEntries,
- sizeof(QuantizedColorType *), SortCmpRtn);
-
- for (j = 0; j < NewColorSubdiv[Index].NumEntries - 1; j++)
- SortArray[j]->Pnext = SortArray[j + 1];
- SortArray[NewColorSubdiv[Index].NumEntries - 1]->Pnext = NULL;
- NewColorSubdiv[Index].QuantizedColors = QuantizedColor = SortArray[0];
- free((char *)SortArray);
-
- Sum = NewColorSubdiv[Index].Count / 2 - QuantizedColor->Count;
- NumEntries = 1;
- Count = QuantizedColor->Count;
- while (QuantizedColor->Pnext != NULL &&
- (Sum -= QuantizedColor->Pnext->Count) >= 0 &&
- QuantizedColor->Pnext->Pnext != NULL) {
- QuantizedColor = QuantizedColor->Pnext;
- NumEntries++;
- Count += QuantizedColor->Count;
- }
-
- MaxColor = QuantizedColor->RGB[SortRGBAxis];
-
- MinColor = QuantizedColor->Pnext->RGB[SortRGBAxis];
- MaxColor <<= (8 - BITS_PER_PRIM_COLOR);
- MinColor <<= (8 - BITS_PER_PRIM_COLOR);
-
- NewColorSubdiv[*NewColorMapSize].QuantizedColors =
- QuantizedColor->Pnext;
- QuantizedColor->Pnext = NULL;
- NewColorSubdiv[*NewColorMapSize].Count = Count;
- NewColorSubdiv[Index].Count -= Count;
- NewColorSubdiv[*NewColorMapSize].NumEntries =
- NewColorSubdiv[Index].NumEntries - NumEntries;
- NewColorSubdiv[Index].NumEntries = NumEntries;
- for (j = 0; j < 3; j++) {
- NewColorSubdiv[*NewColorMapSize].RGBMin[j] =
- NewColorSubdiv[Index].RGBMin[j];
- NewColorSubdiv[*NewColorMapSize].RGBWidth[j] =
- NewColorSubdiv[Index].RGBWidth[j];
- }
- NewColorSubdiv[*NewColorMapSize].RGBWidth[SortRGBAxis] =
- NewColorSubdiv[*NewColorMapSize].RGBMin[SortRGBAxis] +
- NewColorSubdiv[*NewColorMapSize].RGBWidth[SortRGBAxis] - MinColor;
- NewColorSubdiv[*NewColorMapSize].RGBMin[SortRGBAxis] = MinColor;
- NewColorSubdiv[Index].RGBWidth[SortRGBAxis] =
- MaxColor - NewColorSubdiv[Index].RGBMin[SortRGBAxis];
- (*NewColorMapSize)++;
- }
- return GIF_OK;
- }
- static int
- SortCmpRtn(const void *Entry1,
- const void *Entry2) {
- QuantizedColorType *entry1 = (*((QuantizedColorType **) Entry1));
- QuantizedColorType *entry2 = (*((QuantizedColorType **) Entry2));
-
- int hash1 = entry1->RGB[SortRGBAxis] * 256 * 256
- + entry1->RGB[(SortRGBAxis+1) % 3] * 256
- + entry1->RGB[(SortRGBAxis+2) % 3];
- int hash2 = entry2->RGB[SortRGBAxis] * 256 * 256
- + entry2->RGB[(SortRGBAxis+1) % 3] * 256
- + entry2->RGB[(SortRGBAxis+2) % 3];
- return hash1 - hash2;
- }
|