From: kramm Date: Sun, 30 Nov 2003 10:35:28 +0000 (+0000) Subject: added support for protect tag. X-Git-Tag: release-0-5-0~136 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=45eef1c86bcdb8c95c4873a999e6c3342b1b6fb3 added support for protect tag. --- diff --git a/src/swfdump.c b/src/swfdump.c index 5679451..3acb6ee 100644 --- a/src/swfdump.c +++ b/src/swfdump.c @@ -884,6 +884,11 @@ int main (int argc,char ** argv) U8 b = swf_GetU8(tag); printf(" (%02x/%02x/%02x)\n",r,g,b); } + else if(tag->id == ST_PROTECT) { + if(tag->len>0) { + printf(" %s\n", swf_GetString(tag)); + } + } else if(tag->id == ST_DEFINEBITSLOSSLESS || tag->id == ST_DEFINEBITSLOSSLESS2) { handleDefineBits(tag);