Skip to content

Commit

Permalink
Merge pull request #334 from olt/octree-large-img-fix
Browse files Browse the repository at this point in the history
fix FASTOCTREE quantizer for large images (>16MP)
  • Loading branch information
aclark4life committed Sep 26, 2013
2 parents dea45da + 147a020 commit 1641672
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libImaging/QuantOctree.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
typedef struct _ColorBucket{
/* contains palette index when used for look up cube */
uint32_t count;
uint32_t r;
uint32_t g;
uint32_t b;
uint32_t a;
uint64_t r;
uint64_t g;
uint64_t b;
uint64_t a;
} *ColorBucket;

typedef struct _ColorCube{
Expand Down Expand Up @@ -262,7 +262,7 @@ set_lookup_value(const ColorCube cube, const Pixel *p, long value) {
bucket->count = value;
}

uint32_t
uint64_t
lookup_color(const ColorCube cube, const Pixel *p) {
ColorBucket bucket = color_bucket_from_cube(cube, p);
return bucket->count;
Expand Down

0 comments on commit 1641672

Please sign in to comment.