X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fmodules%2Fswfbits.c;h=01ee654bf85e42452a95ce3856aa9ade9a441690;hb=f6c6a78bee9a386763cbb65c34fd058bce70e679;hp=409ed967b82786ea886f2f3cad2ed13ea1ed5106;hpb=8d1ee53eb333a1d5bac422c3fbdf421da5f74900;p=swftools.git diff --git a/lib/modules/swfbits.c b/lib/modules/swfbits.c index 409ed96..01ee654 100644 --- a/lib/modules/swfbits.c +++ b/lib/modules/swfbits.c @@ -150,8 +150,10 @@ int swf_ImageGetNumberOfPaletteEntries(RGBA*img, int width, int height, RGBA*pal } lastcol32 = col32; } - if(palette_overflow) + if(palette_overflow) { + free(pal); return width*height; + } if(palette) { int i = 0; for(t=0;t<256;t++) { @@ -402,7 +404,11 @@ int swf_SetJPEGBits(TAG * t, char *fname, int quality) static void tag_init_source(struct jpeg_decompress_struct *cinfo) { TAG *tag = (TAG *) cinfo->client_data; - swf_SetTagPos(tag, 2); + if (tag->id == ST_DEFINEBITSJPEG3) { + swf_SetTagPos(tag, 6); + } else { + swf_SetTagPos(tag, 2); + } cinfo->src->bytes_in_buffer = 0; } static boolean tag_fill_input_buffer(struct jpeg_decompress_struct *cinfo) @@ -446,18 +452,24 @@ RGBA *swf_JPEG2TagToImage(TAG * tag, int *width, int *height) struct jpeg_source_mgr mgr; RGBA *dest; int y; + int offset = 0; + int oldtaglen = 0; *width = 0; *height = 0; if (tag->id == ST_DEFINEBITSJPEG) { - fprintf(stderr, - "rfxswf: extracting from definebitsjpeg not yet supported"); + fprintf(stderr, "rfxswf: extracting from definebitsjpeg not yet supported\n"); return 0; } if (tag->id == ST_DEFINEBITSJPEG3) { - fprintf(stderr, - "rfxswf: extracting from definebitsjpeg3 not yet supported"); +#ifdef HAVE_ZLIB + offset = swf_GetU32(tag); + oldtaglen = tag->len; + tag->len = offset+6; +#else + fprintf(stderr, "rfxswf: extracting from definebitsjpeg3 not possible: no zlib\n"); return 0; +#endif } cinfo.err = jpeg_std_error(&jerr); @@ -498,6 +510,30 @@ RGBA *swf_JPEG2TagToImage(TAG * tag, int *width, int *height) jpeg_finish_decompress(&cinfo); jpeg_destroy_decompress(&cinfo); + +#ifdef HAVE_ZLIB + if(offset) { + U32 datalen = cinfo.output_width*cinfo.output_height; + U8* alphadata = (U8*)rfx_alloc(datalen); + int error; + tag->len = oldtaglen; + swf_SetTagPos(tag, 6+offset); + error = uncompress(alphadata, &datalen, &tag->data[tag->pos], tag->len - tag->pos); + if (error != Z_OK) { + fprintf(stderr, "rfxswf: Zlib error %d while extracting definejpeg3\n", error); + return 0; + } + for(y=0;yid == ST_DEFINEBITSJPEG || tag->id == ST_DEFINEBITSJPEG2 || tag->id == ST_DEFINEBITSJPEG3) { #ifdef HAVE_JPEGLIB @@ -1132,6 +1178,7 @@ static scale_lookup_t**make_scale_lookup(int width, int newwidth) lblockx[newwidth] = p_x; return lblockx; } +static int monochrome_warning = 0; RGBA* swf_ImageScale(RGBA*data, int width, int height, int newwidth, int newheight) { int x,y; @@ -1145,8 +1192,12 @@ RGBA* swf_ImageScale(RGBA*data, int width, int height, int newwidth, int newheig /* this is bad because this scaler doesn't yet handle monochrome images with 2 colors in a way that the final image hasn't more than 256 colors */ - if(swf_ImageGetNumberOfPaletteEntries2(data, width, height) == 2) - fprintf(stderr, "Warning: scaling monochrome image\n"); + if(swf_ImageGetNumberOfPaletteEntries2(data, width, height) == 2) { + if(!monochrome_warning) { + fprintf(stderr, "Warning: scaling monochrome image\n"); + monochrome_warning = 1; + } + } tmpline = (rgba_int_t*)malloc(width*sizeof(rgba_int_t)); newdata = (RGBA*)malloc(newwidth*newheight*sizeof(RGBA));