X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fpng.c;h=35c1a2516d7ea303a78f4409386cfa2fd1e9282d;hp=5895269fd8cfcf0385bb4a94e62252bbe3a138f2;hb=de003e8704719a8fc7d11d115f905de9d78ec938;hpb=27215f1c64457c50a5e1a5b2790bf2b9e73d3c4e diff --git a/lib/png.c b/lib/png.c index 5895269..35c1a25 100644 --- a/lib/png.c +++ b/lib/png.c @@ -358,7 +358,7 @@ static void applyfilter3(int mode, unsigned char*src, unsigned char*old, unsigne } } -static void inline applyfilter4(int mode, unsigned char*src, unsigned char*old, unsigned char*dest, int width) +void png_inverse_filter_32(int mode, unsigned char*src, unsigned char*old, unsigned char*dest, int width) { int x; unsigned char lastr=0; @@ -441,7 +441,6 @@ static void inline applyfilter4(int mode, unsigned char*src, unsigned char*old, } } - EXPORT int getPNGdimensions(const char*sname, int*destwidth, int*destheight) { FILE*fi; @@ -649,7 +648,7 @@ EXPORT int getPNG(const char*sname, int*destwidth, int*destheight, unsigned char old = &data2[(y-1)*header.width*4]; } if(header.mode == 6) { - applyfilter4(mode, src, old, dest, header.width); + png_inverse_filter_32(mode, src, old, dest, header.width); } else { // header.mode = 2 applyfilter3(mode, src, old, dest, header.width); /* replace alpha color */ @@ -1377,7 +1376,7 @@ static int png_apply_specific_filter_32(int filtermode, unsigned char*dest, unsi } return filtermode; } - + static int*num_bits_table = 0; static void make_num_bits_table() @@ -1396,14 +1395,82 @@ static void make_num_bits_table() } } -static int png_apply_filter(unsigned char*dest, unsigned char*src, int width, int y, int bpp) +static int png_find_best_filter(unsigned char*src, int width, int bpp, int y) { make_num_bits_table(); - + int num_filters = y>0?5:2; //don't apply y-direction filter in first line + + int bytes_per_pixel = bpp>>3; + int w = width*bytes_per_pixel; + int back_x = bytes_per_pixel; + int back_y = y?width*bytes_per_pixel:0; + + unsigned char*pairs[5]; + pairs[0] = calloc(1, 8192); + pairs[1] = calloc(1, 8192); + pairs[2] = calloc(1, 8192); + pairs[3] = calloc(1, 8192); + pairs[4] = calloc(1, 8192); + + unsigned char old[5]; + int l = bytes_per_pixel - 1; + old[0] = src[l]; + old[1] = src[l]; + old[2] = src[l] - src[l-back_y]; + old[3] = src[l] - src[l-back_y]; + old[4] = src[l] - PaethPredictor(0, src[l-back_y], 0); + + int different_pairs[5] = {0,0,0,0,0}; + + int x; + for(x=bytes_per_pixel;x>3; + int b = 1<<(v&7); + if(!pairs[i][p]&b) { + pairs[i][p]|=b; + different_pairs[i]++; + } + } + memcpy(old, dest, sizeof(old)); + } int f; int best_nr = 0; int best_energy = INT_MAX; + for(f=0;f0?5:2; //don't apply y-direction filter in first line + int f; + int best_energy = INT_MAX; int w = width*(bpp/8); unsigned char* pairs = malloc(8192); assert(bpp==8 || bpp==32); @@ -1433,11 +1500,14 @@ static int png_apply_filter(unsigned char*dest, unsigned char*src, int width, in best_energy = energy; } } + free(pairs); +#else + best_nr = png_find_best_filter(src, width, bpp, y); +#endif if(bpp==8) png_apply_specific_filter_8(best_nr, dest, src, width); else png_apply_specific_filter_32(best_nr, dest, src, width); - free(pairs); return best_nr; }