X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fmodules%2Fswftools.c;h=313d0820bd0092d3d6e0fa5fc2662a0f45b9bf99;hb=e542ada96a35c80b0e90314ec42ddbc1eee51b3a;hp=6c37762753a6a789f6345bd8023a8f9c7df7f3aa;hpb=7a5f39d094c446d261246cdf8d00f19df7fa2673;p=swftools.git diff --git a/lib/modules/swftools.c b/lib/modules/swftools.c index 6c37762..313d082 100644 --- a/lib/modules/swftools.c +++ b/lib/modules/swftools.c @@ -118,6 +118,7 @@ U16 swf_GetDefineID(TAG * t) case ST_DEFINEFONTINFO: //pseudodefine case ST_DEFINEFONTINFO2: //pseudodefine case ST_DEFINEFONTALIGNZONES: //pseudodefine + case ST_DEFINEFONTNAME: //pseudodefine case ST_DEFINETEXT: case ST_DEFINETEXT2: case ST_DEFINESOUND: @@ -241,6 +242,7 @@ static int swf_definingtagids[] = ST_DEFINEBUTTON2, ST_DEFINESOUND, ST_DEFINEVIDEOSTREAM, + ST_DEFINEBINARY, -1 }; @@ -253,6 +255,7 @@ static int swf_spritetagids[] = ST_REMOVEOBJECT, ST_REMOVEOBJECT2, ST_DOACTION, + ST_DOABC, ST_STARTSOUND, ST_FRAMELABEL, ST_SOUNDSTREAMHEAD, @@ -268,6 +271,7 @@ static int swf_pseudodefiningtagids[] = ST_DEFINEFONTINFO, ST_DEFINEFONTINFO2, ST_DEFINEFONTALIGNZONES, + ST_DEFINEFONTNAME, ST_DEFINEBUTTONCXFORM, ST_DEFINEBUTTONSOUND, ST_DEFINESCALINGGRID, @@ -604,6 +608,8 @@ void enumerateUsedIDs(TAG * tag, int base, void (*callback)(TAG*, int, void*), v case ST_FREECHARACTER: /* unusual tags, which all start with an ID */ case ST_NAMECHARACTER: + case ST_DEFINEBINARY: + case ST_DEFINEFONTNAME: case ST_GENERATORTEXT: callback(tag, tag->pos + base, callback_data); break;