X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fmodules%2Fswfbits.c;h=4349b965e3b428c40c8962429aaddfafc4f9cb85;hb=e448c7a56df8e289c9dbd5b8d87753addd541091;hp=da8be390f22423292615b059b883a3b693e0cf74;hpb=ee47ae6458aa34dca06c864ac8ccf778d081cf50;p=swftools.git diff --git a/lib/modules/swfbits.c b/lib/modules/swfbits.c index da8be39..4349b96 100644 --- a/lib/modules/swfbits.c +++ b/lib/modules/swfbits.c @@ -25,29 +25,29 @@ typedef struct _JPEGDESTMGR // Destination manager callbacks -void swf_init_destination(j_compress_ptr cinfo) +void RFXSWF_init_destination(j_compress_ptr cinfo) { JPEGDESTMGR * dmgr = (JPEGDESTMGR *)cinfo->dest; dmgr->buffer = (JOCTET*)malloc(OUTBUFFER_SIZE); dmgr->mgr.next_output_byte = dmgr->buffer; dmgr->mgr.free_in_buffer = OUTBUFFER_SIZE; } -boolean swf_empty_output_buffer(j_compress_ptr cinfo) +boolean RFXSWF_empty_output_buffer(j_compress_ptr cinfo) { JPEGDESTMGR * dmgr = (JPEGDESTMGR *)cinfo->dest; - SetBlock(dmgr->t,(U8*)dmgr->buffer,OUTBUFFER_SIZE); + swf_SetBlock(dmgr->t,(U8*)dmgr->buffer,OUTBUFFER_SIZE); dmgr->mgr.next_output_byte = dmgr->buffer; dmgr->mgr.free_in_buffer = OUTBUFFER_SIZE; return TRUE; } -void swf_term_destination(j_compress_ptr cinfo) +void RFXSWF_term_destination(j_compress_ptr cinfo) { JPEGDESTMGR * dmgr = (JPEGDESTMGR *)cinfo->dest; - SetBlock(dmgr->t,(U8*)dmgr->buffer,OUTBUFFER_SIZE-dmgr->mgr.free_in_buffer); + swf_SetBlock(dmgr->t,(U8*)dmgr->buffer,OUTBUFFER_SIZE-dmgr->mgr.free_in_buffer); free(dmgr->buffer); dmgr->mgr.free_in_buffer = 0; } -JPEGBITS * SetJPEGBitsStart(TAG * t,int width,int height,int quality) +JPEGBITS * swf_SetJPEGBitsStart(TAG * t,int width,int height,int quality) { JPEGDESTMGR * jpeg; @@ -61,9 +61,9 @@ JPEGBITS * SetJPEGBitsStart(TAG * t,int width,int height,int quality) jpeg_create_compress(&jpeg->cinfo); - jpeg->mgr.init_destination = swf_init_destination; - jpeg->mgr.empty_output_buffer = swf_empty_output_buffer; - jpeg->mgr.term_destination = swf_term_destination; + jpeg->mgr.init_destination = RFXSWF_init_destination; + jpeg->mgr.empty_output_buffer = RFXSWF_empty_output_buffer; + jpeg->mgr.term_destination = RFXSWF_term_destination; jpeg->t = t; @@ -91,18 +91,18 @@ JPEGBITS * SetJPEGBitsStart(TAG * t,int width,int height,int quality) return (JPEGBITS *)jpeg; } -int SetJPEGBitsLines(JPEGBITS * jpegbits,U8 ** data,int n) +int swf_SetJPEGBitsLines(JPEGBITS * jpegbits,U8 ** data,int n) { JPEGDESTMGR * jpeg = (JPEGDESTMGR *)jpegbits; if (!jpeg) return -1; jpeg_write_scanlines(&jpeg->cinfo,data,n); return 0; } -int SetJPEGBitsLine(JPEGBITS * jpegbits,U8 * data) -{ return SetJPEGBitsLines(jpegbits,&data,1); +int swf_SetJPEGBitsLine(JPEGBITS * jpegbits,U8 * data) +{ return swf_SetJPEGBitsLines(jpegbits,&data,1); } -int SetJPEGBitsFinish(JPEGBITS * jpegbits) +int swf_SetJPEGBitsFinish(JPEGBITS * jpegbits) { JPEGDESTMGR * jpeg = (JPEGDESTMGR *)jpegbits; if (!jpeg) return -1; jpeg_finish_compress(&jpeg->cinfo); @@ -110,7 +110,7 @@ int SetJPEGBitsFinish(JPEGBITS * jpegbits) return 0; } -int SetJPEGBits(TAG * t,char * fname,int quality) +int swf_SetJPEGBits(TAG * t,char * fname,int quality) { struct jpeg_decompress_struct cinfo; struct jpeg_error_mgr jerr; JPEGBITS * out; @@ -127,7 +127,7 @@ int SetJPEGBits(TAG * t,char * fname,int quality) jpeg_read_header(&cinfo, TRUE); jpeg_start_decompress(&cinfo); - out = SetJPEGBitsStart(t,cinfo.output_width,cinfo.output_height,quality); + out = swf_SetJPEGBitsStart(t,cinfo.output_width,cinfo.output_height,quality); scanline = (U8*)malloc(4*cinfo.output_width); if (scanline) @@ -135,11 +135,11 @@ int SetJPEGBits(TAG * t,char * fname,int quality) U8 * js = scanline; for (y=0;yavail_out == 0) - { SetBlock(t,data,zs->next_out-data); + { swf_SetBlock(t,data,zs->next_out-data); zs->next_out = data; zs->avail_out = OUTBUFFER_SIZE; } @@ -174,19 +174,18 @@ int swf_deflate_wraper(TAG * t,z_stream * zs,U8 * data,boolean finish) #endif return status; } - } return 0; } -int SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_flags) +int swf_SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_flags) { int res = 0; int bps; U8 * data; switch (bitmap_flags) { case BMF_8BIT: - return SetLosslessBitsIndexed(t,width,height,bitmap,NULL,256); + return swf_SetLosslessBitsIndexed(t,width,height,bitmap,NULL,256); case BMF_16BIT: bps = BYTES_PER_SCANLINE(sizeof(U16)*width); break; @@ -197,9 +196,9 @@ int SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_flags) return -1; } - SetU8(t,bitmap_flags); - SetU16(t,width); - SetU16(t,height); + swf_SetU8(t,bitmap_flags); + swf_SetU16(t,width); + swf_SetU16(t,height); if (data=malloc(OUTBUFFER_SIZE)) { z_stream zs; @@ -214,8 +213,8 @@ int SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_flags) zs.next_out = data; zs.avail_out = OUTBUFFER_SIZE; - if (swf_deflate_wraper(t,&zs,data,TRUE)<0) res = -3; - if (zs.next_out>data) SetBlock(t,data,zs.next_out-data); + if (RFXSWF_deflate_wraper(t,&zs,data,TRUE)<0) res = -3; + if (zs.next_out>data) swf_SetBlock(t,data,zs.next_out-data); deflateEnd(&zs); @@ -227,7 +226,7 @@ int SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_flags) return res; } -int SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palette,U16 ncolors) +int swf_SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palette,U16 ncolors) { RGBA * pal = palette; int bps = BYTES_PER_SCANLINE(width); U8 * data; @@ -242,10 +241,10 @@ int SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palet if ((ncolors<2)||(ncolors>256)||(!t)) return -1; // parameter error - SetU8(t,BMF_8BIT); - SetU16(t,width); - SetU16(t,height); - SetU8(t,ncolors-1); // number of pal entries + swf_SetU8(t,BMF_8BIT); + swf_SetU16(t,width); + swf_SetU16(t,height); + swf_SetU8(t,ncolors-1); // number of pal entries if (data=malloc(OUTBUFFER_SIZE)) { z_stream zs; @@ -271,7 +270,7 @@ int SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palet alpha values different from 0 and 0xff in lossless bitmaps... */ - if (GetTagID(t)==ST_DEFINEBITSLOSSLESS2) // have alpha channel? + if (swf_GetTagID(t)==ST_DEFINEBITSLOSSLESS2) // have alpha channel? { for (i=0;idata) SetBlock(t,data,zs.next_out-data); + if (zs.next_out>data) swf_SetBlock(t,data,zs.next_out-data); free(zpal); } else res = -2; // memory error @@ -318,8 +317,8 @@ int SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palet return res; } -int SetLosslessBitsGrayscale(TAG * t,U16 width,U16 height,U8 * bitmap) -{ return SetLosslessBitsIndexed(t,width,height,bitmap,NULL,256); +int swf_SetLosslessBitsGrayscale(TAG * t,U16 width,U16 height,U8 * bitmap) +{ return swf_SetLosslessBitsIndexed(t,width,height,bitmap,NULL,256); }