take placeobject matrix into account when bitmap-filling
[swftools.git] / lib / readers / swf.c
1 #include <assert.h>
2 #include "../gfxdevice.h"
3 #include "../gfxsource.h"
4 #include "../gfxtools.h"
5 #include "../log.h"
6 #include "../mem.h"
7 #include "../png.h"
8 #include "../rfxswf.h"
9 #include "swf.h"
10
11 typedef struct _map16_t
12 {
13     void** ids;
14 } map16_t;
15
16 typedef struct _swf_page_internal
17 {
18     int frame;
19 } swf_page_internal_t;
20
21 typedef struct _swf_doc_internal
22 {
23     map16_t*id2char;
24     int clips;
25     SWF swf;
26     int width,height;
27     MATRIX m;
28 } swf_doc_internal_t;
29
30 #define TYPE_SHAPE 1
31 #define TYPE_BITMAP 2
32 #define TYPE_SPRITE 3
33 #define TYPE_FONT 4
34 #define TYPE_TEXT 5
35
36 typedef struct _character
37 {
38     U16 id;
39     TAG*tag;
40     char type;
41     void*data;
42 } character_t;
43
44 typedef struct _placement
45 {
46     SWFPLACEOBJECT po;
47     int age;
48     int startFrame;
49 } placement_t;
50
51 typedef struct _sprite
52 {
53     int frameCount;
54 } sprite_t;
55
56 struct _render
57 {
58     map16_t*id2char;
59     gfxdevice_t*device;
60     MATRIX m;
61     int clips;
62     int*clips_waiting;
63 };
64 typedef struct _render render_t;
65
66
67 static void placement_free(placement_t*p)
68 {
69     swf_PlaceObjectFree(&p->po);
70     free(p);
71 }
72
73 //---- object/depth handling ----
74
75 map16_t* map16_new()
76 {
77     map16_t*map = rfx_calloc(sizeof(map16_t));
78     /* TODO: replace this by a more sophisticated data structure */
79     map->ids = (void**)rfx_calloc(sizeof(character_t)*65536);
80     return map;
81 }
82 character_t*map16_get_id(map16_t*map, int id)
83 {
84     if(id<0 || id>=65536)
85         return 0;
86     return map->ids[id];
87 }
88 void map16_free(map16_t*map)
89 {
90     free(map->ids);
91 }
92 void map16_add_id(map16_t*map, int nr, void*id)
93 {
94     if(map->ids[nr])
95         fprintf(stderr, "Warning: ID %d defined more than once\n");
96     map->ids[nr] = id;
97 }
98 void map16_remove_id(map16_t*map, int nr)
99 {
100     map->ids[nr] = 0;
101 }
102 void map16_enumerate(map16_t*map, void (*f)(void*self, int id, void*data), void*self)
103 {
104     int t;
105     for(t=0;t<65536;t++) {
106         if(map->ids[t]) {
107             f(self, t, map->ids[t]);
108         }
109     }
110 }
111 //---- conversion stuff ----
112
113 static void convertMatrix(MATRIX*from, gfxmatrix_t*to)
114 {
115     to->m00 = from->sx / 65536.0; to->m10 = from->r1 / 65536.0;
116     to->m01 = from->r0 / 65536.0; to->m11 = from->sy / 65536.0;
117     to->tx = from->tx/20.0;
118     to->ty = from->ty/20.0;
119 }
120
121 static void convertCXForm(CXFORM*from, gfxcxform_t*to)
122 {
123     memset(to, 0, sizeof(gfxcxform_t));
124     to->aa = from->a0 / 256.0;
125     to->rr = from->r0 / 256.0;
126     to->gg = from->g0 / 256.0;
127     to->bb = from->b0 / 256.0;
128     to->ta = from->a1;
129     to->tr = from->r1;
130     to->tg = from->g1;
131     to->tb = from->b1;
132 }
133
134 static gfxgradient_t* convertGradient(GRADIENT*from)
135 {
136     gfxgradient_t*g = rfx_calloc(from->num * sizeof(gfxgradient_t));
137     int t;
138     for(t=0;t<from->num;t++) {
139         g[t].pos = from->ratios[t] / 255.0;
140         g[t].color = *(gfxcolor_t*)&from->rgba[t];
141         if(t<from->num-1)
142             g[t].next = &g[t+1];
143         else
144             g[t].next = 0;
145     }
146     return g;
147 }
148
149 gfxline_t* swfline_to_gfxline(SHAPELINE*line, int linestyle, int fillstyle0)
150 {
151     gfxdrawer_t d;
152     SCOORD x=0,y=0;
153     gfxline_t*l;
154     gfxdrawer_target_gfxline(&d);
155     if(line && line->type != moveTo) {
156         fprintf(stderr, "Warning: Shape doesn't start with a moveTo\n");
157     }
158     while(line) {
159         if(line->fillstyle0 == fillstyle0 || line->fillstyle1 == fillstyle0 || 
160            line->linestyle == linestyle) {
161             if(line->type == lineTo) {
162                 d.moveTo(&d, x/20.0,y/20.0);
163                 d.lineTo(&d, line->x/20.0,line->y/20.0);
164             } else if(line->type == splineTo) {
165                 d.moveTo(&d, x/20.0,y/20.0);
166                 d.splineTo(&d, line->sx/20.0, line->sy/20.0, line->x/20.0,line->y/20.0);
167             }
168         }
169         x = line->x;
170         y = line->y;
171         line = line->next;
172     }
173     l = d.result(&d);    
174     return l;
175 }
176
177
178 //---- bitmap handling ----
179
180 gfximage_t* gfximage_new(RGBA*data, int width, int height)
181 {
182     gfximage_t* b = (gfximage_t*)rfx_calloc(sizeof(gfximage_t));
183     b->data = (gfxcolor_t*)data;
184     b->width = width;
185     b->height = height;
186     return b;
187 }
188
189 void gfximage_free(gfximage_t*b)
190 {
191     free(b->data); //!
192     b->data = 0;
193     free(b);
194 }
195
196 static gfximage_t* findimage(render_t*r, U16 id)
197 {
198     character_t*c = (character_t*)map16_get_id(r->id2char, id);
199     assert(c && c->type == TYPE_BITMAP);
200     gfximage_t*img = (gfximage_t*)c->data;
201
202     /*char filename[80];
203     sprintf(filename, "bitmap%d.png", id);
204     writePNG(filename, (unsigned char*)img->data, img->width, img->height);
205     printf("saving bitmap %d to %s\n", id, filename);*/
206
207     return c->data;
208 }
209 //---- shape handling ----
210
211 static void renderFilled(render_t*r, gfxline_t*line, FILLSTYLE*f, CXFORM*cx, MATRIX*po_m)
212 {
213     if(f->type == FILL_SOLID) {
214         gfxcolor_t c = *(gfxcolor_t*)&f->color;
215         r->device->fill(r->device, line, &c);
216     } else if(f->type == FILL_TILED || f->type == FILL_CLIPPED) {
217         gfximage_t* img = findimage(r, f->id_bitmap);
218         gfxmatrix_t m;
219         gfxcxform_t gfxcx;
220         convertCXForm(cx, &gfxcx);
221         MATRIX m2;
222         swf_MatrixJoin(&m2, po_m, &f->m);
223         swf_DumpMatrix(stdout, &m2);
224         convertMatrix(&m2, &m);
225         m.m00/=20.0; m.m10/=20.0;
226         m.m01/=20.0; m.m11/=20.0;
227         /* TODO: handle clipped */
228         r->device->fillbitmap(r->device, line, img, &m, &gfxcx);
229     } else if(f->type == FILL_LINEAR || f->type == FILL_RADIAL) {
230         gfxmatrix_t m;
231         gfxgradient_t* g;
232         convertMatrix(&f->m, &m);
233         g = convertGradient(&f->gradient);
234         r->device->fillgradient(r->device, line, g, f->type == FILL_LINEAR ? gfxgradient_linear : gfxgradient_radial, &m);
235         free(g);
236     }
237 }
238
239 //---- font handling ----
240
241 typedef struct
242 {
243     int numchars;
244     gfxline_t**glyphs;
245 } font_t;
246         
247 typedef struct textcallbackblock
248 {
249     render_t*r;
250     MATRIX m;
251 } textcallbackblock_t;
252
253 static void textcallback(void*self, int*chars, int*xpos, int nr, int fontid, int fontsize, 
254                     int xstart, int ystart, RGBA* color)
255 {
256     textcallbackblock_t * info = (textcallbackblock_t*)self;
257     font_t*font = 0;
258     int t;
259     character_t*cfont = map16_get_id(info->r->id2char, fontid);
260     if(!cfont) {
261         fprintf(stderr, "Font %d unknown\n", fontid);
262         return;
263     }
264     if(cfont->type != TYPE_FONT) {
265         fprintf(stderr, "ID %d is not a font\n", fontid);
266         return;
267     }
268     font = cfont->data;
269
270     for(t=0;t<nr;t++) {
271         int x = xstart + xpos[t];
272         int y = ystart;
273         MATRIX m = info->m;
274         SPOINT p;
275         
276         p.x = x; p.y = y; 
277         p = swf_TurnPoint(p, &m);
278         
279         m.sx = (m.sx * fontsize) / 1024;
280         m.sy = (m.sy * fontsize) / 1024;
281         m.r0 = (m.r0 * fontsize) / 1024;
282         m.r1 = (m.r1 * fontsize) / 1024;
283         m.tx = p.x;
284         m.ty = p.y;
285
286         gfxmatrix_t gm;
287         convertMatrix(&m, &gm);
288
289         if(chars[t]<0 || chars[t]>= font->numchars) {
290             fprintf(stderr, "Character out of range: %d\n", chars[t]);
291         } else {
292             gfxline_t*line = gfxline_clone(font->glyphs[chars[t]]);
293             gfxline_transform(line, &gm);
294             FILLSTYLE f;
295             f.type = FILL_SOLID;
296             f.color = *color;
297             renderFilled(info->r, line, &f, 0, 0);
298             gfxline_free(line);
299         }
300     }
301 }
302
303
304 //---- tag handling ----
305
306 static map16_t* extractDefinitions(SWF*swf)
307 {
308     map16_t*map = map16_new();
309     TAG*tag = swf->firstTag;
310     while(tag)
311     {
312         int id = 0;
313         if(swf_isDefiningTag(tag)) {
314             id = swf_GetDefineID(tag);
315         }
316
317         if(tag->id == ST_DEFINESPRITE) {
318             character_t*c = rfx_calloc(sizeof(character_t));
319             sprite_t*s = rfx_calloc(sizeof(sprite_t));
320             swf_SetTagPos(tag, 0);
321             swf_GetU16(tag); //id
322             s->frameCount = swf_GetU16(tag); //frameno
323             c->tag = tag;
324             c->type = TYPE_SPRITE;
325             c->data = s;
326             map16_add_id(map, id, c);
327         }
328         else if(tag->id == ST_DEFINESHAPE ||
329                 tag->id == ST_DEFINESHAPE2 ||
330                 tag->id == ST_DEFINESHAPE3) {
331             character_t*c = rfx_calloc(sizeof(character_t));
332             c->tag = tag;
333             c->type = TYPE_SHAPE;
334             map16_add_id(map, id, c);
335         }
336         else if(tag->id == ST_DEFINEFONT ||
337                 tag->id == ST_DEFINEFONT2) {
338             character_t*c = rfx_calloc(sizeof(character_t));
339             SWFFONT*swffont = 0;
340             font_t*font = (font_t*)rfx_calloc(sizeof(font_t));
341             swf_FontExtract(swf, id, &swffont);
342             font->numchars = swffont->numchars;
343             font->glyphs = (gfxline_t**)rfx_calloc(sizeof(gfxline_t*)*font->numchars);
344             int t;
345             RGBA color_white = {255,255,255,255};
346             for(t=0;t<font->numchars;t++) {
347                 if(!swffont->glyph[t].shape->fillstyle.n) {
348                     swf_ShapeAddSolidFillStyle(swffont->glyph[t].shape, &color_white);
349                 }
350                 SHAPE2*s2 = swf_ShapeToShape2(swffont->glyph[t].shape);
351                 font->glyphs[t] = swfline_to_gfxline(s2->lines, 0, 1);
352                 swf_Shape2Free(s2);
353             }
354             swf_FontFree(swffont);
355
356             c->tag = tag;
357             c->type = TYPE_FONT;
358             c->data = font;
359             map16_add_id(map, id, c);
360         }
361         else if(tag->id == ST_DEFINETEXT ||
362                 tag->id == ST_DEFINETEXT2) {
363             character_t*c = rfx_calloc(sizeof(character_t));
364             c->tag = tag;
365             c->type = TYPE_TEXT;
366             c->data = 0;
367             map16_add_id(map, id, c);
368         }
369         else if(tag->id == ST_DEFINEBITSJPEG || 
370                 tag->id == ST_DEFINEBITSJPEG2 || 
371                 tag->id == ST_DEFINEBITSJPEG3 ||
372                 tag->id == ST_DEFINEBITSLOSSLESS || 
373                 tag->id == ST_DEFINEBITSLOSSLESS2) {
374             character_t*c = rfx_calloc(sizeof(character_t));
375             int width, height;
376             void*data = swf_ExtractImage(tag, &width, &height);
377             gfximage_t*b = gfximage_new(data, width, height);
378             c->tag = tag;
379             c->type = TYPE_BITMAP;
380             c->data = b;
381             map16_add_id(map, id, c);
382         }
383
384         tag = tag->next;
385     }
386     return map;
387 }
388
389 void swf_FreeTaglist(TAG*tag)
390
391     while(tag)
392     { 
393         TAG * tnew = tag->next;
394         if (tag->data) 
395             rfx_free(tag->data);
396         rfx_free(tag);
397         tag = tnew;
398     }
399 }
400
401 static void increaseAge(void*self, int id, void*data)
402 {
403     placement_t*p = (placement_t*)data;
404     p->age++;
405 }
406
407 static map16_t* extractFrame(TAG*startTag, int frame_to_extract)
408 {
409     map16_t*depthmap = map16_new();
410     TAG*tag = startTag;
411     int frame = 1;
412     int insprite = 0;
413     for(;tag;tag = tag->next) {
414         if(tag->id == ST_END) 
415             break;
416         if(tag->id == ST_DEFINESPRITE) {
417             while(tag->id != ST_END)
418                 tag = tag->next;
419             continue;
420         }
421         if(tag->id == ST_PLACEOBJECT ||
422            tag->id == ST_PLACEOBJECT2) {
423             placement_t* p = rfx_calloc(sizeof(placement_t));
424             p->age = 1;
425             p->startFrame = frame;
426             swf_GetPlaceObject(tag, &p->po);
427             if(p->po.move) {
428                 placement_t*old = (placement_t*)map16_get_id(depthmap, p->po.depth);
429                 p->po.id = old->po.id;
430                 map16_remove_id(depthmap, p->po.depth);
431                 placement_free(p);
432             } else {
433                 map16_add_id(depthmap, p->po.depth, p);
434             }
435         }
436         if(tag->id == ST_REMOVEOBJECT ||
437            tag->id == ST_REMOVEOBJECT2) {
438             U16 depth = swf_GetDepth(tag);
439             map16_remove_id(depthmap, depth);
440         }
441         if(tag->id == ST_SHOWFRAME || tag->id == ST_END) {
442             if(frame == frame_to_extract) {
443                 return depthmap;
444             }
445             if(tag->id == ST_SHOWFRAME) {
446                 frame++;
447                 map16_enumerate(depthmap, increaseAge, 0);
448             }
449         }
450     }
451     fprintf(stderr, "gfxsource_swf: frame %d not found\n", frame_to_extract);
452     return depthmap;
453 }
454
455 // ---- rendering ----
456
457 static void stopClippings(int from, render_t*r)
458 {
459     int t;
460     for(t=from;t<r->clips;t++)
461         r->device->endclip(r->device);
462     r->clips = from;
463 }
464
465 void swf_ShapeApplyMatrix(SHAPE2*shape, MATRIX*m)
466 {
467 }
468
469 RGBA swf_ColorTransform(RGBA*color, CXFORM*cx)
470 {
471     RGBA dest;
472     dest.r = (cx->r0*color->r + cx->r1*256) >> 8;
473     dest.g = (cx->g0*color->g + cx->g1*256) >> 8;
474     dest.b = (cx->b0*color->b + cx->b1*256) >> 8;
475     dest.a = (cx->a0*color->a + cx->a1*256) >> 8;
476     return dest;
477 }
478
479 void renderOutline(render_t*r, gfxline_t*line, LINESTYLE*l, CXFORM*cx)
480 {
481     RGBA c = swf_ColorTransform(&l->color, cx);
482     gfxcoord_t width = l->width/20.0;
483     r->device->stroke(r->device, line, width, (gfxcolor_t*)&c, gfx_capRound, gfx_joinRound, 0.0);
484 }
485
486 void swf_ApplyMatrixToShape(SHAPE2*shape, MATRIX*m)
487 {
488     SHAPELINE*line = shape->lines;
489     while(line) {
490         SPOINT p;
491         p.x = line->x; p.y = line->y;
492         p = swf_TurnPoint(p, m);
493         line->x = p.x; line->y = p.y;
494         line = line->next;
495     }
496 }
497
498 static void renderCharacter(render_t*r, placement_t*p, character_t*c)
499 {
500     if(c->type == TYPE_SHAPE) {
501         SHAPE2 shape;
502         swf_ParseDefineShape(c->tag, &shape);
503         MATRIX m;
504         swf_MatrixJoin(&m, &r->m, &p->po.matrix);
505         swf_ApplyMatrixToShape(&shape, &m);
506         SHAPELINE*line = shape.lines;
507         int t;
508         for(t=1;t<=shape.numfillstyles;t++) {
509            gfxline_t*line;
510            line = swfline_to_gfxline(shape.lines, -1, t);
511            if(line) {
512                if(!p->po.clipdepth) {
513                    renderFilled(r, line, &shape.fillstyles[t-1], &p->po.cxform, &p->po.matrix);
514                } else { 
515                    r->device->startclip(r->device, line);
516                    r->clips_waiting[p->po.clipdepth]++;
517                    r->clips++;
518                }
519            }
520            gfxline_free(line);
521            /*line = swfline_to_gfxline(shape.lines, -1, -1, t);
522            if(line) renderFilled(r, line, &shape.fillstyles[t-1], &p->po.cxform);
523            gfxline_free(line);*/
524         }
525         for(t=1;t<=shape.numlinestyles;t++) {
526            gfxline_t*line = swfline_to_gfxline(shape.lines, t, -1);
527            if(line) renderOutline(r, line, &shape.linestyles[t-1], &p->po.cxform);
528            gfxline_free(line);
529         }
530     } else if(c->type == TYPE_TEXT) {
531         TAG* tag = c->tag;
532         textcallbackblock_t info;
533         MATRIX mt,mt2;
534         swf_SetTagPos(tag, 0);
535         swf_GetU16(tag);
536         swf_GetRect(tag,0);
537         swf_GetMatrix(tag,&mt);
538
539         swf_MatrixJoin(&mt2, &r->m, &mt);
540         swf_MatrixJoin(&info.m, &mt2, &p->po.matrix);
541         info.r = r;
542         swf_ParseDefineText(tag, textcallback, &info);
543     }
544 }
545
546 // ---- main ----
547
548 static void placeObject(void*self, int id, void*data)
549 {
550     render_t*r = (render_t*)self;
551     placement_t*p = (placement_t*)data;
552     character_t*c = map16_get_id(r->id2char, p->po.id);
553     if(!c)  {
554         fprintf(stderr, "Error: ID %d unknown\n", p->po.id);
555         return;
556     }
557     if(c->type == TYPE_SPRITE) {
558         int oldclip = r->clips;
559         sprite_t* s = (sprite_t*)c->data;
560         map16_t* depths = extractFrame(c->tag, p->age % s->frameCount);
561         map16_enumerate(depths, placeObject, r);
562         stopClippings(oldclip, r);
563         return;
564     }
565     renderCharacter(r, p, c);
566 }
567
568 void swfpage_destroy(gfxpage_t*swf_page)
569 {
570     swf_page_internal_t*i= (swf_page_internal_t*)swf_page->internal;
571     free(swf_page->internal);swf_page->internal = 0;
572     free(swf_page);swf_page=0;
573 }
574
575 void swfpage_render(gfxpage_t*page, gfxdevice_t*output)
576 {
577     swf_page_internal_t*i = (swf_page_internal_t*)page->internal;
578     swf_doc_internal_t*pi = (swf_doc_internal_t*)page->parent->internal;
579     map16_t* depths = extractFrame(pi->swf.firstTag, i->frame);
580     render_t r;
581     r.id2char = pi->id2char;
582     r.clips = 0;
583     r.device = output;
584     r.m = pi->m;
585     r.clips_waiting = malloc(sizeof(r.clips_waiting[0])*65536);
586     memset(r.clips_waiting, 0, sizeof(r.clips_waiting[0])*65536);
587
588     int t;
589     for(t=0;t<65536;t++) {
590         int i;
591         for(i=0; i<r.clips_waiting[t]; i++) {
592             output->endclip(output);
593         }
594         if(depths->ids[t]) {
595             placeObject(&r, t, depths->ids[t]);
596         }
597     }
598     free(r.clips_waiting);
599 }
600
601 void swfpage_rendersection(gfxpage_t*page, gfxdevice_t*output, gfxcoord_t x, gfxcoord_t y, gfxcoord_t _x1, gfxcoord_t _y1, gfxcoord_t _x2, gfxcoord_t _y2)
602 {
603     swf_doc_internal_t*pi = (swf_doc_internal_t*)page->parent->internal;
604     /* FIXME */
605     swfpage_render(page,output);
606 }
607
608 void swf_doc_destroy(gfxdocument_t*gfx)
609 {
610     swf_doc_internal_t*i= (swf_doc_internal_t*)gfx->internal;
611     swf_FreeTags(&i->swf);
612     free(gfx->internal);gfx->internal=0;
613     free(gfx);gfx=0;
614 }
615
616 void swf_doc_set_parameter(gfxdocument_t*gfx, const char*name, const char*value)
617 {
618     swf_doc_internal_t*i= (swf_doc_internal_t*)gfx->internal;
619 }
620
621 gfxpage_t* swf_doc_getpage(gfxdocument_t*doc, int page)
622 {
623     swf_doc_internal_t*di= (swf_doc_internal_t*)doc->internal;
624     if(page < 1 || page > doc->num_pages)
625         return 0;
626     
627     gfxpage_t* swf_page = (gfxpage_t*)malloc(sizeof(gfxpage_t));
628     swf_page_internal_t*pi= (swf_page_internal_t*)malloc(sizeof(swf_page_internal_t));
629     memset(pi, 0, sizeof(swf_page_internal_t));
630
631     pi->frame = page;
632
633     swf_page->internal = pi;
634     swf_page->destroy = swfpage_destroy;
635     swf_page->render = swfpage_render;
636     swf_page->rendersection = swfpage_rendersection;
637     swf_page->width = di->width;
638     swf_page->height = di->height;
639     swf_page->parent = doc;
640     swf_page->nr = page;
641     return swf_page;
642 }
643
644 void swf_set_parameter(gfxsource_t*src, const char*name, const char*value)
645 {
646     msg("<verbose> setting parameter %s to \"%s\"", name, value);
647 }
648
649 gfxdocument_t*swf_open(gfxsource_t*src, const char*filename)
650 {
651     gfxdocument_t*swf_doc = (gfxdocument_t*)malloc(sizeof(gfxdocument_t));
652     memset(swf_doc, 0, sizeof(gfxdocument_t));
653     swf_doc_internal_t*i= (swf_doc_internal_t*)malloc(sizeof(swf_doc_internal_t));
654     memset(i, 0, sizeof(swf_doc_internal_t));
655
656     TAG*tag = 0;
657     int f;
658     int frame;
659     render_t r;
660     gfxdevice_t d;
661     
662     if(!filename) {
663         return 0;
664     }
665     f = open(filename,O_RDONLY|O_BINARY);
666     if (f<0) { 
667         perror("Couldn't open file: ");
668         return 0;
669     }
670     if FAILED(swf_ReadSWF(f,&i->swf)) { 
671         fprintf(stderr, "%s is not a valid SWF file or contains errors.\n",filename);
672         close(f);
673         return 0;
674     }
675     swf_UnFoldAll(&i->swf);
676     
677     i->id2char = extractDefinitions(&i->swf);
678     i->width = (i->swf.movieSize.xmax - i->swf.movieSize.xmin) / 20;
679     i->height = (i->swf.movieSize.ymax - i->swf.movieSize.ymin) / 20;
680     
681     swf_GetMatrix(0, &i->m);
682     i->m.tx = -i->swf.movieSize.xmin;
683     i->m.ty = -i->swf.movieSize.ymin;
684
685     swf_doc->num_pages = i->swf.frameCount;
686     swf_doc->internal = i;
687     swf_doc->get = 0;
688     swf_doc->destroy = swf_doc_destroy;
689     swf_doc->set_parameter = swf_doc_set_parameter;
690     swf_doc->getpage = swf_doc_getpage;
691
692     return swf_doc;
693 }
694
695 gfxsource_t*gfxsource_swf_create()
696 {
697     gfxsource_t*src = (gfxsource_t*)malloc(sizeof(gfxsource_t));
698     memset(src, 0, sizeof(gfxsource_t));
699     src->set_parameter = swf_set_parameter;
700     src->open = swf_open;
701     return src;
702 }