X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fpng.c;h=f6edc12126f8e0f76c2700e47cf53d498da26d7a;hp=9ab0325bf3e7598a15d7a711aaababd74a5d2f45;hb=6595b27601ff72318acbcec25861ba1c824777df;hpb=e321a0df2c56ff61602b13c1440465911b231f89 diff --git a/lib/png.c b/lib/png.c index 9ab0325..f6edc12 100644 --- a/lib/png.c +++ b/lib/png.c @@ -1376,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() @@ -1395,13 +1395,93 @@ static void make_num_bits_table() } } +static int png_find_best_filter_8(unsigned char*src, int width, int y) +{ + /* + + FFFF I X X M M EEEE + F I X X MM MM E + FFF I X M M M EEE + F I X X M M E + F I X X M M EEEE + + */ + return 0; +} + +static int png_find_best_filter_32(unsigned char*src, int width, int y) +{ + make_num_bits_table(); + + int num_filters = y>0?5:2; //don't apply y-direction filter in first line + + int srcwidth = y?width*4:0; + int x; + 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]; + + old[0] = src[3]; + old[1] = src[3]; + old[2] = src[3] - src[3-srcwidth]; + old[3] = src[3] - src[3-srcwidth]; + old[4] = src[3] - PaethPredictor(0, src[3-srcwidth], 0); + + int different_pairs[5] = {0,0,0,0,0}; + + int w = width*4; + for(x=4;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_nr = 0; +#if 0 + int f; int best_energy = INT_MAX; int w = width*(bpp/8); unsigned char* pairs = malloc(8192); @@ -1432,11 +1512,17 @@ static int png_apply_filter(unsigned char*dest, unsigned char*src, int width, in best_energy = energy; } } + free(pairs); +#else + if(bpp==8) + best_nr = png_find_best_filter_8(src, width, y); + else + best_nr = png_find_best_filter_32(src, width, 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; } @@ -1475,6 +1561,7 @@ EXPORT void savePNG(const char*filename, unsigned char*data, int width, int heig if(!numcolors) { int num = png_get_number_of_palette_entries((COL*)data, width, height, palette, &has_alpha); + num = 256; if(num<=255) { //printf("image has %d different colors (alpha=%d)\n", num, has_alpha); data2 = malloc(width*height);