X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Frfxswf.c;h=de66911aba764edfcc71dbd8a816af242fec114b;hb=0e482bea37ed1f38e592247984b6e064158c8ea1;hp=ecc5fd316fe69d21fc98aaab99d1feb6c5ae404e;hpb=e742d2207abedb5f1b321b6c17d0d9c8fa31518b;p=swftools.git diff --git a/lib/rfxswf.c b/lib/rfxswf.c index ecc5fd3..de66911 100644 --- a/lib/rfxswf.c +++ b/lib/rfxswf.c @@ -46,6 +46,7 @@ #include "./bitio.h" #include "./MD5.h" +#include "./os.h" // internal constants @@ -94,7 +95,6 @@ U8 swf_GetU8(TAG * t) #ifdef DEBUG_RFXSWF if (t->pos>=t->len) { fprintf(stderr,"GetU8() out of bounds: TagID = %i\n",t->id); - *(int*)0=0; return 0; } #endif @@ -278,79 +278,118 @@ void swf_SetFixed8(TAG * t, float f) swf_SetU8(t, fr); swf_SetU8(t, (U8)f - (f<0 && fr!=0)); } -int swf_GetU30(TAG*tag) + +U32 swf_GetU30(TAG*tag) { U32 shift = 0; U32 s = 0; + int nr=0; while(1) { U8 b = swf_GetU8(tag); + nr++; s|=(b&127)<=32) break; } + /*int nr2= swf_SetU30(0, s); + if(nr!=nr2) { + printf("Unsigned value %d stored in %d bytes, I'd store it in %d bytes\n", s, nr, nr2); + }*/ return s; } -int swf_GetS30(TAG*tag) + +int swf_SetU30(TAG*tag, U32 u) { - U32 shift = 0; - U32 s = 0; - int nr=0; - while(1) { - U8 b = swf_GetU8(tag); + int nr = 0; + do { + if(tag) + swf_SetU8(tag, (u&~0x7f?0x80:0) | (u&0x7F)); + u>>=7; nr++; - s|=(b&127)<>=7; + } while(u); +} +U32 swf_GetABCU32(TAG*tag) +{ + return swf_GetU30(tag); +} +void swf_SetABCS32(TAG*tag, S32 v) +{ + swf_SetABCU32(tag, v); } -int swf_SetS30(TAG*tag, S32 s) +S32 swf_GetABCS32(TAG*tag) { + return swf_GetABCU32(tag); +} + +#if 0 + +/*The AVM2 spec is just plain wrong, claiming that S32 values are sign +extended. They're not. +This wastes up to 4 bytes for every negative value. */ + +void swf_SetABCS32(TAG*tag, S32 s) +{ + printf("write S32: %d\n", s); S32 neg = s<0?-1:0; - U8 sign = s<0?0x80:0; - int nr=0,pos=tag->len; + U8 sign = s<0?0x40:0; while(1) { U8 val = s&0x7f; - U8 vsign = s&0x80; + U8 vsign = s&0x40; s>>=7; neg>>=7; if(s==neg && vsign==sign) { - /* if the value we just wrote has the same sign as s + /* if the value we now write has the same sign as s and all the remaining bits are equal to the sign of s too, stop writing */ - if(tag) - swf_SetU8(tag, val); - nr++; + swf_SetU8(tag, val); + printf("put %02x\n", val); break; } else { - if(tag) - swf_SetU8(tag, 0x80 | val); - nr++; + swf_SetU8(tag, 0x80 | val); + printf("put %02x\n", 0x80|val); } }; - return nr; - } -int swf_SetU30(TAG*tag, U32 u) +int swf_GetS30(TAG*tag) { - int nr = 0; - do { - if(tag) - swf_SetU8(tag, (u&~0x7f?0x80:0) | (u&0x7F)); - u>>=7; + U32 shift = 0; + U32 s = 0; + int nr=0; + while(1) { + U8 b = swf_GetU8(tag); nr++; - } while(u); - return nr; + s|=(b&127)<=32) { + if(b&64) { + if(shift<32) + s|=0xffffffff<fileVersion=9; + swf->fileAttributes=FILEATTRIBUTE_AS3; //as3 + TAG*tag = swf->firstTag = swf_InsertTag(0, ST_RAWABC); + memfile_t*file = memfile_open(filename); + swf_SetBlock(tag, file->data, file->len); + memfile_close(file); +} + int no_extra_tags = 0; int WriteExtraTags(SWF*swf, writer_t*writer) @@ -1473,9 +1523,9 @@ int WriteExtraTags(SWF*swf, writer_t*writer) if(swf->fileVersion >= 9) { if(!has_fileattributes) { - U32 flags = swf->fileAttributes|0x08; // 16 = has symbolclass tag | 8 = actionscript3 | 1 = usenetwork + U32 flags = swf->fileAttributes|FILEATTRIBUTE_AS3; // 16 = has symbolclass tag | 8 = actionscript3 | 1 = usenetwork if(has_version_8_action && !has_version_9_action) - flags &= ~0x08; + flags &= ~FILEATTRIBUTE_AS3; TAG*fileattrib = swf_InsertTag(0, ST_FILEATTRIBUTES); swf_SetU32(fileattrib, flags); if(writer) { @@ -1489,7 +1539,7 @@ int WriteExtraTags(SWF*swf, writer_t*writer) if(swf_WriteTag2(writer, has_fileattributes)<0) return -1; } - if(!has_scenedescription) { + if(0 && !has_scenedescription) { TAG*scene = swf_InsertTag(0, ST_SCENEDESCRIPTION); swf_SetU16(scene, 1); swf_SetString(scene, (U8*)"Scene 1");