X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fmodules%2Fswfbits.c;h=a24b5703c9cc3bc408188be6b7e9f17506d21614;hb=cae49262e6983db10cbb1005c0130bed03f861a3;hp=a8b3e1f1243b34f150d0d7436bf4e91acbd8daf3;hpb=82eab4a92f9b19e2913fe2f5afd23cbb356bb955;p=swftools.git diff --git a/lib/modules/swfbits.c b/lib/modules/swfbits.c index a8b3e1f..a24b570 100644 --- a/lib/modules/swfbits.c +++ b/lib/modules/swfbits.c @@ -37,7 +37,31 @@ int swf_ImageHasAlpha(RGBA*img, int width, int height) return hasalpha; } -int swf_ImageGetNumberOfPaletteEntries(RGBA*img, int width, int height, RGBA*palette) +int swf_ImageGetNumberOfPaletteEntries2(RGBA*_img, int width, int height) +{ + int len = width*height; + int t; + U32* img = (U32*)_img; + U32 color1 = img[0]; + U32 color2 = 0; + for(t=1;t> 17) ^ col32; + hash ^= ((hash>>8) + 1) ^ hash; + hash &= 255; + + csize = size[hash]; + cpal = &pal[hash*256]; + for(i=0;iid = ST_DEFINEBITSLOSSLESS; } else { tag->id = ST_DEFINEBITSLOSSLESS2; /* TODO: premultiply alpha? */ } - int num = swf_ImageGetNumberOfPaletteEntries(data, width, height, 0); + num = swf_ImageGetNumberOfPaletteEntries(data, width, height, 0); if(num>1 && num<=256) { RGBA*palette = (RGBA*)malloc(sizeof(RGBA)*num); - swf_ImageGetNumberOfPaletteEntries(data, width, height, palette); int width2 = BYTES_PER_SCANLINE(width); U8*data2 = (U8*)malloc(width2*height); int len = width*height; int x,y; int r; + swf_ImageGetNumberOfPaletteEntries(data, width, height, palette); for(y=0;yfirstTag; while (tag) { if (tag->id == ST_DEFINEBITSJPEG) { - void *data = rfx_alloc(tag->len); + int len = tag->len; + void *data = rfx_alloc(len); swf_GetBlock(tag, data, tag->len); swf_ResetTag(tag, ST_DEFINEBITSJPEG2); + swf_SetBlock(tag, &((U8*)data)[0], 2); //id swf_SetBlock(tag, tables_tag->data, tables_tag->len); - swf_SetBlock(tag, data, tag->len); + swf_SetBlock(tag, &((U8*)data)[2], len-2); free(data); } tag = tag->next; @@ -982,7 +1081,6 @@ static scale_lookup_t**make_scale_lookup(int width, int newwidth) if(newwidth<=width) { for(x=0;x=width) tox = width-1; for(xx=fromx;xx<=tox;xx++) { if(xx==fromx && xx==tox) p_x->weight = 256; @@ -1005,11 +1104,11 @@ static scale_lookup_t**make_scale_lookup(int width, int newwidth) } } else { for(x=0;x=width) ix2=width-1; double r = px-ix1; + if(ix2>=width) ix2=width-1; + lblockx[x] = p_x; if(bicubic) r = -2*r*r*r+3*r*r; p_x[0].weight = (int)(256*(1-r)); @@ -1023,15 +1122,24 @@ static scale_lookup_t**make_scale_lookup(int width, int newwidth) lblockx[newwidth] = p_x; return lblockx; } - RGBA* swf_ImageScale(RGBA*data, int width, int height, int newwidth, int newheight) { - if(newwidth<1 || newheight<1) - return 0; int x,y; - RGBA* newdata= (RGBA*)malloc(newwidth*newheight*sizeof(RGBA)); + RGBA* newdata; scale_lookup_t *p, **lblockx,**lblocky; - rgba_int_t*tmpline = (rgba_int_t*)malloc(width*sizeof(rgba_int_t)); + rgba_int_t*tmpline; + + if(newwidth<1 || newheight<1) + return 0; + + /* 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"); + + tmpline = (rgba_int_t*)malloc(width*sizeof(rgba_int_t)); + newdata = (RGBA*)malloc(newwidth*newheight*sizeof(RGBA)); lblockx = make_scale_lookup(width, newwidth); lblocky = make_scale_lookup(height, newheight); @@ -1044,7 +1152,7 @@ RGBA* swf_ImageScale(RGBA*data, int width, int height, int newwidth, int newheig /* create lookup table for y */ rgba_int_t*l = tmpline; - scale_lookup_t*p_y; + scale_lookup_t*p_y,*p_x; memset(tmpline, 0, width*sizeof(rgba_int_t)); for(p_y=lblocky[y];p_ypos]; @@ -1059,7 +1167,7 @@ RGBA* swf_ImageScale(RGBA*data, int width, int height, int newwidth, int newheig } /* process x direction */ - scale_lookup_t*p_x = lblockx[0]; + p_x = lblockx[0]; for(x=0;x