fixed extract definebitsjpeg2 "no boundary" bug.
[swftools.git] / src / swfextract.c
1 /* swfextract.c
2    Allows to extract parts of the swf into a new file.
3
4    Part of the swftools package.
5    
6    Copyright (c) 2001 Matthias Kramm <kramm@quiss.org>
7  
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
21
22 #include <unistd.h>
23 #include <stdio.h>
24 #include <fcntl.h>
25 #include "../lib/rfxswf.h"
26 #include "../lib/args.h"
27 #include "../lib/log.h"
28 #ifdef HAVE_ZLIB_H
29 #ifdef HAVE_LIBZ
30 #include "zlib.h"
31 #define _ZLIB_INCLUDED_
32 #endif
33 #endif
34
35 char * filename = 0;
36 char * destfilename = "output.swf";
37 int verbose = 3;
38
39 char* extractids = 0;
40 char* extractframes = 0;
41 char* extractjpegids = 0;
42 char* extractfontids = 0;
43 char* extractpngids = 0;
44 char* extractsoundids = 0;
45 char extractmp3 = 0;
46
47 char* extractname = 0;
48
49 char hollow = 0;
50 char originalplaceobjects = 0;
51
52 int numextracts = 0;
53
54 struct options_t options[] =
55 {
56  {"o","output"},
57  {"w","hollow"},
58  {"v","verbose"},
59  {"i","id"},
60  {"j","jpegs"},
61  {"p","pngs"},
62  {"P","placeobject"},
63  {"m","mp3"},
64  {"s","sound"},
65  {"n","name"},
66  {"f","frame"},
67  {"F","font"},
68  {"V","version"},
69  {0,0}
70 };
71
72
73 int args_callback_option(char*name,char*val)
74 {
75     if(!strcmp(name, "V")) {
76         printf("swfextract - part of %s %s\n", PACKAGE, VERSION);
77         exit(0);
78     } 
79     else if(!strcmp(name, "o")) {
80         destfilename = val;
81         return 1;
82     } 
83     else if(!strcmp(name, "i")) {
84         extractids = val;
85         numextracts++;
86         if(extractname) {
87             fprintf(stderr, "You can only supply either name or id\n");
88             exit(1);
89         }
90         return 1;
91     } 
92     else if(!strcmp(name, "n")) {
93         extractname = val;
94         numextracts++;
95         if(extractids) {
96             fprintf(stderr, "You can only supply either name or id\n");
97             exit(1);
98         }
99         return 1;
100     } 
101     else if(!strcmp(name, "v")) {
102         verbose ++;
103         return 0;
104     } 
105     else if(!strcmp(name, "m")) {
106         extractmp3 = 1;
107         numextracts++;
108         return 0;
109     }
110     else if(!strcmp(name, "j")) {
111         if(extractjpegids) {
112             fprintf(stderr, "Only one --jpegs argument is allowed. (Try to use a range, e.g. -j 1,2,3)\n");
113             exit(1);
114         }
115         numextracts++;
116         extractjpegids = val;
117         return 1;
118     } 
119     else if(!strcmp(name, "F")) {
120         if(extractfontids) {
121             fprintf(stderr, "Only one --font argument is allowed. (Try to use a range, e.g. -s 1,2,3)\n");
122             exit(1);
123         }
124         numextracts++;
125         extractfontids = val;
126         return 1;
127     } 
128     else if(!strcmp(name, "s")) {
129         if(extractsoundids) {
130             fprintf(stderr, "Only one --sound argument is allowed. (Try to use a range, e.g. -s 1,2,3)\n");
131             exit(1);
132         }
133         numextracts++;
134         extractsoundids = val;
135         return 1;
136     } 
137 #ifdef _ZLIB_INCLUDED_
138     else if(!strcmp(name, "p")) {
139         if(extractpngids) {
140             fprintf(stderr, "Only one --png argument is allowed. (Try to use a range, e.g. -p 1,2,3)\n");
141             exit(1);
142         }
143         numextracts++;
144         extractpngids = val;
145         return 1;
146     } 
147 #endif
148     else if(!strcmp(name, "f")) {
149         numextracts++;
150         extractframes = val;
151         return 1;
152     }
153     else if(!strcmp(name, "P")) {
154         originalplaceobjects = 1;
155         return 0;
156     }
157     else if(!strcmp(name, "w")) {
158         hollow = 1;
159         return 0;
160     }
161     else {
162         printf("Unknown option: -%s\n", name);
163         exit(1);
164     }
165
166     return 0;
167 }
168 int args_callback_longoption(char*name,char*val)
169 {
170     return args_long2shortoption(options, name, val);
171 }
172 void args_callback_usage(char*name)
173 {    
174     printf("Usage: %s [-v] [-n name] [-ijf ids] file.swf\n", name);
175     printf("\t-v , --verbose\t\t\t Be more verbose\n");
176     printf("\t-o , --output filename\t\t set output filename\n");
177     printf("\t-V , --version\t\t\t Print program version and exit\n\n");
178     printf("SWF Subelement extraction:\n");
179     printf("\t-n , --name name\t\t instance name of the object (SWF Define) to extract\n");
180     printf("\t-i , --id ID\t\t\t ID of the object, shape or movieclip to extract\n");
181     printf("\t-f , --frame frames\t\t frame numbers to extract\n");
182     printf("\t-w , --hollow\t\t\t hollow mode: don't remove empty frames\n"); 
183     printf("\t             \t\t\t (use with -f)\n");
184     printf("\t-P , --placeobject\t\t\t Insert original placeobject into output file\n"); 
185     printf("\t             \t\t\t (use with -i)\n");
186     printf("SWF Font/Text extraction:\n");
187     printf("\t-F , --font ID\t\t\t Extract font(s)\n");
188     printf("Picture extraction:\n");
189     printf("\t-j , --jpeg ID\t\t\t Extract JPEG picture(s)\n");
190 #ifdef _ZLIB_INCLUDED_
191     printf("\t-p , --pngs ID\t\t\t Extract PNG picture(s)\n");
192 #endif
193     printf("\n");
194     printf("Sound extraction:\n");
195     printf("\t-m , --mp3\t\t\t Extract main mp3 stream\n");
196     printf("\t-s , --sound ID\t\t\t Extract Sound(s)\n");
197 }
198 int args_callback_command(char*name,char*val)
199 {
200     if(filename) {
201         fprintf(stderr, "Only one file allowed. You supplied at least two. (%s and %s)\n",
202                  filename, name);
203     }
204     filename = name;
205     return 0;
206 }
207
208 U8 mainr,maing,mainb;
209 /* 1 = used, not expanded,
210    3 = used, expanded
211    5 = wanted, not expanded
212    7 = wanted, expanded
213  */
214 char used[65536];
215 TAG*tags[65536];
216 int changed;
217 char * tagused;
218 int extractname_id = -1;
219
220 void idcallback(void*data)
221 {
222     if(!(used[GET16(data)]&1)) {
223         changed = 1;
224         used[GET16(data)] |= 1;
225     }
226 }
227
228 void enumerateIDs(TAG*tag, void(*callback)(void*))
229 {
230 /*    U8*data;
231     int len = tag->len;
232     if(tag->len>=64) {
233         len += 6;
234         data = (U8*)malloc(len);
235         PUT16(data, (tag->id<<6)+63);
236         *(U8*)&data[2] = tag->len;
237         *(U8*)&data[3] = tag->len>>8;
238         *(U8*)&data[4] = tag->len>>16;
239         *(U8*)&data[5] = tag->len>>24;
240         memcpy(&data[6], tag->data, tag->len);
241     } else {
242         len += 2;
243         data = (U8*)malloc(len);
244         PUT16(data, (tag->id<<6)+tag->len);
245         memcpy(&data[2], tag->data, tag->len);
246     }
247     map_ids_mem(data, len, callback);
248  */
249     int num = swf_GetNumUsedIDs(tag);
250     int *ptr = malloc(sizeof(int)*num);
251     int t;
252     swf_GetUsedIDs(tag, ptr);
253     for(t=0;t<num;t++)
254         callback(&tag->data[ptr[t]]);
255 }
256
257 void extractTag(SWF*swf, char*filename)
258 {
259     SWF newswf;
260     TAG*desttag;
261     TAG*srctag;
262     RGBA rgb;
263     SRECT objectbbox;
264     char sprite;
265     int f;
266     int t;
267     int tagnum;
268     int copy = 0;
269     memset(&newswf,0x00,sizeof(SWF));        // set global movie parameters
270
271     newswf.fileVersion    = swf->fileVersion;
272     newswf.frameRate      = swf->frameRate;
273     newswf.movieSize      = swf->movieSize;
274                 
275     newswf.firstTag = swf_InsertTag(NULL,ST_SETBACKGROUNDCOLOR);
276     desttag = newswf.firstTag;
277     rgb.r = mainr;
278     rgb.g = maing;
279     rgb.b = mainb;
280     swf_SetRGB(desttag,&rgb);
281
282     swf_GetRect(0, &objectbbox);
283
284     do {
285        changed = 0;
286        for(t=0;t<65536;t++) {
287            if(used[t] && !(used[t]&2)) {
288              if(tags[t]==0) {
289                  msg("<warning> ID %d is referenced, but never defined.", t);
290              } else if(tags[t]->id==ST_DEFINESPRITE) {
291                  TAG*tag = tags[t];
292                  while(tag->id != ST_END)
293                  {
294                      enumerateIDs(tag, idcallback);
295                      tag = tag->next;
296                  }
297              }
298              else 
299                enumerateIDs(tags[t], idcallback);
300              used[t] |= 2;
301            }
302        }
303     }
304     while(changed);
305
306     srctag = swf->firstTag;
307     tagnum = 0;
308     sprite = 0;
309     while(srctag && (srctag->id || sprite)) {
310         int reset = 0;
311         if(!sprite) {
312             copy = 0;
313         }
314         if(srctag->id == ST_END) {
315             sprite = 0;
316         }
317         if(srctag->id == ST_DEFINESPRITE)
318             sprite = 1;
319         if(swf_isDefiningTag(srctag)) {
320             int id = swf_GetDefineID(srctag);
321             if(used[id])  {
322                 SRECT b;
323                 copy = 1;
324                 b = swf_GetDefineBBox(srctag);
325                 swf_ExpandRect2(&objectbbox, &b);
326             }
327         } else 
328         if (((((srctag->id == ST_PLACEOBJECT || srctag->id == ST_PLACEOBJECT2) && originalplaceobjects)
329               || srctag->id == ST_STARTSOUND) && (used[swf_GetPlaceID(srctag)]&4) ) ||
330               (swf_isPseudoDefiningTag(srctag) && used[swf_GetDefineID(srctag)]) ||
331               (tagused[tagnum])) 
332         {
333                 if(copy == 0)
334                     reset = 1;
335                 copy = 1;
336         } 
337         if(srctag->id == ST_REMOVEOBJECT) {
338             if(!used[swf_GetPlaceID(srctag)])
339                 copy = 0;
340         }
341
342         if(copy) {
343             TAG*ttag = (TAG*)malloc(sizeof(TAG));
344             desttag = swf_InsertTag(desttag, srctag->id);
345             desttag->len = desttag->memsize = srctag->len;
346             desttag->data = malloc(srctag->len);
347             memcpy(desttag->data, srctag->data, srctag->len);
348             if(reset)
349                 copy = 0;
350         }
351         
352         srctag = srctag->next;
353         tagnum ++;
354     }
355     if(!extractframes && !hollow) {
356         if(!originalplaceobjects && (extractids||extractname_id>=0)) {
357             int t;
358             int s=0;
359             if((objectbbox.xmin|objectbbox.ymin|objectbbox.xmax|objectbbox.ymax)!=0)
360                 newswf.movieSize = objectbbox;
361             if(extractname_id>=0) {
362                 desttag = swf_InsertTag(desttag, ST_PLACEOBJECT2);
363                 swf_ObjectPlace(desttag, extractname_id, extractname_id, 0,0,extractname);
364             } else {
365                 for(t=0;t<65536;t++) {
366                     if(is_in_range(t, extractids)) {
367                         desttag = swf_InsertTag(desttag, ST_PLACEOBJECT2);
368                         swf_ObjectPlace(desttag, t, t, 0,0,0);
369                         s++;
370                         if(s==2)
371                             printf("warning! You should use the -P when extracting multiple objects\n");
372                     }
373                 }
374             }
375         }
376         desttag = swf_InsertTag(desttag,ST_SHOWFRAME);
377     }
378     desttag = swf_InsertTag(desttag,ST_END);
379     
380     f = open(filename, O_TRUNC|O_WRONLY|O_CREAT|O_BINARY, 0644);
381     if FAILED(swf_WriteSWF(f,&newswf)) fprintf(stderr,"WriteSWF() failed.\n");
382     close(f);
383
384     swf_FreeTags(&newswf);                       // cleanup
385 }
386
387 int isOfType(int t, TAG*tag)
388 {
389     int show = 0;
390     if(t == 0 && (tag->id == ST_DEFINESHAPE ||
391         tag->id == ST_DEFINESHAPE2 ||
392         tag->id == ST_DEFINESHAPE3)) {
393         show = 1;
394     }
395     if(t==1 && tag->id == ST_DEFINESPRITE) {
396         show = 1;
397     }
398     if(t == 2 && (tag->id == ST_DEFINEBITS ||
399         tag->id == ST_DEFINEBITSJPEG2 ||
400         tag->id == ST_DEFINEBITSJPEG3)) {
401         show = 1;
402     }
403     if(t == 3 && (tag->id == ST_DEFINEBITSLOSSLESS ||
404         tag->id == ST_DEFINEBITSLOSSLESS2)) {
405         show = 1;
406     }
407     if(t == 4 && (tag->id == ST_DEFINESOUND)) {
408         show = 1;
409     }
410     if(t == 5 && (tag->id == ST_DEFINEFONT || tag->id == ST_DEFINEFONT2)) {
411         show = 1;
412     }
413     return show;
414 }
415
416 void listObjects(SWF*swf)
417 {
418     TAG*tag;
419     char first;
420     int t;
421     int frame = 0;
422     char*names[] = {"Shape", "MovieClip", "JPEG", "PNG", "Sound", "Font"};
423     printf("Objects in file %s:\n",filename);
424     swf_FoldAll(swf);
425     for(t=0;t<sizeof(names)/sizeof(names[0]);t++) {
426         int nr=0;
427         int lastid = -2, lastprint=-1;
428         int follow=0;
429         tag = swf->firstTag;
430         first = 1;
431         while(tag) {
432             if(isOfType(t,tag))
433                 nr++;
434             tag = tag->next;
435         }
436         if(!nr)
437             continue;
438         
439         printf(" %d %s%s: ID(s) ", nr, names[t], nr>1?"s":"");
440
441         tag = swf->firstTag;
442         while(tag) {
443             char text[80];
444             char show = isOfType(t,tag);
445             int id;
446             if(!show) {
447                 tag = tag->next;
448                 continue;
449             }
450             id = swf_GetDefineID(tag);
451
452             if(id == lastid+1) {
453                 follow=1;
454             } else {
455                 if(first || !follow) {
456                     if(!first)
457                         printf(", ");
458                     printf("%d", id);
459                 } else {
460                     if(lastprint + 1 == lastid) 
461                         printf(", %d, %d", lastid, id);
462                     else
463                         printf("-%d, %d", lastid, id);
464                 }
465                 lastprint = id;
466                 first = 0;
467                 follow = 0;
468             }
469             lastid = id;
470             tag=tag->next;
471         }
472         if(follow) {
473             if(lastprint + 1 == lastid)
474                 printf(", %d", lastid);
475             else
476                 printf("-%d", lastid);
477         }
478         printf("\n");
479     }
480
481     if(frame)
482         printf(" %d Frames: ID(s) 0-%d\n", frame, frame);
483     else
484         printf(" 1 Frame: ID(s) 0\n");
485 }
486
487 void handlefont(SWF*swf, TAG*tag)
488 {
489     SWFFONT* f=0;
490     U16 id;
491     char name[80];
492     char*filename = name;
493     int t;
494
495     id = swf_GetDefineID(tag);
496     sprintf(name, "font%d.swf", id);
497     if(numextracts==1) {
498         filename = destfilename;
499     }
500
501     swf_FontExtract(swf, id, &f);
502     if(!f) {
503         printf("Couldn't extract font %d\n", id);
504         return;
505     }
506     if(!f->layout)
507         swf_FontCreateLayout(f);
508
509     swf_WriteFont(f, filename);
510     swf_FontFree(f);
511 }
512
513 U8*jpegtables = 0;
514 int jpegtablessize;
515
516 void handlejpegtables(TAG*tag)
517 {
518     if(tag->id == ST_JPEGTABLES) {
519         jpegtables = tag->data;
520         jpegtablessize = tag->len;
521     }
522 }
523
524 FILE* save_fopen(char* name, char* mode)
525 {
526     FILE*fi = fopen(name, mode);
527     if(!fi) {
528         fprintf(stderr, "Error: Couldn't open %s\n", name);
529         exit(1);
530     }
531     return fi;
532 }
533
534 int findjpegboundary(U8*data, int len)
535 {
536     int t;
537     int pos=-1;
538     for(t=0;t<len;t++) {
539         if(data[t  ]==0xff &&
540            data[t+1]==0xd9 &&
541            data[t+2]==0xff &&
542            data[t+3]==0xd8) {
543             pos = t;
544         }
545     }
546     return pos;
547 }
548
549 /* extract jpeg data out of a tag */
550 void handlejpeg(TAG*tag)
551 {
552     char name[80];
553     char*filename = name;
554     FILE*fi;
555     
556     sprintf(name, "pic%d.jpg", GET16(tag->data));
557     if(numextracts==1) {
558         filename = destfilename;
559         if(!strcmp(filename,"output.swf"))
560             filename = "output.jpg";
561     }
562     /* swf jpeg images have two streams, which both start with ff d8 and
563        end with ff d9. The following code handles sorting the middle
564        <ff d9 ff d8> bytes out, so that one stream remains */
565     if(tag->id == ST_DEFINEBITSJPEG && tag->len>2 && jpegtables) {
566         fi = save_fopen(filename, "wb");
567         fwrite(jpegtables, 1, jpegtablessize-2, fi); //don't write end tag (ff,d8)
568         fwrite(&tag->data[2+2], tag->len-2-2, 1, fi); //don't write start tag (ff,d9)
569         fclose(fi);
570     }
571     else if(tag->id == ST_DEFINEBITSJPEG2 && tag->len>2) {
572         int end = tag->len;
573         int pos = findjpegboundary(&tag->data[2], tag->len-2);
574         if(pos>=0) {
575             pos+=2;
576             fi = save_fopen(filename, "wb");
577             fwrite(&tag->data[2], pos-2, 1, fi);
578             fwrite(&tag->data[pos+4], end-(pos+4), 1, fi);
579             fclose(fi);
580         } else {
581             fi = save_fopen(filename, "wb");
582             fwrite(&tag->data[2], end-2, 1, fi);
583             fclose(fi);
584         }
585     }
586     else if(tag->id == ST_DEFINEBITSJPEG3 && tag->len>6) {
587         U32 end = GET32(&tag->data[2])+6;
588         int pos = findjpegboundary(&tag->data[6], tag->len-6);
589         if(pos<0)
590             return;
591         pos+=6;
592         fi = save_fopen(filename, "wb");
593         fwrite(&tag->data[6], pos-6, 1, fi);
594         fwrite(&tag->data[pos+4], end-(pos+4), 1, fi);
595         fclose(fi);
596     }
597     else {
598         int id = GET16(tag->data);
599         fprintf(stderr, "Object %d is not a JPEG picture!\n",id);
600         exit(1);
601     }
602 }
603
604 #ifdef _ZLIB_INCLUDED_
605 static U32 mycrc32;
606
607 static U32*crc32_table = 0;
608 static void make_crc32_table(void)
609 {
610   int t;
611   if(crc32_table) 
612       return;
613   crc32_table = (U32*)malloc(1024);
614
615   for (t = 0; t < 256; t++) {
616     U32 c = t;
617     int s;
618     for (s = 0; s < 8; s++) {
619       c = (0xedb88320L*(c&1)) ^ (c >> 1);
620     }
621     crc32_table[t] = c;
622   }
623 }
624 static inline void png_write_byte(FILE*fi, U8 byte)
625 {
626     fwrite(&byte,1,1,fi);
627     mycrc32 = crc32_table[(mycrc32 ^ byte) & 0xff] ^ (mycrc32 >> 8);
628 }
629 static void png_start_chunk(FILE*fi, char*type, int len)
630 {
631     U8 mytype[4]={0,0,0,0};
632     U32 mylen = REVERSESWAP32(len);
633     memcpy(mytype,type,strlen(type));
634     fwrite(&mylen, 4, 1, fi);
635     mycrc32=0xffffffff;
636     png_write_byte(fi,mytype[0]);
637     png_write_byte(fi,mytype[1]);
638     png_write_byte(fi,mytype[2]);
639     png_write_byte(fi,mytype[3]);
640 }
641 static void png_write_bytes(FILE*fi, U8*bytes, int len)
642 {
643     int t;
644     for(t=0;t<len;t++)
645         png_write_byte(fi,bytes[t]);
646 }
647 static void png_write_dword(FILE*fi, U32 dword)
648 {
649     png_write_byte(fi,dword>>24);
650     png_write_byte(fi,dword>>16);
651     png_write_byte(fi,dword>>8);
652     png_write_byte(fi,dword);
653 }
654 static void png_end_chunk(FILE*fi)
655 {
656     U32 tmp = REVERSESWAP32((mycrc32^0xffffffff));
657     fwrite(&tmp,4,1,fi);
658 }
659
660
661 /* extract a lossless image (png) out of a tag 
662    This routine was originally meant to be a one-pager. I just
663    didn't know png is _that_ much fun. :) -mk
664  */
665 void handlelossless(TAG*tag)
666 {
667     char name[80];
668     char*filename = name;
669     FILE*fi;
670     int width, height;
671     int crc;
672     int id;
673     int t;
674     U8 bpp = 1;
675     U8 format;
676     U8 tmp;
677     U8* data=0;
678     U8* data2=0;
679     U8* data3=0;
680     U32 datalen;
681     U32 datalen2;
682     U32 datalen3;
683     U8 head[] = {137,80,78,71,13,10,26,10};
684     int cols;
685     char alpha = tag->id == ST_DEFINEBITSLOSSLESS2;
686     RGBA* palette;
687     int pos;
688     int error;
689     U32 tmp32;
690
691     make_crc32_table();
692
693     if(tag->id != ST_DEFINEBITSLOSSLESS &&
694        tag->id != ST_DEFINEBITSLOSSLESS2) {
695         int id = GET16(tag->data);
696         fprintf(stderr, "Object %d is not a PNG picture!\n",id);
697         exit(1);
698     }
699
700     id =swf_GetU16(tag);
701     format = swf_GetU8(tag);
702     if(format == 3) bpp = 8;
703     if(format == 4) bpp = 16;
704     if(format == 5) bpp = 32;
705     if(format!=3 && format!=5) {
706         if(format==4)
707         fprintf(stderr, "Can't handle 16-bit palette images yet (image %d)\n",id);
708         else 
709         fprintf(stderr, "Unknown image type %d in image %d\n", format, id);
710         return;
711     }
712     width = swf_GetU16(tag);
713     height = swf_GetU16(tag);
714     if(format == 3) cols = swf_GetU8(tag) + 1;
715 // this is what format means according to the flash specification. (which is
716 // clearly wrong)
717 //    if(format == 4) cols = swf_GetU16(tag) + 1;
718 //    if(format == 5) cols = swf_GetU32(tag) + 1;
719     else cols = 0;
720
721     msg("<verbose> Width %d", width);
722     msg("<verbose> Height %d", height);
723     msg("<verbose> Format %d", format);
724     msg("<verbose> Cols %d", cols);
725     msg("<verbose> Bpp %d", bpp);
726
727     datalen = (width*height*bpp/8+cols*8);
728     do {
729         if(data)
730             free(data);
731         datalen+=4096;
732         data = malloc(datalen);
733         error = uncompress (data, &datalen, &tag->data[tag->pos], tag->len-tag->pos);
734     } while(error == Z_BUF_ERROR);
735     if(error != Z_OK) {
736         fprintf(stderr, "Zlib error %d (image %d)\n", error, id);
737         return;
738     }
739     msg("<verbose> Uncompressed image is %d bytes (%d colormap)", datalen, (3+alpha)*cols);
740     pos = 0;
741     datalen2 = datalen;
742     data2 = malloc(datalen2);
743     palette = (RGBA*)malloc(cols*sizeof(RGBA));
744
745     for(t=0;t<cols;t++) {
746         palette[t].r = data[pos++];
747         palette[t].g = data[pos++];
748         palette[t].b = data[pos++];
749         if(alpha) {
750             palette[t].a = data[pos++];
751         }
752     }
753
754     sprintf(name, "pic%d.png", id);
755     if(numextracts==1) {
756         filename = destfilename;
757         if(!strcmp(filename,"output.swf"))
758             filename = "output.png";
759     }
760     fi = save_fopen(filename, "wb");
761     fwrite(head,sizeof(head),1,fi);     
762
763     png_start_chunk(fi, "IHDR", 13);
764      png_write_dword(fi,width);
765      png_write_dword(fi,height);
766      png_write_byte(fi,8);
767      if(format == 3)
768      png_write_byte(fi,3); //indexed
769      else if(format == 5 && alpha==0)
770      png_write_byte(fi,2); //rgb
771      else if(format == 5 && alpha==1)
772      png_write_byte(fi,6); //rgba
773      else return;
774
775      png_write_byte(fi,0); //compression mode
776      png_write_byte(fi,0); //filter mode
777      png_write_byte(fi,0); //interlace mode
778     png_end_chunk(fi);
779    
780     if(format == 3) {
781         png_start_chunk(fi, "PLTE", 768);
782          
783          for(t=0;t<256;t++) {
784              png_write_byte(fi,palette[t].r);
785              png_write_byte(fi,palette[t].g);
786              png_write_byte(fi,palette[t].b);
787          }
788         png_end_chunk(fi);
789     }
790     {
791         int pos2 = 0;
792         int x,y;
793         int srcwidth = width * (bpp/8);
794         datalen3 = width*height*4;
795         data3 = (U8*)malloc(datalen3);
796         for(y=0;y<height;y++)
797         {
798            data3[pos2++]=0; //filter type
799            if(bpp==32) {
800             if(!alpha) {
801                 // 32 bit to 24 bit "conversion"
802                 for(x=0;x<width;x++) {
803                     data3[pos2++]=data[pos+1];
804                     data3[pos2++]=data[pos+2];
805                     data3[pos2++]=data[pos+3];
806                     pos+=4; //ignore padding byte
807                 }
808             } else {
809                 for(x=0;x<width;x++) {
810                     data3[pos2++]=data[pos+1];
811                     data3[pos2++]=data[pos+2];
812                     data3[pos2++]=data[pos+3];
813                     data3[pos2++]=data[pos+0]; //alpha
814                     pos+=4;
815                 }
816             }
817            }
818            else {
819                 for(x=0;x<srcwidth;x++)
820                     data3[pos2++]=data[pos++];
821            }
822            
823            pos+=((srcwidth+3)&~3)-srcwidth; //align
824         }
825         datalen3=pos2;
826     }
827
828     if(compress (data2, &datalen2, data3, datalen3) != Z_OK) {
829         fprintf(stderr, "zlib error in pic %d\n", id);
830         return;
831     }
832     msg("<verbose> Compressed data is %d bytes", datalen2);
833     png_start_chunk(fi, "IDAT", datalen2);
834     png_write_bytes(fi,data2,datalen2);
835     png_end_chunk(fi);
836     png_start_chunk(fi, "IEND", 0);
837     png_end_chunk(fi);
838
839     free(data);
840     free(data2);
841     free(data3);
842 }
843 #endif
844
845 FILE*mp3file;
846 void handlesoundstream(TAG*tag)
847 {
848     char*filename = "output.mp3";
849     if(numextracts==1) {
850         filename = destfilename;
851         if(!strcmp(filename,"output.swf"))
852             filename = "output.mp3";
853     }
854     switch(tag->id) {
855         case ST_SOUNDSTREAMHEAD:
856             if((tag->data[1]&0x30) == 0x20) { //mp3 compression
857                 mp3file = fopen(filename, "wb");
858                 msg("<notice> Writing mp3 data to %s",filename);
859             }
860             else
861                 msg("<error> Soundstream is not mp3");
862         break;
863         case ST_SOUNDSTREAMHEAD2:
864             if((tag->data[1]&0x30) == 0x20) {//mp3 compression
865                 mp3file = fopen(filename, "wb");
866                 msg("<notice> Writing mp3 data to %s",filename);
867             }
868             else
869                 msg("<error> Soundstream is not mp3 (2)");
870         break;
871         case ST_SOUNDSTREAMBLOCK:
872             if(mp3file)
873                 fwrite(&tag->data[4],tag->len-4,1,mp3file);
874         break;
875     }
876 }
877
878 void handledefinesound(TAG*tag)
879 {
880     U8 flags;
881     U32 samples;
882     char buf[128];
883     char*filename = buf;
884     FILE*fi;
885     char*extension = 0;
886     int format;
887     U16 id;
888     int rate,bits,stereo;
889     char*rates[] = {"5500","11025","22050","44100"};
890     id = swf_GetU16(tag); //id
891     
892     flags = swf_GetU8(tag);
893     format = flags>>4;
894     rate = (flags>>2)&3;
895     bits = flags&2?16:8;
896     stereo = flags&1;
897     
898     samples = swf_GetU32(tag);
899
900     extension = "raw";
901
902     if(format == 2) { // mp3
903         swf_GetU16(tag); //numsamples_seek
904         extension = "mp3";
905     } else if(format == 0) { // raw
906         printf("Sound is RAW, format: %s samples/sec, %d bit, %s\n", rates[rate], bits, stereo?"stereo":"mono");
907         // TODO: convert to WAV
908         extension = "raw";
909     } else if(format == 1) { // adpcm
910         printf("Sound is ADPCM, format: %s samples/sec, %d bit, %s\n", rates[rate], bits, stereo?"stereo":"mono");
911         extension = "adpcm";
912     }
913     sprintf(buf, "sound%d.%s", id, extension);
914     if(numextracts==1) {
915         filename = destfilename;
916         if(!strcmp(filename,"output.swf")) {
917             sprintf(buf, "output.%s", extension);
918             filename = buf;
919         }
920     }
921     fi = save_fopen(filename, "wb");
922     fwrite(&tag->data[tag->pos], tag->len - tag->pos, 1, fi);
923     fclose(fi);
924 }
925
926 int main (int argc,char ** argv)
927
928     TAG*tag;
929     SWF swf;
930     int f;
931     int found = 0;
932     int frame = 0;
933     int tagnum = 0;
934     char depths[65536];
935     char listavailable = 0;
936     processargs(argc, argv);
937
938     if(!extractframes && !extractids && ! extractname && !extractjpegids && !extractpngids
939         && !extractmp3 && !extractsoundids && !extractfontids)
940         listavailable = 1;
941
942     if(!filename)
943     {
944         fprintf(stderr, "You must supply a filename.\n");
945         return 1;
946     }
947     initLog(0,-1,0,0,-1, verbose);
948
949     f = open(filename,O_RDONLY|O_BINARY);
950
951     if (f<0)
952     { 
953         perror("Couldn't open file: ");
954         exit(1);
955     }
956     if (swf_ReadSWF(f,&swf) < 0)
957     { 
958         fprintf(stderr, "%s is not a valid SWF file or contains errors.\n",filename);
959         close(f);
960         exit(1);
961     }
962     close(f);
963
964     if(listavailable) {
965         listObjects(&swf);
966         swf_FreeTags(&swf);
967         return 0;
968     }
969
970     tag = swf.firstTag;
971     tagnum = 0;
972     while(tag) {
973         tagnum ++;
974         tag = tag->next;
975     }
976
977     tagused = (char*)malloc(tagnum);
978     memset(tagused, 0, tagnum);
979     memset(used, 0, 65536);
980     memset(depths, 0, 65536);
981
982     tag = swf.firstTag;
983     tagnum = 0;
984     while(tag) {
985         if(swf_isAllowedSpriteTag(tag)) {
986             int write = 0;
987             if(extractframes && is_in_range(frame, extractframes)) {
988                 write = 1;
989                 if(tag->id == ST_PLACEOBJECT || tag->id == ST_PLACEOBJECT2) {
990                     depths[swf_GetDepth(tag)] = 1;
991                 }
992                 if(tag->id == ST_REMOVEOBJECT || tag->id == ST_REMOVEOBJECT2) {
993                     int depth = swf_GetDepth(tag);
994                     if(!depths[depth]) 
995                         write = 0;
996                     depths[swf_GetDepth(tag)] = 0;
997                 }
998             } else {
999                 if((tag->id == ST_REMOVEOBJECT || tag->id == ST_REMOVEOBJECT2) && 
1000                     (depths[swf_GetDepth(tag)]) && hollow) {
1001                     write = 1;
1002                     depths[swf_GetDepth(tag)] = 0;
1003                 }
1004             }
1005             if(write) {
1006                 enumerateIDs(tag, idcallback);
1007                 found = 1;
1008                 tagused[tagnum] = 1;
1009             }
1010         }
1011
1012         if(tag->id == ST_SOUNDSTREAMHEAD ||
1013            tag->id == ST_SOUNDSTREAMHEAD2 ||
1014            tag->id == ST_SOUNDSTREAMBLOCK) {
1015             if(extractmp3)
1016                 handlesoundstream(tag);
1017         }
1018
1019         if(tag->id == ST_JPEGTABLES)
1020             handlejpegtables(tag);
1021
1022         if(swf_isDefiningTag(tag)) {
1023             int id = swf_GetDefineID(tag);
1024             tags[id] = tag;
1025             if(extractids && is_in_range(id, extractids)) {
1026                 used[id] = 5;
1027                 found = 1;
1028             }
1029             if(extractfontids && is_in_range(id, extractfontids)) {
1030                 handlefont(&swf, tag);
1031             }
1032             if(extractjpegids && is_in_range(id, extractjpegids)) {
1033                 handlejpeg(tag);
1034             }
1035             if(extractsoundids && is_in_range(id, extractsoundids)) {
1036                 handledefinesound(tag);
1037             }
1038 #ifdef _ZLIB_INCLUDED_
1039             if(extractpngids && is_in_range(id, extractpngids)) {
1040                 handlelossless(tag);
1041             }
1042 #endif
1043         }
1044         else if (tag->id == ST_SETBACKGROUNDCOLOR) {
1045             mainr = tag->data[0];
1046             maing = tag->data[1];
1047             mainb = tag->data[2];
1048         }
1049         else if(tag->id == ST_PLACEOBJECT2) {
1050             char*name = swf_GetName(tag);
1051             if(name && extractname && !strcmp(name, extractname)) {
1052                 int id = swf_GetPlaceID(tag); 
1053                 used[id] = 5;
1054                 found = 1;
1055                 tagused[tagnum] = 1;
1056                 depths[swf_GetDepth(tag)] = 1;
1057                 extractname_id = id;
1058             }
1059         }
1060         else if(tag->id == ST_SHOWFRAME) {
1061             frame ++;
1062             if(hollow) {
1063                 tagused[tagnum] = 1;
1064                 found = 1;
1065             }
1066         }
1067         
1068         if(tag->id == ST_DEFINESPRITE) {
1069             while(tag->id != ST_END) { 
1070                 tag = tag->next;
1071                 tagnum ++;
1072             }
1073         }
1074         tag = tag->next;
1075         tagnum ++;
1076     }
1077     if (found)
1078         extractTag(&swf, destfilename);
1079
1080     if(mp3file)
1081         fclose(mp3file);
1082
1083     swf_FreeTags(&swf);
1084     return 0;
1085 }
1086