moved memory handling to mem.c, mem.h
[swftools.git] / lib / rfxswf.c
1 /* vi: set sts=2 sw=2 :*/
2 /* rfxswf.c 
3
4    Library for creating and reading SWF files or parts of it.
5    There's a module directory which provides some extended functionality.
6    Most modules are included at the bottom of this file.
7
8    Part of the swftools package.
9
10    Copyright (c) 2000-2003 Rainer Böhme <rfxswf@reflex-studio.de>
11    Copyright (c) 2003 Matthias Kramm <kramm@quiss.org> 
12
13    This program is free software; you can redistribute it and/or modify
14    it under the terms of the GNU General Public License as published by
15    the Free Software Foundation; either version 2 of the License, or
16    (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21    GNU General Public License for more details.
22
23    You should have received a copy of the GNU General Public License
24    along with this program; if not, write to the Free Software
25    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
26
27 #include "mem.h"
28 #include "rfxswf.h"
29
30 #ifdef HAVE_JPEGLIB
31 #define HAVE_BOOLEAN
32 #include <jpeglib.h>
33 #endif // HAVE_JPEGLIB
34
35 #ifdef HAVE_ZLIB
36 #include <zlib.h>
37 #endif // HAVE_ZLIB
38
39 #ifndef RFXSWF_DISABLESOUND
40 #ifdef HAVE_LAME
41 #include "lame/lame.h"
42 #endif
43 #endif
44
45 #ifdef HAVE_TIME_H
46 #include <time.h>
47 #endif
48
49 #include "./bitio.h"
50 #include "./MD5.h"
51
52 // internal constants
53
54 #define MALLOC_SIZE     128
55 #define INSERT_RFX_TAG
56
57 #define MEMSIZE(l) (((l/MALLOC_SIZE)+1)*MALLOC_SIZE)
58
59 // inline wrapper functions
60
61 TAG * swf_NextTag(TAG * t) { return t->next; }
62 TAG * swf_PrevTag(TAG * t) { return t->prev; }
63 U16   swf_GetTagID(TAG * t)    { return t->id; }
64 U32   swf_GetTagLen(TAG * t) { return t->len; }
65 U8*   swf_GetTagLenPtr(TAG * t) { return &(t->data[t->len]); }
66 U32   swf_GetTagPos(TAG * t)   { return t->pos; }
67
68 // for future purpose: avoid high level lib functions to change tagpos/bitpos
69
70 #define swf_SaveTagPos(tag)
71 #define swf_RestoreTagPos(tag)
72
73 void swf_SetTagPos(TAG * t,U32 pos)
74 { swf_ResetReadBits(t);
75   if (pos<=t->len) t->pos = pos;
76   else { 
77 #ifdef DEBUG_RFXSWF
78     fprintf(stderr,"SetTagPos(%d) out of bounds: TagID = %i\n",pos, t->id);
79 #endif
80   }
81 }
82
83 char* swf_GetString(TAG*t)
84 {
85     char* str = ((char*)(&(t)->data[(t)->pos]));
86     while(swf_GetU8(t));
87     return str;
88 }
89
90 U8 swf_GetU8(TAG * t)
91 { swf_ResetReadBits(t);
92   #ifdef DEBUG_RFXSWF
93     if (t->pos>=t->len) 
94     { fprintf(stderr,"GetU8() out of bounds: TagID = %i\n",t->id);
95       return 0;
96     }
97   #endif
98   return t->data[t->pos++];
99 }
100
101 U16 swf_GetU16(TAG * t)
102 { U16 res;
103   swf_ResetReadBits(t);
104   #ifdef DEBUG_RFXSWF
105     if (t->pos>(t->len-2)) 
106     { fprintf(stderr,"GetU16() out of bounds: TagID = %i\n",t->id);
107       return 0;
108     }
109   #endif
110   res = t->data[t->pos] | (t->data[t->pos+1]<<8);
111   t->pos+=2;
112   return res;
113 }
114
115 U32 swf_GetU32(TAG * t)
116 { U32 res;
117   swf_ResetReadBits(t);
118   #ifdef DEBUG_RFXSWF
119     if (t->pos>(t->len-4)) 
120     { fprintf(stderr,"GetU32() out of bounds: TagID = %i\n",t->id);
121       return 0;
122     }
123   #endif
124   res = t->data[t->pos]        | (t->data[t->pos+1]<<8) | 
125        (t->data[t->pos+2]<<16) | (t->data[t->pos+3]<<24);
126   t->pos+=4;
127   return res;
128 }
129
130 int swf_GetBlock(TAG * t,U8 * b,int l)
131 // returns number of bytes written (<=l)
132 // b = NULL -> skip data
133 { swf_ResetReadBits(t);
134   if ((t->len-t->pos)<l) l=t->len-t->pos;
135   if (b && l) memcpy(b,&t->data[t->pos],l);
136   t->pos+=l;
137   return l;
138 }
139
140 int swf_SetBlock(TAG * t,U8 * b,int l)
141 // Appends Block to the end of Tagdata, returns size
142 { U32 newlen = t->len + l;
143   swf_ResetWriteBits(t);
144   if (newlen>t->memsize)
145   { U32  newmem  = MEMSIZE(newlen);  
146     U8 * newdata = (U8*)(rfx_realloc(t->data,newmem));
147     t->memsize = newmem;
148     t->data    = newdata;
149   }
150   if (b) memcpy(&t->data[t->len],b,l);
151   else memset(&t->data[t->len],0x00,l);
152   t->len+=l;
153   return l;
154 }
155
156 int swf_SetU8(TAG * t,U8 v)
157 { swf_ResetWriteBits(t);
158   if ((t->len+1)>t->memsize) return (swf_SetBlock(t,&v,1)==1)?0:-1;
159   t->data[t->len++] = v;
160   return 0;
161 }
162
163 int swf_SetU16(TAG * t,U16 v)
164 { U8 a[2];
165   a[0] = v&0xff;
166   a[1] = v>>8;
167   
168   swf_ResetWriteBits(t);
169   if ((t->len+2)>t->memsize) return (swf_SetBlock(t,a,2)==2)?0:-1;
170   t->data[t->len++] = a[0];
171   t->data[t->len++] = a[1];
172   return 0;
173 }
174 void swf_SetS16(TAG * t,int v)
175 {
176     if(v>32767 || v<-32768) {
177         fprintf(stderr, "Warning: S16 overflow: %d\n", v);
178     }
179     swf_SetU16(t, (S16)v);
180 }
181
182 int swf_SetU32(TAG * t,U32 v)
183 { U8 a[4];
184   a[0] = v&0xff;        // to ensure correct handling of non-intel byteorder
185   a[1] = (v>>8)&0xff;
186   a[2] = (v>>16)&0xff;
187   a[3] = (v>>24)&0xff;
188   
189   swf_ResetWriteBits(t);
190   if ((t->len+4)>t->memsize) return (swf_SetBlock(t,a,4)==4)?0:-1;
191   t->data[t->len++] = a[0];
192   t->data[t->len++] = a[1];
193   t->data[t->len++] = a[2];
194   t->data[t->len++] = a[3];
195   return 0;
196 }
197
198 U32 swf_GetBits(TAG * t,int nbits)
199 { U32 res = 0;
200   if (!nbits) return 0;
201   if (!t->readBit) t->readBit = 0x80;
202   while (nbits)
203   { res<<=1;
204     if (t->data[t->pos]&t->readBit) res|=1;
205     t->readBit>>=1;
206     nbits--;
207     if (!t->readBit)
208     { if (nbits) t->readBit = 0x80;
209       #ifdef DEBUG_RFXSWF
210       if (t->pos>=t->len) 
211       { fprintf(stderr,"GetBits() out of bounds: TagID = %i\n",t->id);
212         return res;
213       }
214       #endif
215       t->pos++;
216     }
217   }
218   return res;
219 }
220
221 S32 swf_GetSBits(TAG * t,int nbits)
222 { U32 res = swf_GetBits(t,nbits);
223   if (res&(1<<(nbits-1))) res|=(0xffffffff<<nbits);  
224   return (S32)res;
225 }
226
227 U32 reader_GetBits(struct reader_t*reader, int nbits)
228 { return reader_readbits(reader, nbits);
229 }
230 S32 reader_GetSBits(struct reader_t*reader, int nbits)
231 { U32 res = reader_readbits(reader, nbits);
232   if (res&(1<<(nbits-1))) res|=(0xffffffff<<nbits);  
233   return (S32)res;
234 }
235
236 int swf_SetBits(TAG * t,U32 v,int nbits)
237 { U32 bm = 1<<(nbits-1);
238
239   while (nbits)
240   { if (!t->writeBit)
241     { if (FAILED(swf_SetU8(t,0))) return -1;
242       t->writeBit = 0x80;
243     }
244     if (v&bm) t->data[t->len-1] |= t->writeBit;
245     bm>>=1;
246     t->writeBit>>=1;
247     nbits--;
248   }
249   return 0;
250 }
251
252 // Advanced Data Access Functions
253
254 int swf_SetRGB(TAG * t,RGBA * col)
255 { if (!t) return -1;
256   if (col)
257   { swf_SetU8(t,col->r);
258     swf_SetU8(t,col->g);
259     swf_SetU8(t,col->b);
260   } else swf_SetBlock(t,NULL,3);
261   return 0;
262 }
263 void swf_GetRGB(TAG * t, RGBA * col)
264 {
265     RGBA dummy;
266     if(!col)
267         col = &dummy;
268     col->r = swf_GetU8(t);
269     col->g = swf_GetU8(t);
270     col->b = swf_GetU8(t);
271     col->a = 255;
272 }
273
274 int swf_SetRGBA(TAG * t,RGBA * col)
275 { if (!t) return -1;
276   if (col)
277   { swf_SetU8(t,col->r);
278     swf_SetU8(t,col->g);
279     swf_SetU8(t,col->b);
280     swf_SetU8(t,col->a);
281   } else swf_SetBlock(t,NULL,4);
282   return 0;
283 }
284 void swf_GetRGBA(TAG * t, RGBA * col)
285 {
286     RGBA dummy;
287     if(!col)
288         col = &dummy;
289     col->r = swf_GetU8(t);
290     col->g = swf_GetU8(t);
291     col->b = swf_GetU8(t);
292     col->a = swf_GetU8(t);
293 }
294
295 void swf_GetGradient(TAG * tag, GRADIENT * gradient, char alpha)
296 {
297     GRADIENT dummy;
298     int t;
299     if(!tag) {
300       memset(gradient, 0, sizeof(GRADIENT));
301       return;
302     }
303     if(!gradient)
304         gradient = &dummy;
305     gradient->num = swf_GetU8(tag);
306     for(t=0;t<gradient->num;t++)
307     {
308         int s=t;
309         if(s>=8) //FIXME
310             s=7;
311         gradient->ratios[t] = swf_GetU8(tag);
312         if(!alpha)
313             swf_GetRGB(tag, &gradient->rgba[t]);
314         else
315             swf_GetRGBA(tag, &gradient->rgba[t]);
316     }
317 }
318
319 void swf_SetGradient(TAG * tag, GRADIENT * gradient, char alpha)
320 {
321     int t;
322     if(!tag) {
323       memset(gradient, 0, sizeof(GRADIENT));
324       return;
325     }
326     swf_SetU8(tag, gradient->num);
327     for(t=0; t<8 && t<gradient->num; t++)
328     {
329         swf_SetU8(tag, gradient->ratios[t]);
330         if(!alpha)
331             swf_SetRGB(tag, &gradient->rgba[t]);
332         else
333             swf_SetRGBA(tag, &gradient->rgba[t]);
334     }
335 }
336
337 int swf_CountUBits(U32 v,int nbits)
338 { int n = 32;
339   U32 m = 0x80000000;
340   if(v == 0x00000000) n = 0; 
341   else
342     while (!(v&m))
343     { n--;
344       m>>=1;
345     } 
346   return (n>nbits)?n:nbits;
347 }
348
349 int swf_CountBits(U32 v,int nbits)
350 { int n = 33;
351   U32 m = 0x80000000;
352   if (v&m)
353   { if(v == 0xffffffff) n = 1;
354     else 
355     while (v&m)
356     { n--;
357       m>>=1;
358     } 
359   }
360   else
361   { if(v == 0x00000000) n = 0; 
362     else
363     while (!(v&m))
364     { n--;
365       m>>=1;
366     } 
367   }
368   return (n>nbits)?n:nbits;
369 }
370
371 int swf_GetRect(TAG * t,SRECT * r)
372 { int nbits;
373   SRECT dummy;
374   if(!t) {r->xmin=r->xmax=r->ymin=r->ymax=0;return 0;}
375   if (!r) r = &dummy;
376   nbits = (int) swf_GetBits(t,5);
377   r->xmin = swf_GetSBits(t,nbits);
378   r->xmax = swf_GetSBits(t,nbits);
379   r->ymin = swf_GetSBits(t,nbits);
380   r->ymax = swf_GetSBits(t,nbits);
381   return 0;
382 }
383
384 int reader_GetRect(struct reader_t*reader,SRECT * r)
385 { int nbits;
386   SRECT dummy;
387   if (!r) r = &dummy;
388   nbits = (int) reader_GetBits(reader,5);
389   r->xmin = reader_GetSBits(reader,nbits);
390   r->xmax = reader_GetSBits(reader,nbits);
391   r->ymin = reader_GetSBits(reader,nbits);
392   r->ymax = reader_GetSBits(reader,nbits);
393   return 0;
394 }
395
396 int swf_SetRect(TAG * t,SRECT * r)
397 { int nbits;
398     
399   nbits = swf_CountBits(r->xmin,0);
400   nbits = swf_CountBits(r->xmax,nbits);
401   nbits = swf_CountBits(r->ymin,nbits);
402   nbits = swf_CountBits(r->ymax,nbits);
403   if(nbits>=32) {
404     fprintf(stderr, "rfxswf: Warning: num_bits overflow in swf_SetRect\n");
405     nbits=31;
406   }
407
408   swf_SetBits(t,nbits,5);
409   swf_SetBits(t,r->xmin,nbits);
410   swf_SetBits(t,r->xmax,nbits);
411   swf_SetBits(t,r->ymin,nbits);
412   swf_SetBits(t,r->ymax,nbits);
413
414   return 0;
415 }
416
417 void swf_ExpandRect(SRECT*src, SPOINT add)
418 {
419     if((src->xmin | src->ymin | src->xmax | src->ymax)==0) {
420         src->xmin = add.x;
421         src->ymin = add.y;
422         src->xmax = add.x;
423         src->ymax = add.y;
424         if((add.x|add.y) == 0) src->xmax++; //make sure the bbox is not NULL anymore
425         return;
426     }
427     if(add.x < src->xmin)
428         src->xmin = add.x;
429     if(add.x > src->xmax)
430         src->xmax = add.x;
431     if(add.y < src->ymin)
432         src->ymin = add.y;
433     if(add.y > src->ymax)
434         src->ymax = add.y;
435 }
436 void swf_ExpandRect2(SRECT*src, SRECT*add)
437 {
438     if((add->xmin | add->ymin | add->xmax | add->ymax)==0)
439         return;
440     if((src->xmin | src->ymin | src->xmax | src->ymax)==0)
441         *src = *add;
442     if(add->xmin < src->xmin)
443         src->xmin = add->xmin;
444     if(add->ymin < src->ymin)
445         src->ymin = add->ymin;
446     if(add->xmax > src->xmax)
447         src->xmax = add->xmax;
448     if(add->ymax > src->ymax)
449         src->ymax = add->ymax;
450 }
451 void swf_ExpandRect3(SRECT*src, SPOINT center, int radius)
452 {
453     if((src->xmin | src->ymin | src->xmax | src->ymax)==0) {
454         src->xmin = center.x-radius;
455         src->ymin = center.y-radius;
456         src->xmax = center.x+radius;
457         src->ymax = center.y+radius;
458         if((center.x|center.y|radius) == 0) src->xmax++; //make sure the bbox is not NULL anymore
459         return;
460     }
461     if(center.x - radius < src->xmin)
462         src->xmin = center.x - radius;
463     if(center.x + radius > src->xmax)
464         src->xmax = center.x + radius;
465     if(center.y - radius < src->ymin)
466         src->ymin = center.y - radius;
467     if(center.y + radius > src->ymax)
468         src->ymax = center.y + radius;
469 }
470 SPOINT swf_TurnPoint(SPOINT p, MATRIX* m)
471 {
472     SPOINT r;
473     r.x = (int)(m->sx*(1/65536.0)*p.x + m->r1*(1/65536.0)*p.y + 0.5) + m->tx;
474     r.y = (int)(m->r0*(1/65536.0)*p.x + m->sy*(1/65536.0)*p.y + 0.5) + m->ty;
475     return r;
476 }
477 SRECT swf_TurnRect(SRECT r, MATRIX* m)
478 {
479     SRECT g;
480     SPOINT p1,p2,p3,p4,pp1,pp2,pp3,pp4;
481     if(!m)
482       return r;
483     p1.x = r.xmin;p1.y = r.ymin;
484     p2.x = r.xmax;p2.y = r.ymin;
485     p3.x = r.xmin;p3.y = r.ymax;
486     p4.x = r.xmax;p4.y = r.ymax;
487     pp1 = swf_TurnPoint(p1, m);
488     pp2 = swf_TurnPoint(p2, m);
489     pp3 = swf_TurnPoint(p3, m);
490     pp4 = swf_TurnPoint(p4, m);
491     g.xmin = g.xmax = pp1.x;
492     g.ymin = g.ymax = pp1.y;
493     swf_ExpandRect(&g, pp2);
494     swf_ExpandRect(&g, pp3);
495     swf_ExpandRect(&g, pp4);
496     return g;
497 }
498         
499
500 int swf_GetMatrix(TAG * t,MATRIX * m)
501 { MATRIX dummy;
502   int nbits;
503     
504   if (!m) m = &dummy;
505   
506   if (!t)
507   { m->sx = m->sy = 0x10000;
508     m->r0 = m->r1 = 0;
509     m->tx = m->ty = 0;
510     return -1;
511   }
512
513   swf_ResetReadBits(t);
514   
515   if (swf_GetBits(t,1))
516   { nbits = swf_GetBits(t,5);
517     m->sx = swf_GetSBits(t,nbits);
518     m->sy = swf_GetSBits(t,nbits);
519   }
520   else m->sx = m->sy = 0x10000;
521   
522   if (swf_GetBits(t,1))
523   { nbits = swf_GetBits(t,5);
524     m->r0 = swf_GetSBits(t,nbits);
525     m->r1 = swf_GetSBits(t,nbits);
526   }
527   else m->r0 = m->r1 = 0x0;
528
529   nbits = swf_GetBits(t,5);
530   m->tx = swf_GetSBits(t,nbits);
531   m->ty = swf_GetSBits(t,nbits);
532   
533   return 0;
534 }
535
536 int swf_SetMatrix(TAG * t,MATRIX * m)
537 { int nbits;
538   MATRIX ma;
539
540   if (!m)
541   { m = &ma;
542     ma.sx = ma.sy = 0x10000;
543     ma.r0 = ma.r1 = 0;
544     ma.tx = ma.ty = 0;
545   }
546
547   swf_ResetWriteBits(t);
548
549   if ((m->sx==0x10000)&&(m->sy==0x10000)) swf_SetBits(t,0,1);
550   else
551   { swf_SetBits(t,1,1);
552     nbits = swf_CountBits(m->sx,0);
553     nbits = swf_CountBits(m->sy,nbits);
554     if(nbits>=32) {
555         /* TODO: happens on AMD64 systems for normal values? */
556         fprintf(stderr,"rfxswf: Error: matrix values too large\n");
557         nbits = 31;
558     }
559     swf_SetBits(t,nbits,5);
560     swf_SetBits(t,m->sx,nbits);
561     swf_SetBits(t,m->sy,nbits);
562   }
563
564   if ((!m->r0)&&(!m->r1)) swf_SetBits(t,0,1);
565   else
566   { swf_SetBits(t,1,1);
567     nbits = swf_CountBits(m->r0,0);
568     nbits = swf_CountBits(m->r1,nbits);
569     if(nbits>=32) {
570         fprintf(stderr,"rfxswf: Error: matrix values too large\n");
571         nbits = 31;
572     }
573     swf_SetBits(t,nbits,5);
574     swf_SetBits(t,m->r0,nbits);
575     swf_SetBits(t,m->r1,nbits);
576   }
577
578   nbits = swf_CountBits(m->tx,0);
579   nbits = swf_CountBits(m->ty,nbits);
580   if(nbits>=32) {
581       fprintf(stderr,"rfxswf: Error: matrix values too large\n");
582       nbits = 31;
583   }
584   swf_SetBits(t,nbits,5);
585   swf_SetBits(t,m->tx,nbits);
586   swf_SetBits(t,m->ty,nbits);
587
588   return 0;
589 }
590
591 int swf_GetCXForm(TAG * t,CXFORM * cx,U8 alpha)
592 { CXFORM cxf;
593   int hasadd;
594   int hasmul;
595   int nbits;
596     
597   if (!cx) cx = &cxf;
598   
599   cx->a0 = cx->r0 = cx->g0 = cx->b0 = 256;
600   cx->a1 = cx->r1 = cx->g1 = cx->b1 = 0;
601
602   if (!t) return 0;
603   
604   swf_ResetReadBits(t);
605   hasadd = swf_GetBits(t,1);
606   hasmul = swf_GetBits(t,1);
607   nbits  = swf_GetBits(t,4);
608
609   if (hasmul)
610   { cx->r0 = (S16)swf_GetSBits(t,nbits);
611     cx->g0 = (S16)swf_GetSBits(t,nbits);
612     cx->b0 = (S16)swf_GetSBits(t,nbits);
613     if (alpha)
614       cx->a0 = (S16)swf_GetSBits(t,nbits);
615   }
616
617   if (hasadd)
618   { cx->r1 = (S16)swf_GetSBits(t,nbits);
619     cx->g1 = (S16)swf_GetSBits(t,nbits);
620     cx->b1 = (S16)swf_GetSBits(t,nbits);
621     if (alpha)
622       cx->a1 = (S16)swf_GetSBits(t,nbits);
623   }
624   
625   return 0;
626 }
627
628 int swf_SetCXForm(TAG * t,CXFORM * cx,U8 alpha)
629 { CXFORM cxf;
630   int hasadd;
631   int hasmul;
632   int nbits;
633     
634   if (!cx)
635   { cx = &cxf;
636     cx->a0 = cx->r0 = cx->g0 = cx->b0 = 256;
637     cx->a1 = cx->r1 = cx->g1 = cx->b1 = 0;
638   }
639
640   if (!alpha)
641   { cx->a0 = 256;
642     cx->a1 = 0;
643   }
644
645   nbits = 0;
646
647   hasmul = (cx->a0!=256)||(cx->r0!=256)||(cx->g0!=256)||(cx->b0!=256);
648   hasadd = cx->a1|cx->r1|cx->g1|cx->b1;
649
650   if (hasmul)
651   { if (alpha) nbits = swf_CountBits((S32)cx->a0,nbits);
652     nbits = swf_CountBits((S32)cx->r0,nbits);
653     nbits = swf_CountBits((S32)cx->g0,nbits);
654     nbits = swf_CountBits((S32)cx->b0,nbits);
655   }
656
657   if (hasadd)
658   { if (alpha) nbits = swf_CountBits((S32)cx->a1,nbits);
659     nbits = swf_CountBits((S32)cx->r1,nbits);
660     nbits = swf_CountBits((S32)cx->g1,nbits);
661     nbits = swf_CountBits((S32)cx->b1,nbits);
662   }
663   
664   swf_ResetWriteBits(t);
665   swf_SetBits(t,hasadd?1:0,1);
666   swf_SetBits(t,hasmul?1:0,1);
667   swf_SetBits(t,nbits,4);
668
669   if (hasmul)
670   { swf_SetBits(t,cx->r0,nbits);
671     swf_SetBits(t,cx->g0,nbits);
672     swf_SetBits(t,cx->b0,nbits);
673     if (alpha) swf_SetBits(t,cx->a0,nbits);
674   }
675
676   if (hasadd)
677   { swf_SetBits(t,cx->r1,nbits);
678     swf_SetBits(t,cx->g1,nbits);
679     swf_SetBits(t,cx->b1,nbits);
680     if (alpha) swf_SetBits(t,cx->a1,nbits);
681   }
682   
683   return 0;
684 }
685
686 //int swf_GetPoint(TAG * t,SPOINT * p) { return 0; }
687 //int swf_SetPoint(TAG * t,SPOINT * p) { return 0; }
688
689 void  swf_SetPassword(TAG * t, const char * password)
690 {
691     /* WARNING: crypt_md5 is not reentrant */
692     char salt[3];
693     char* md5string;
694
695 #if defined(HAVE_LRAND48) && defined(HAVE_SRAND48) && defined(HAVE_TIME_H) && defined(HAVE_TIME)
696     srand48(time(0));
697     salt[0] = "abcdefghijklmnopqrstuvwxyz0123456789"[lrand48()%36];
698     salt[1] = "abcdefghijklmnopqrstuvwxyz0123456789"[lrand48()%36];
699 #else
700     salt[0] = 'l';
701     salt[1] = '8';
702     fprintf(stderr, "rfxswf: Warning- no usable random generator found\n");
703     fprintf(stderr, "Your password will be vulnerable to dictionary attacks\n");
704 #endif
705     salt[2] = 0;
706     
707     md5string = crypt_md5(password, salt);
708
709     swf_SetU16(t,0);
710     swf_SetString(t, md5string);
711 }
712
713 int swf_VerifyPassword(TAG * t, const char * password)
714 {
715     char*md5string1, *md5string2;
716     char*x;
717     char*md5, *salt;
718     int n;
719
720     if(t->len >= 5 && t->pos==0 && 
721        t->data[0] == 0 &&
722        t->data[1] == 0) {
723       swf_GetU16(t);
724     } else {
725       printf("%d %d %d %d\n", t->len, t->pos, t->data[0], t->data[1]);
726     }
727
728     md5string1 = swf_GetString(t);
729
730     if(strncmp(md5string1, "$1$",3 )) {
731         fprintf(stderr, "rfxswf: no salt in pw string\n");
732         return 0;
733     }
734     x = strchr(md5string1+3, '$');
735     if(!x) {
736         fprintf(stderr, "rfxswf: invalid salt format in pw string\n");
737         return 0;
738     }
739     n = x-(md5string1+3);
740     salt = (char*)rfx_alloc(n+1);
741     memcpy(salt, md5string1+3, n);
742     salt[n] = 0;
743
744     md5string2 = crypt_md5(password, salt);
745     rfx_free(salt);
746     if(strcmp(md5string1, md5string2) != 0)
747         return 0;
748     return 1;
749 }
750
751 // Tag List Manipulating Functions
752
753 TAG * swf_InsertTag(TAG * after,U16 id)
754 { TAG * t;
755
756   t = (TAG *)rfx_calloc(sizeof(TAG));
757   t->id = id;
758   
759   if (after)
760   {
761     t->prev  = after;
762     t->next  = after->next;
763     after->next = t;
764     if (t->next) t->next->prev = t;
765   }
766   return t;
767 }
768
769 TAG * swf_InsertTagBefore(SWF* swf, TAG * before,U16 id)
770 { TAG * t;
771
772   t = (TAG *)rfx_calloc(sizeof(TAG));
773   t->id = id;
774   
775   if (before)
776   {
777     t->next  = before;
778     t->prev  = before->prev;
779     before->prev = t;
780     if (t->prev) t->prev->next = t;
781   }
782   if(swf && swf->firstTag == before) {
783     swf->firstTag = t;
784   }
785   return t;
786 }
787
788 void swf_ClearTag(TAG * t)
789 {
790   if (t->data) rfx_free(t->data);
791   t->data = 0;
792   t->pos = 0;
793   t->len = 0;
794   t->readBit = 0;
795   t->writeBit = 0;
796   t->memsize = 0;
797 }
798
799 void swf_ResetTag(TAG*tag, U16 id)
800 {
801     tag->len = tag->pos = tag->readBit = tag->writeBit = 0;
802     tag->id = id;
803 }
804
805 TAG* swf_CopyTag(TAG*tag, TAG*to_copy)
806 {
807     tag = swf_InsertTag(tag, to_copy->id);
808     swf_SetBlock(tag, to_copy->data, to_copy->len);
809     return tag;
810 }
811
812 int swf_DeleteTag(TAG * t)
813 { if (!t) return -1;
814
815   if (t->prev) t->prev->next = t->next;
816   if (t->next) t->next->prev = t->prev;
817
818   if (t->data) rfx_free(t->data);
819   rfx_free(t);
820   return 0;
821 }
822
823 TAG * swf_ReadTag(struct reader_t*reader, TAG * prev)
824 { TAG * t;
825   U16 raw;
826   U32 len;
827   int id;
828
829   if (reader->read(reader, &raw, 2) !=2 ) return NULL;
830   raw = SWAP16(raw);
831
832   len = raw&0x3f;
833   id  = raw>>6;
834
835   if (len==0x3f)
836   {
837       if (reader->read(reader, &len, 4) != 4) return NULL;
838       len = SWAP32(len);
839   }
840
841   if (id==ST_DEFINESPRITE) len = 2*sizeof(U16);
842   // Sprite handling fix: Flatten sprite tree
843
844   t = (TAG *)rfx_calloc(sizeof(TAG));
845   
846   t->len = len;
847   t->id  = id;
848
849   if (t->len)
850   { t->data = (U8*)rfx_alloc(t->len);
851     t->memsize = t->len;
852     if (reader->read(reader, t->data, t->len) != t->len) {
853       fprintf(stderr, "rfxswf: Warning: Short read (tagid %d). File truncated?\n", t->id);
854       free(t->data);t->data=0;
855       free(t);
856       return NULL;
857     }
858   }
859
860   if (prev)
861   {
862     t->prev  = prev;
863     prev->next = t;
864   }
865
866   return t;
867 }
868
869 int swf_DefineSprite_GetRealSize(TAG * t);
870
871 int swf_WriteTag2(struct writer_t*writer, TAG * t)
872 // returns tag length in bytes (incl. Header), -1 = Error
873 // writer = 0 -> no output
874 { U16 raw[3];
875   U32 len;
876   int short_tag;
877
878   if (!t) return -1;
879
880   len = (t->id==ST_DEFINESPRITE)?swf_DefineSprite_GetRealSize(t):t->len;
881
882   short_tag = len<0x3f&&(t->id!=ST_DEFINEBITSLOSSLESS&&t->id!=ST_DEFINEBITSLOSSLESS2);
883
884   if (writer)
885   { if (short_tag)
886     { raw[0] = SWAP16(len|((t->id&0x3ff)<<6));
887       if (writer->write(writer,raw,2)!=2)
888       {
889         #ifdef DEBUG_RFXSWF
890           fprintf(stderr,"WriteTag() failed: Short Header.\n");
891         #endif
892         return -1;
893       }
894     }
895     else
896     {
897       raw[0] = SWAP16((t->id<<6)|0x3f);
898       if (writer->write(writer,raw,2)!=2)
899       {
900 #ifdef DEBUG_RFXSWF
901           fprintf(stderr,"WriteTag() failed: Long Header (1).\n");
902 #endif
903           return -1;
904       }
905       
906       len = SWAP32(len);
907       if (writer->write(writer,&len,4)!=4)
908       {
909         #ifdef DEBUG_RFXSWF
910           fprintf(stderr,"WriteTag() failed: Long Header (2).\n");
911         #endif
912         return -1;
913       }
914     }
915     
916     if (t->data)
917     { if (writer->write(writer,t->data,t->len)!=t->len)
918       {
919         #ifdef DEBUG_RFXSWF
920           fprintf(stderr,"WriteTag() failed: Data.\n");
921         #endif
922         return -1;
923       }
924     }
925     #ifdef DEBUG_RFXSWF
926       else if (t->len) fprintf(stderr,"WriteTag(): Tag Data Error, id=%i\n",t->id);
927     #endif
928   }
929
930   return t->len+(short_tag?2:6);
931 }
932
933 int swf_WriteTag(int handle, TAG * t)
934 {
935   struct writer_t writer;
936   int len = 0;
937   if(handle<0)
938     return swf_WriteTag2(0, t);
939   writer_init_filewriter(&writer, handle);
940   len = swf_WriteTag2(&writer, t);
941   writer.finish(&writer);
942   return len;
943 }
944
945 int swf_DefineSprite_GetRealSize(TAG * t)
946 // Sprite Handling: Helper function to pack DefineSprite-Tag
947 { U32 len = t->len;
948   if(len>4) { // folded sprite
949       return t->len;
950   }
951   do
952   { t = swf_NextTag(t);
953     if (t && t->id!=ST_DEFINESPRITE) len += swf_WriteTag(-1, t);
954     else t = NULL;
955   } while (t&&(t->id!=ST_END));
956   return len;
957 }
958
959 void swf_UnFoldSprite(TAG * t)
960 {
961   U16 id,tmp;
962   U32 len;
963   TAG*next = t;
964   U16 spriteid,spriteframes;
965   int level;
966   if(t->id!=ST_DEFINESPRITE)
967     return;
968   if(t->len<=4) // not folded
969     return;
970
971   swf_SetTagPos(t,0);
972
973   spriteid = swf_GetU16(t); //id
974   spriteframes = swf_GetU16(t); //frames
975
976   level = 1;
977
978   while(1)
979   {
980     TAG*it = 0;
981     tmp = swf_GetU16(t);
982     len = tmp&0x3f;
983     id  = tmp>>6;
984     if(id == ST_END)
985         level--;
986     if(id == ST_DEFINESPRITE && len<=4)
987         level++;
988
989     if (len==0x3f)
990         len = swf_GetU32(t);
991     it = swf_InsertTag(next, id);
992     next = it;
993     it->len = len;
994     it->id  = id;
995     if (it->len)
996     { it->data = (U8*)rfx_alloc(it->len);
997       it->memsize = it->len;
998       swf_GetBlock(t, it->data, it->len);
999     }
1000
1001     if(!level)
1002         break;
1003   }
1004   
1005   rfx_free(t->data); t->data = 0;
1006   t->memsize = t->len = t->pos = 0;
1007
1008   swf_SetU16(t, spriteid);
1009   swf_SetU16(t, spriteframes);
1010 }
1011
1012 void swf_FoldSprite(TAG * t)
1013 {
1014   TAG*sprtag=t,*tmp;
1015   U16 id,frames,tmpid;
1016   int level;
1017   if(t->id!=ST_DEFINESPRITE)
1018       return;
1019   if(!t->len) {
1020       fprintf(stderr, "Error: Sprite has no ID!");
1021       return;
1022   }
1023   if(t->len>4) {
1024     /* sprite is already folded */
1025       return;
1026   }
1027
1028   t->pos = 0;
1029   id = swf_GetU16(t);
1030   rfx_free(t->data);
1031   t->len = t->pos = t->memsize = 0;
1032   t->data = 0;
1033
1034   frames = 0;
1035
1036   t = swf_NextTag(sprtag);
1037   level = 1;
1038
1039   do 
1040   { 
1041     if(t->id==ST_SHOWFRAME) frames++;
1042     if(t->id == ST_DEFINESPRITE && t->len<=4)
1043         level++;
1044     if(t->id == ST_END)
1045         level--;
1046     t = swf_NextTag(t);
1047   } while(t && level);
1048   if(level)
1049     fprintf(stderr, "rfxswf error: sprite doesn't end(1)\n");
1050
1051   swf_SetU16(sprtag, id);
1052   swf_SetU16(sprtag, frames);
1053
1054   t = swf_NextTag(sprtag);
1055   level = 1;
1056
1057   do
1058   { 
1059     if(t->len<0x3f&&t->id!=ST_DEFINEBITSLOSSLESS&&t->id!=ST_DEFINEBITSLOSSLESS2) {
1060         swf_SetU16(sprtag,t->len|(t->id<<6));
1061     } else {
1062         swf_SetU16(sprtag,0x3f|(t->id<<6));
1063         swf_SetU32(sprtag,t->len);
1064     }
1065     if(t->len)
1066         swf_SetBlock(sprtag,t->data, t->len);
1067     tmp = t;
1068     if(t->id == ST_DEFINESPRITE && t->len<=4)
1069         level++;
1070     if(t->id == ST_END)
1071         level--;
1072     t = swf_NextTag(t);
1073     swf_DeleteTag(tmp);
1074   } 
1075   while (t && level);
1076   if(level)
1077     fprintf(stderr, "rfxswf error: sprite doesn't end(2)\n");
1078
1079 //  sprtag->next = t;
1080 //  t->prev = sprtag;
1081 }
1082
1083 int swf_IsFolded(TAG * t)
1084 {
1085     return (t->id == ST_DEFINESPRITE && t->len>4);
1086 }
1087
1088 void swf_FoldAll(SWF*swf)
1089 {
1090     TAG*tag = swf->firstTag;
1091     //swf_DumpSWF(stdout, swf);
1092     while(tag) {
1093         if(tag->id == ST_DEFINESPRITE) {
1094             swf_FoldSprite(tag);
1095             //swf_DumpSWF(stdout, swf);
1096         }
1097         tag = swf_NextTag(tag);
1098     }
1099 }
1100
1101 void swf_UnFoldAll(SWF*swf)
1102 {
1103     TAG*tag = swf->firstTag;
1104     while(tag) {
1105         if(tag->id == ST_DEFINESPRITE)
1106             swf_UnFoldSprite(tag);
1107         tag = tag->next;
1108     }
1109 }
1110
1111 void swf_OptimizeTagOrder(SWF*swf)
1112 {
1113   TAG*tag,*next;
1114   TAG*level0;
1115   int level;
1116   int changes;
1117   swf_UnFoldAll(swf);
1118   /* at the moment, we don't actually do optimizing,
1119      only fixing of non-spec-conformant things like
1120      sprite tags */
1121
1122   do {
1123     changes = 0;
1124     level = 0;
1125     level0 = 0;
1126     tag = swf->firstTag;
1127     while(tag) {
1128       next = tag->next;
1129       if(tag->id == ST_DEFINESPRITE) {
1130         if(tag->len>4) {
1131           /* ??? all sprites are supposed to be unfolded */
1132           fprintf(stderr, "librfxswf error - internal error in OptimizeTagOrder/UnfoldAll\n");
1133         }
1134         level++;
1135         if(level==1) {
1136           level0 = tag;
1137           tag = next;
1138           continue;
1139         }
1140       }
1141       if(level>=1) {
1142         /* move non-sprite tags out of sprite */
1143         if(!swf_isAllowedSpriteTag(tag) || level>=2) {
1144           /* remove tag from current position */
1145           tag->prev->next = tag->next;
1146           if(tag->next)
1147             tag->next->prev = tag->prev;
1148
1149           /* insert before tag level0 */
1150           tag->next = level0;
1151           tag->prev = level0->prev;
1152           level0->prev = tag;
1153           if(tag->prev)
1154             tag->prev->next = tag;
1155           else
1156             swf->firstTag = tag;
1157           changes = 1;
1158         }
1159       }
1160       if(tag->id == ST_END) {
1161         level--;
1162       }
1163
1164       tag = next;
1165     }
1166   } while(changes);
1167 }
1168
1169 // Movie Functions
1170
1171 int swf_ReadSWF2(struct reader_t*reader, SWF * swf)   // Reads SWF to memory (malloc'ed), returns length or <0 if fails
1172 {     
1173   if (!swf) return -1;
1174   memset(swf,0x00,sizeof(SWF));
1175
1176   { char b[32];                         // read Header
1177     int len;
1178     TAG * t;
1179     TAG t1;
1180     struct reader_t zreader;
1181     
1182     if ((len = reader->read(reader ,b,8))<8) return -1;
1183
1184     if (b[0]!='F' && b[0]!='C') return -1;
1185     if (b[1]!='W') return -1;
1186     if (b[2]!='S') return -1;
1187     swf->fileVersion = b[3];
1188     swf->compressed  = (b[0]=='C')?1:0;
1189     swf->fileSize    = GET32(&b[4]);
1190     
1191     if(swf->compressed) {
1192         reader_init_zlibinflate(&zreader, reader);
1193         reader = &zreader;
1194     }
1195
1196     reader_GetRect(reader, &swf->movieSize);
1197     reader->read(reader, &swf->frameRate, 2);
1198     swf->frameRate = SWAP16(swf->frameRate);
1199     reader->read(reader, &swf->frameCount, 2);
1200     swf->frameCount = SWAP16(swf->frameCount);
1201
1202     /* read tags and connect to list */
1203     t = &t1;
1204     while (t) t = swf_ReadTag(reader,t);
1205     swf->firstTag = t1.next;
1206     t1.next->prev = NULL;
1207   }
1208   
1209   return reader->pos;
1210 }
1211
1212 int swf_ReadSWF(int handle, SWF * swf)
1213 {
1214   struct reader_t reader;
1215   reader_init_filereader(&reader, handle);
1216   return swf_ReadSWF2(&reader, swf);
1217 }
1218
1219 int  swf_WriteSWF2(struct writer_t*writer, SWF * swf)     // Writes SWF to file, returns length or <0 if fails
1220 { U32 len;
1221   TAG * t;
1222   int frameCount=0;
1223   struct writer_t zwriter;
1224   int fileSize = 0;
1225   int inSprite = 0;
1226   int writer_lastpos = 0;
1227   int ret;
1228     
1229   if (!swf) return -1;
1230   if (!writer) return -1; // the caller should provide a nullwriter, not 0, for querying SWF size
1231
1232   if(writer) writer_lastpos = writer->pos;
1233
1234   // Insert REFLEX Tag
1235
1236 #ifdef INSERT_RFX_TAG
1237
1238   if ((swf->firstTag && swf->firstTag->id != ST_REFLEX) &&
1239       (!swf->firstTag->next || swf->firstTag->next->id != ST_REFLEX)) 
1240   {
1241       swf_SetBlock(swf_InsertTagBefore(swf, swf->firstTag,ST_REFLEX),"rfx",3);
1242   }
1243
1244 #endif // INSERT_RFX_TAG
1245
1246   // Count Frames + File Size
1247
1248   len = 0;
1249   t = swf->firstTag;
1250   frameCount = 0;
1251
1252   while(t) {
1253       len += swf_WriteTag(-1,t);
1254       if(t->id == ST_DEFINESPRITE && !swf_IsFolded(t)) inSprite++;
1255       else if(t->id == ST_END && inSprite) inSprite--;
1256       else if(t->id == ST_END && !inSprite) {
1257         if(t->prev && t->prev->id!=ST_SHOWFRAME)
1258           frameCount++;
1259       }
1260       else if(t->id == ST_SHOWFRAME && !inSprite) frameCount++;
1261       t = swf_NextTag(t);
1262   }
1263   
1264   { TAG t1;
1265     char b[64],b4[4];
1266     U32 l;
1267
1268     memset(&t1,0x00,sizeof(TAG));
1269     t1.data    = (U8*)b;
1270     t1.memsize = 64;
1271     
1272     { // measure header file size
1273       TAG t2;
1274       char b2[64];
1275       memset(&t2,0x00,sizeof(TAG));
1276       t2.data    = (U8*)b2;
1277       t2.memsize = 64;
1278       swf_SetRect(&t2, &swf->movieSize);
1279       swf_SetU16(&t2, swf->frameRate);
1280       swf_SetU16(&t2, swf->frameCount);
1281       l = swf_GetTagLen(&t2)+8;
1282     }
1283     if(swf->compressed == 8) {
1284       l -= 8;
1285     }
1286
1287     fileSize = l+len;
1288     if(len) {// don't touch headers without tags
1289         swf->fileSize = fileSize;
1290         swf->frameCount = frameCount;
1291     }
1292
1293     if(swf->compressed != 8) {
1294     /* compressed flag set to 8 means "skip first 8 
1295        header bytes". This is necessary if the caller wants to
1296        create compressed SWFs himself .
1297        It also means that we don't initialize our own zlib
1298        writer, but assume the caller provided one.
1299      */
1300       if(swf->compressed) {
1301         char*id = "CWS";
1302         writer->write(writer, id, 3);
1303       }
1304       else {
1305         char*id = "FWS";
1306         writer->write(writer, id, 3);
1307       }
1308
1309       writer->write(writer, &swf->fileVersion, 1);
1310       PUT32(b4, swf->fileSize);
1311       writer->write(writer, b4, 4);
1312       
1313       if(swf->compressed) {
1314         writer_init_zlibdeflate(&zwriter, writer);
1315         writer = &zwriter;
1316       }
1317     }
1318
1319     swf_SetRect(&t1,&swf->movieSize);
1320     swf_SetU16(&t1,swf->frameRate);
1321     swf_SetU16(&t1,swf->frameCount);
1322
1323     ret = writer->write(writer,b,swf_GetTagLen(&t1));
1324     if (ret!=swf_GetTagLen(&t1))
1325     {
1326       #ifdef DEBUG_RFXSWF
1327         fprintf(stderr, "ret:%d\n",ret);
1328         perror("write:");
1329         fprintf(stderr,"WriteSWF() failed: Header.\n");
1330       #endif
1331       return -1;
1332     }
1333
1334     t = swf->firstTag;
1335     while (t)
1336     { if (swf_WriteTag2(writer, t)<0) return -1;
1337       t = swf_NextTag(t);
1338     }
1339     if(swf->compressed) {
1340       if(swf->compressed != 8) {
1341         zwriter.finish(&zwriter);
1342         return writer->pos - writer_lastpos;
1343       }
1344       return (int)fileSize;
1345     } else {
1346       return (int)fileSize;
1347     }
1348   }
1349 }
1350
1351 int  swf_WriteSWF(int handle, SWF * swf)     // Writes SWF to file, returns length or <0 if fails
1352 {
1353   struct writer_t writer;
1354   int len = 0;
1355   swf->compressed = 0;
1356   
1357   if(handle<0) {
1358     writer_init_nullwriter(&writer);
1359     len = swf_WriteSWF2(&writer, swf);
1360     return len;
1361   }
1362   writer_init_filewriter(&writer, handle);
1363   len = swf_WriteSWF2(&writer, swf);
1364   writer.finish(&writer);
1365   return len;
1366 }
1367
1368 int  swf_WriteSWC(int handle, SWF * swf)     // Writes SWF to file, returns length or <0 if fails
1369 {
1370   struct writer_t writer;
1371   int len = 0;
1372   swf->compressed = 1;
1373
1374   if(handle<0) {
1375     writer_init_nullwriter(&writer);
1376     len = swf_WriteSWF2(&writer, swf);
1377   }
1378   writer_init_filewriter(&writer, handle);
1379   len = swf_WriteSWF2(&writer, swf);
1380   writer.finish(&writer);
1381   return len;
1382 }
1383
1384 int swf_WriteHeader2(struct writer_t*writer,SWF * swf)
1385 {
1386   SWF myswf;
1387   memcpy(&myswf,swf,sizeof(SWF));
1388   myswf.firstTag = 0;
1389   return swf_WriteSWF2(writer, &myswf);
1390 }
1391
1392 int swf_WriteHeader(int handle,SWF * swf)
1393 {
1394   SWF myswf;
1395   memcpy(&myswf,swf,sizeof(SWF));
1396   myswf.firstTag = 0;
1397   return swf_WriteSWF(handle, &myswf);
1398 }
1399
1400 int swf_WriteCGI(SWF * swf)
1401 { int len;
1402   char s[1024];
1403     
1404   len = swf_WriteSWF(-1,swf);
1405
1406   if (len<0) return -1;
1407
1408   sprintf(s,"Content-type: application/x-shockwave-flash\n"
1409             "Accept-Ranges: bytes\n"
1410             "Content-Length: %lu\n"
1411             "Expires: Thu, 13 Apr 2000 23:59:59 GMT\n"
1412             "\n",len);
1413             
1414   write(fileno(stdout),s,strlen(s));
1415   return swf_WriteSWF(fileno(stdout),swf);
1416 }
1417
1418 SWF* swf_CopySWF(SWF*swf)
1419 {
1420     SWF*nswf = rfx_alloc(sizeof(SWF));
1421     TAG*tag, *ntag;
1422     memcpy(nswf, swf, sizeof(SWF));
1423     nswf->firstTag = 0;
1424     tag = swf->firstTag;
1425     ntag = 0;
1426     while(tag) {
1427         ntag = swf_CopyTag(ntag, tag);
1428         if(!nswf->firstTag)
1429             nswf->firstTag = ntag;
1430         tag = tag->next;
1431     }
1432     return nswf;
1433 }
1434
1435 void swf_FreeTags(SWF * swf)                 // Frees all malloc'ed memory for tags
1436 { TAG * t = swf->firstTag;
1437
1438   while (t)
1439   { TAG * tnew = t->next;
1440     if (t->data) rfx_free(t->data);
1441     rfx_free(t);
1442     t = tnew;
1443   }
1444   swf->firstTag = 0;
1445 }
1446
1447 // include advanced functions
1448
1449 #include "modules/swfdump.c"
1450 #include "modules/swfshape.c"
1451 #include "modules/swftext.c"
1452 #include "modules/swffont.c"
1453 #include "modules/swfobject.c"
1454 #include "modules/swfbutton.c"
1455 #include "modules/swftools.c"
1456 #include "modules/swfcgi.c"
1457 #include "modules/swfbits.c"
1458 #include "modules/swfaction.c"
1459 #include "modules/swfsound.c"
1460 #include "modules/swfdraw.c"
1461 #include "modules/swfrender.c"