From 936d8c21660ee7949b13989f7aa498465239f083 Mon Sep 17 00:00:00 2001 From: kramm Date: Thu, 7 Apr 2005 08:59:59 +0000 Subject: [PATCH] added definejpeg3 extraction support --- lib/modules/swfbits.c | 47 ++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 42 insertions(+), 5 deletions(-) diff --git a/lib/modules/swfbits.c b/lib/modules/swfbits.c index 409ed96..30f2e42 100644 --- a/lib/modules/swfbits.c +++ b/lib/modules/swfbits.c @@ -402,7 +402,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) @@ -448,16 +452,22 @@ RGBA *swf_JPEG2TagToImage(TAG * tag, int *width, int *height) int y; *width = 0; *height = 0; + int offset = 0; + int oldtaglen = 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 +508,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 -- 1.7.10.4