flash9 tags implementation
[swftools.git] / lib / rfxswf.h
1 /* rfxswf.h
2
3    Headers for rfxswf.c and modules
4
5    Part of the swftools package.
6
7    Copyright (c) 2000, 2001 Rainer Böhme <rfxswf@reflex-studio.de>
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
22
23
24 #ifndef __RFX_SWF_INCLUDED__
25 #define __RFX_SWF_INCLUDED__
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <math.h>
34 #include <string.h>
35 #include <unistd.h>
36 #include <fcntl.h>
37 #include <ctype.h>
38 #include "../config.h"
39 #include "./bitio.h"
40 #include "./drawer.h"
41 #include "./mem.h"
42 #include "./types.h"
43
44 #define DEBUG_RFXSWF
45 #ifdef RFXSWF_DISABLESOUND
46 #define NO_MP3
47 #endif
48
49 typedef         signed long     SFIXED;
50 typedef         signed long     SCOORD;
51
52 #define SCOORD_MAX 0x7fffffff
53 #define SCOORD_MIN -0x80000000
54
55 // Basic Structures
56
57 typedef struct _SPOINT
58 { SCOORD        x;
59   SCOORD        y;
60 } SPOINT;
61
62 typedef struct _RGBA
63 { U8    a;
64   U8    r;
65   U8    g;
66   U8    b;
67 } RGBA;
68
69 typedef struct _YUV
70 {
71   U8    y,u,v;
72 } YUV;
73
74 typedef struct _SRECT
75 { SCOORD        xmin;
76   SCOORD        ymin;
77   SCOORD        xmax;
78   SCOORD        ymax;
79 } SRECT;
80
81 typedef struct _MATRIX
82 { SFIXED        sx,r1, tx;
83   SFIXED        r0,sy, ty;
84 } MATRIX;
85
86 typedef struct _CXFORM
87 { S16           a0, a1; /* mult, add */
88   S16           r0, r1;
89   S16           g0, g1;
90   S16           b0, b1;
91 } CXFORM;
92
93 #define GRADIENT_LINEAR 0x10
94 #define GRADIENT_RADIAL 0x12
95 typedef struct _GRADIENT
96 {
97     int num;
98     U8* ratios;
99     RGBA* rgba;
100 } GRADIENT;
101
102 typedef struct _FILTER
103 {
104     U8 type;
105 } FILTER;
106
107 typedef struct _FILTERLIST
108 {
109     int num;
110     FILTER*filter[8];
111 } FILTERLIST;
112
113 typedef struct _TAG             // NEVER access a Tag-Struct directly !
114 { U16           id;
115   U8 *          data;
116   U32           memsize;        // to minimize realloc() calls
117
118   U32         len;            // for Set-Access
119   U32         pos;            // for Get-Access
120
121   struct _TAG * next;
122   struct _TAG * prev;
123
124   U8            readBit;        // for Bit-Manipulating Functions [read]
125   U8            writeBit;       // [write]
126
127 } TAG;
128
129 #define swf_ResetReadBits(tag)   if (tag->readBit)  { tag->pos++; tag->readBit = 0; }
130 #define swf_ResetWriteBits(tag)  if (tag->writeBit) { tag->writeBit = 0; }
131
132 typedef struct _SOUNDINFO
133 {
134     U8 stop;
135     U8 nomultiple; //continue playing if already started
136
137     U32 inpoint;
138     U32 outpoint;
139
140     U16 loops;
141     U8 envelopes;
142
143     //envelope:
144     U32* pos;
145     U32* left;
146     U32* right;
147 } SOUNDINFO;
148
149 typedef struct _SWF
150 { U8            fileVersion;
151   U8            compressed;     // SWF or SWC?
152   U32           fileSize;       // valid after load and save
153   SRECT         movieSize;
154   U16           frameRate;
155   U16           frameCount;     // valid after load and save
156   TAG *         firstTag;
157 } SWF;
158
159 // Basic Functions
160
161 int  swf_ReadSWF2(reader_t*reader, SWF * swf);   // Reads SWF via callback
162 int  swf_ReadSWF(int handle,SWF * swf);     // Reads SWF to memory (malloc'ed), returns length or <0 if fails
163 int  swf_WriteSWF2(writer_t*writer, SWF * swf);     // Writes SWF via callback, returns length or <0 if fails
164 int  swf_WriteSWF(int handle,SWF * swf);    // Writes SWF to file, returns length or <0 if fails
165 int  swf_WriteSWC(int handle, SWF * swf);   // for convenience, equal to swf->compressed=1;swf_WriteSWF(..)
166 int  swf_WriteCGI(SWF * swf);               // Outputs SWF with valid CGI header to stdout
167 void swf_FreeTags(SWF * swf);               // Frees all malloc'ed memory for swf
168 SWF* swf_CopySWF(SWF*swf);
169
170 // for streaming:
171 int  swf_WriteHeader(int handle,SWF * swf);    // Writes Header of swf to file
172 int  swf_WriteHeader2(writer_t*writer,SWF * swf);    // Writes Header of swf to file
173 int  swf_WriteTag(int handle,TAG * tag);    // Writes TAG to file
174 int  swf_WriteTag2(writer_t*writer, TAG * t); //Write TAG via callback
175
176 int  swf_ReadHeader(reader_t*reader, SWF * swf);   // Reads SWF Header via callback
177
178 // folding/unfolding:
179
180 void swf_FoldAll(SWF*swf);
181 void swf_UnFoldAll(SWF*swf);
182 void swf_FoldSprite(TAG*tag);
183 void swf_UnFoldSprite(TAG*tag);
184 int swf_IsFolded(TAG*tag);
185
186 // tag reordering:
187
188 void swf_OptimizeTagOrder(SWF*swf);
189
190 // basic routines:
191
192 TAG * swf_InsertTag(TAG * after,U16 id);    // updates frames, if necessary
193 TAG * swf_InsertTagBefore(SWF*swf, TAG * before,U16 id);     // like InsertTag, but insert tag before argument
194 int   swf_DeleteTag(TAG * t);
195
196 void  swf_ClearTag(TAG * t);                //frees tag data
197 void  swf_ResetTag(TAG*tag, U16 id);        //set's tag position and length to 0, without freeing it
198 TAG*  swf_CopyTag(TAG*tag, TAG*to_copy);     //stores a copy of another tag into this taglist
199
200 void  swf_SetTagPos(TAG * t,U32 pos);       // resets Bitcount
201 U32   swf_GetTagPos(TAG * t);
202
203 TAG * swf_NextTag(TAG * t);
204 TAG * swf_PrevTag(TAG * t);
205
206 U16   swf_GetTagID(TAG * t);                // ... TagGetID
207 U32   swf_GetTagLen(TAG * t);             // ... TagGetTagLen
208 U8*   swf_GetTagLenPtr(TAG * t);
209
210 U32   swf_GetBits(TAG * t,int nbits);
211 S32   swf_GetSBits(TAG * t,int nbits);
212 int   swf_SetBits(TAG * t,U32 v,int nbits);
213
214 int   swf_GetBlock(TAG * t,U8 * b,int l);   // resets Bitcount
215 int   swf_SetBlock(TAG * t,U8 * b,int l);
216
217 U8    swf_GetU8(TAG * t);                   // resets Bitcount
218 U16   swf_GetU16(TAG * t);
219 #define swf_GetS16(tag)     ((S16)swf_GetU16(tag))
220 U32   swf_GetU32(TAG * t);
221 void  swf_GetRGB(TAG * t, RGBA * col);
222 void  swf_GetRGBA(TAG * t, RGBA * col);
223 void  swf_GetGradient(TAG * t, GRADIENT * gradient, char alpha);
224 void  swf_FreeGradient(GRADIENT* gradient);
225 char* swf_GetString(TAG*t);
226 int   swf_SetU8(TAG * t,U8 v);              // resets Bitcount
227 int   swf_SetU16(TAG * t,U16 v);
228 void  swf_SetS16(TAG * t,int v);
229 int   swf_SetU32(TAG * t,U32 v);
230 #define swf_SetString(t,s)  swf_SetBlock(t,s,strlen(s)+1)
231
232 //int   swf_GetPoint(TAG * t,SPOINT * p);     // resets Bitcount
233 int   swf_GetRect(TAG * t,SRECT * r);
234 int   swf_GetMatrix(TAG * t,MATRIX * m);
235 int   swf_GetCXForm(TAG * t,CXFORM * cx,U8 alpha);
236
237 double swf_GetFixed(TAG * t);
238 void swf_SetFixed(TAG * t, double f);
239 float swf_GetFixed8(TAG * t);
240 void swf_SetFixed8(TAG * t, float f);
241
242 //int   swf_SetPoint(TAG * t,SPOINT * p);     // resets Bitcount
243 int   swf_SetRect(TAG * t,SRECT * r);
244 int   swf_SetMatrix(TAG * t,MATRIX * m);
245 int   swf_SetCXForm(TAG * t,CXFORM * cx,U8 alpha);
246 int   swf_SetRGB(TAG * t,RGBA * col);
247 int   swf_SetRGBA(TAG * t,RGBA * col);
248 void  swf_SetPassword(TAG * t, const char * password);
249
250 int   swf_VerifyPassword(TAG * t, const char * password);
251
252 // helper functions:
253
254 void swf_ExpandRect(SRECT*src, SPOINT add);
255 void swf_ExpandRect2(SRECT*src, SRECT*add);
256 void swf_ExpandRect3(SRECT*src, SPOINT center, int radius);
257 SPOINT swf_TurnPoint(SPOINT p, MATRIX* m);
258 SRECT swf_TurnRect(SRECT r, MATRIX* m);
259
260 #ifndef FAILED
261 #define FAILED(b)       ((b)<0)
262 #endif
263
264 // Tag IDs (adopted from J. C. Kessels' Form2Flash)
265
266 #define ST_END                  0
267 #define ST_SHOWFRAME            1
268 #define ST_DEFINESHAPE          2
269 #define ST_FREECHARACTER        3
270 #define ST_PLACEOBJECT          4
271 #define ST_REMOVEOBJECT         5
272 #define ST_DEFINEBITS           6
273 #define ST_DEFINEBITSJPEG       6
274 #define ST_DEFINEBUTTON         7
275 #define ST_JPEGTABLES           8
276 #define ST_SETBACKGROUNDCOLOR   9
277 #define ST_DEFINEFONT           10
278 #define ST_DEFINETEXT           11
279 #define ST_DOACTION             12
280 #define ST_DEFINEFONTINFO       13
281 #define ST_DEFINESOUND          14 /* Event sound tags. */
282 #define ST_STARTSOUND           15
283 #define ST_DEFINEBUTTONSOUND    17
284 #define ST_SOUNDSTREAMHEAD      18
285 #define ST_SOUNDSTREAMBLOCK     19
286 #define ST_DEFINEBITSLOSSLESS   20 /* A bitmap using lossless zlib compression. */
287 #define ST_DEFINEBITSJPEG2      21 /* A bitmap using an internal JPEG compression table. */
288 #define ST_DEFINESHAPE2         22
289 #define ST_DEFINEBUTTONCXFORM   23
290 #define ST_PROTECT              24 /* This file should not be importable for editing. */
291 #define ST_PLACEOBJECT2         26 /* The new style place w/ alpha color transform and name. */
292 #define ST_REMOVEOBJECT2        28 /* A more compact remove object that omits the character tag (just depth). */
293 #define ST_FREEALL              31 /* ? */
294 #define ST_DEFINESHAPE3         32 /* A shape V3 includes alpha values. */
295 #define ST_DEFINETEXT2          33 /* A text V2 includes alpha values. */
296 #define ST_DEFINEBUTTON2        34 /* A button V2 includes color transform, alpha and multiple actions */
297 #define ST_DEFINEBITSJPEG3      35 /* A JPEG bitmap with alpha info. */
298 #define ST_DEFINEBITSLOSSLESS2  36 /* A lossless bitmap with alpha info. */
299 #define ST_DEFINEEDITTEXT       37
300 #define ST_DEFINEMOVIE          38
301 #define ST_DEFINESPRITE         39 /* Define a sequence of tags that describe the behavior of a sprite. */
302 #define ST_NAMECHARACTER        40 /* Name a character definition, character id and a string, (used for buttons, bitmaps, sprites and sounds). */
303 #define ST_SERIALNUMBER         41
304 #define ST_GENERATORTEXT        42 /* contains an id */
305 #define ST_FRAMELABEL           43 /* A string label for the current frame. */
306 #define ST_SOUNDSTREAMHEAD2     45 /* For lossless streaming sound, should not have needed this... */
307 #define ST_DEFINEMORPHSHAPE     46 /* A morph shape definition */
308 #define ST_DEFINEFONT2          48
309 #define ST_TEMPLATECOMMAND      49
310 #define ST_GENERATOR3           51
311 #define ST_EXTERNALFONT         52
312 #define ST_EXPORTASSETS         56
313 #define ST_IMPORTASSETS         57
314 #define ST_ENABLEDEBUGGER       58
315 #define ST_DOINITACTION         59
316 #define ST_DEFINEVIDEOSTREAM    60
317 #define ST_VIDEOFRAME           61
318 #define ST_DEFINEFONTINFO2      62
319 #define ST_MX4                  63 /*(?) */
320 #define ST_ENABLEDEBUGGER2      64 /* version 8 */
321 #define ST_SCRIPTLIMITS         65 /* version 7- u16 maxrecursedepth, u16 scripttimeoutseconds */
322 #define ST_SETTABINDEX          66 /* version 7- u16 depth(!), u16 tab order value */
323 #define ST_FILEATTRIBUTES       69 /* version 8 (required)- */
324 #define ST_PLACEOBJECT3         70 /* version 8 */
325 #define ST_IMPORTASSETS2        71 /* version 8 */
326 #define ST_DEFINEFONTALIGNZONES 73 /* version 8 */
327 #define ST_CSMTEXTSETTINGS      74 /* version 8 */
328 #define ST_DEFINEFONT3          75 /* version 8 */
329 #define ST_SYMBOLCLASS          76 /* version 9 */
330 #define ST_METADATA             77 /* version 8 */
331 #define ST_DEFINESCALINGGRID    78 /* version 8 */
332 #define ST_DOABC                82 /* version 9 */
333 #define ST_DEFINESHAPE4         83 /* version 8 */
334 #define ST_DEFINEMORPHSHAPE2    84 /* version 8 */
335 #define ST_SCENEDESCRIPTION     86 /* version 9 */
336 #define ST_DEFINEBINARY         87 /* version 9 */
337
338 /* custom tags- only valid for swftools */
339 #define ST_REFLEX              777 /* to identify generator software */
340 #define ST_GLYPHNAMES          778
341
342 // Advanced Funtions
343
344 // swfshape.c
345
346 typedef struct _LINESTYLE
347 { U16           width;
348   RGBA          color;
349 } LINESTYLE;
350
351 #define FILL_SOLID      0x00
352 #define FILL_LINEAR     0x10  // Gradient
353 #define FILL_RADIAL     0x12
354 #define FILL_TILED      0x40  // Bitmap
355 #define FILL_CLIPPED    0x41
356
357 typedef struct _FILLSTYLE
358 { U8        type;
359   RGBA      color;
360   MATRIX    m;
361   U16       id_bitmap;
362   GRADIENT  gradient;
363 } FILLSTYLE;
364
365 typedef struct _SHAPE           // NEVER access a Shape-Struct directly !
366 {
367   struct
368   { LINESTYLE * data;
369     U16         n;
370   } linestyle;
371
372   struct
373   { FILLSTYLE * data;
374     U16         n;
375   } fillstyle;
376
377   struct
378   { U16         fill;
379     U16         line;
380   } bits;
381                                 // used by Get/SetSimpleShape and glyph handling
382   U8 *          data;
383   U32           bitlen;         // length of data in bits
384 } SHAPE;
385
386 /* SHAPE can be converted into SHAPE2: */
387
388 struct _SHAPELINE;
389 typedef struct _SHAPE2
390 {
391     LINESTYLE * linestyles;
392     int numlinestyles;
393     FILLSTYLE* fillstyles;
394     int numfillstyles;
395     struct _SHAPELINE * lines;
396     SRECT* bbox; // may be NULL
397 } SHAPE2;
398
399 typedef struct _SHAPELINE
400 {
401     enum {moveTo, lineTo, splineTo} type;
402     SCOORD x,y;
403     SCOORD sx,sy; //only if type==splineTo
404     int fillstyle0;
405     int fillstyle1;
406     int linestyle;
407     struct _SHAPELINE * next;
408 } SHAPELINE;
409
410 // Shapes
411
412 int   swf_ShapeNew(SHAPE ** s);
413 void  swf_ShapeFree(SHAPE * s);
414
415 int   swf_GetSimpleShape(TAG * t,SHAPE ** s); // without Linestyle/Fillstyle Record
416 int   swf_SetSimpleShape(TAG * t,SHAPE * s);   // without Linestyle/Fillstyle Record
417
418 int   swf_ShapeAddLineStyle(SHAPE * s,U16 width,RGBA * color);
419 int   swf_ShapeAddSolidFillStyle(SHAPE * s,RGBA * color);
420 int   swf_ShapeAddBitmapFillStyle(SHAPE * s,MATRIX * m,U16 id_bitmap,int clip);
421 int   swf_ShapeAddGradientFillStyle(SHAPE * s,MATRIX * m,GRADIENT* gradient,int radial);
422 int   swf_ShapeAddFillStyle2(SHAPE * s,FILLSTYLE*fs);
423
424 int   swf_SetShapeStyles(TAG * t,SHAPE * s);
425 int   swf_ShapeCountBits(SHAPE * s,U8 * fbits,U8 * lbits);
426 int   swf_SetShapeBits(TAG * t,SHAPE * s);
427 int   swf_SetShapeHeader(TAG * t,SHAPE * s); // one call for upper three functions
428
429 int   swf_ShapeSetMove(TAG * t,SHAPE * s,S32 x,S32 y);
430 int   swf_ShapeSetStyle(TAG * t,SHAPE * s,int line,int fill0,int fill1);
431 #define UNDEFINED_COORD 0x7fffffff
432 int   swf_ShapeSetAll(TAG * t,SHAPE * s,S32 x,S32 y,int line,int fill0,int fill1);
433
434 int   swf_ShapeSetLine(TAG * t,SHAPE * s,S32 x,S32 y);
435 int   swf_ShapeSetCurve(TAG * t,SHAPE * s,S32 x,S32 y,S32 ax,S32 ay);
436 int   swf_ShapeSetCircle(TAG * t,SHAPE * s,S32 x,S32 y,S32 rx,S32 ry);
437 int   swf_ShapeSetEnd(TAG * t);
438
439 void  swf_ShapeSetBitmapRect(TAG * t, U16 gfxid, int width, int height);
440
441 //SHAPELINE* swf_ParseShapeData(U8*data, int bits, int fillbits, int linebits);
442 SHAPE2*    swf_ShapeToShape2(SHAPE*shape);
443 void       swf_Shape2ToShape(SHAPE2*shape2, SHAPE*shape);
444 SRECT      swf_GetShapeBoundingBox(SHAPE2*shape);
445 void        swf_SetShape2(TAG*tag, SHAPE2*shape);
446 SHAPE2*    swf_Shape2Clone(SHAPE2 * s);
447 void       swf_Shape2Free(SHAPE2 * s);
448 void    swf_DumpShape(SHAPE2*shape2);
449
450 void swf_ParseDefineShape(TAG*tag, SHAPE2*shape);
451 void swf_SetShape2(TAG*tag, SHAPE2*shape2);
452
453 void swf_RecodeShapeData(U8*data, int bitlen, int in_bits_fill, int in_bits_line,
454                          U8**destdata, U32*destbitlen, int out_bits_fill, int out_bits_line);
455
456 // swfdraw.c
457
458 void swf_Shape10DrawerInit(drawer_t*draw, TAG*tag);
459 void swf_Shape01DrawerInit(drawer_t*draw, TAG*tag);
460 void swf_Shape11DrawerInit(drawer_t*draw, TAG*tag);
461 SHAPE* swf_ShapeDrawerToShape(drawer_t*draw);
462 SRECT swf_ShapeDrawerGetBBox(drawer_t*draw);
463
464 void swf_DrawString(drawer_t*draw, const char*source);
465
466 // swftext.c
467
468 typedef struct _KERNING
469 {
470   U16         char1;
471   U16         char2;
472   U16         adjustment;
473 } SWFKERNING;
474
475 typedef struct _SWFLAYOUT
476 { S16          ascent;
477   S16          descent;
478   S16          leading;
479   SRECT      * bounds;
480   U16          kerningcount;
481   SWFKERNING * kerning;
482 } SWFLAYOUT;
483
484 typedef struct
485 { S16         advance;
486   SHAPE *     shape;
487 } SWFGLYPH;
488
489 typedef struct _FONTUSAGE
490 { int* chars;
491   char is_reduced;
492   int used_glyphs;
493 } FONTUSAGE;
494
495 #define FONT_STYLE_BOLD 1
496 #define FONT_STYLE_ITALIC 2
497 #define FONT_ENCODING_UNICODE 1
498 #define FONT_ENCODING_ANSI 2
499 #define FONT_ENCODING_SHIFTJIS 4
500
501 typedef struct _SWFFONT
502 { int           id; // -1 = not set
503   U8            version; // 0 = not set, 1 = definefont, 2 = definefont2
504   U8 *          name;
505   SWFLAYOUT *   layout;
506   U16           numchars;
507   U16           maxascii; // highest mapped ascii value
508
509   U8            style;
510   U8            encoding;
511
512   U16   *       glyph2ascii;
513   int   *       ascii2glyph;
514   SWFGLYPH *    glyph;
515   U8            language;
516   char **       glyphnames;
517
518   FONTUSAGE *   use;
519
520 } SWFFONT;
521
522
523 #define ET_HASTEXT 32768
524 #define ET_WORDWRAP 16384
525 #define ET_MULTILINE 8192
526 #define ET_PASSWORD 4096
527 #define ET_READONLY 2048
528 #define ET_HASTEXTCOLOR 1024
529 #define ET_HASMAXLENGTH 512
530 #define ET_HASFONT 256
531 #define ET_X3 128
532 #define ET_AUTOSIZE 64 /* MX */
533 #define ET_HASLAYOUT 32
534 #define ET_NOSELECT 16
535 #define ET_BORDER 8
536 #define ET_X1 4
537 #define ET_HTML 2 /* MX? */
538 #define ET_USEOUTLINES 1
539
540 #define ET_ALIGN_LEFT 0
541 #define ET_ALIGN_RIGHT  1
542 #define ET_ALIGN_CENTER 2
543 #define ET_ALIGN_JUSTIFY 3
544
545 typedef struct _EditTextLayout
546 {
547     U8 align; // 0=left, 1=right, 2=center, 3=justify
548     U16 leftmargin;
549     U16 rightmargin;
550     U16 indent;
551     U16 leading;
552 } EditTextLayout;
553
554 int swf_FontEnumerate(SWF * swf,void (*FontCallback) (void*,U16,U8*), void*self);
555 // -> void fontcallback(U16 id,U8 * name); returns number of defined fonts
556
557 int swf_FontExtract(SWF * swf,int id,SWFFONT ** f);
558 // Fetches all available information from DefineFont, DefineFontInfo, DefineText, ...
559 // id = FontID, id=0 -> Extract first Font
560 int swf_FontExtract_DefineFont2(int id, SWFFONT * font, TAG * tag);
561 int swf_FontExtract_DefineFontInfo(int id, SWFFONT * f, TAG * t);
562 int swf_FontExtract_DefineFont(int id, SWFFONT * f, TAG * t);
563 int swf_FontExtract_GlyphNames(int id, SWFFONT * f, TAG * tag);
564
565 int swf_FontIsItalic(SWFFONT * f);
566 int swf_FontIsBold(SWFFONT * f);
567
568 int swf_FontSetID(SWFFONT * f,U16 id);
569 int swf_FontReduce(SWFFONT * f);
570 int swf_FontReduce_swfc(SWFFONT * f);
571
572 int swf_FontInitUsage(SWFFONT * f);
573 int swf_FontUseGlyph(SWFFONT * f, int glyph);
574 int swf_FontUseAll(SWFFONT* f);
575 int swf_FontUseUTF8(SWFFONT * f, U8 * s);
576 int swf_FontUse(SWFFONT* f,U8 * s);
577
578 int swf_FontSetDefine(TAG * t,SWFFONT * f);
579 int swf_FontSetDefine2(TAG * t,SWFFONT * f);
580 int swf_FontSetInfo(TAG * t,SWFFONT * f);
581
582 void swf_FontCreateLayout(SWFFONT*f);
583 void swf_FontAddLayout(SWFFONT * f, int ascent, int descent, int leading);
584
585 int swf_ParseDefineText(TAG * t, void(*callback)(void*self, int*chars, int*xpos, int nr, int fontid, int fontsize, int xstart, int ystart, RGBA* color), void*self);
586
587 void swf_WriteFont(SWFFONT* font, char* filename);
588 SWFFONT* swf_ReadFont(char* filename);
589
590 void swf_FontFree(SWFFONT * f);
591
592 U32 swf_TextGetWidth(SWFFONT * font,U8 * s,int scale);
593 int swf_TextCountBits(SWFFONT * font,U8 * s,int scale,U8 * gbits,U8 * abits);
594
595 #define SET_TO_ZERO 0x80000000
596 int swf_TextSetInfoRecord(TAG * t,SWFFONT * font,U16 size,RGBA * color,int dx,int dy);
597 int swf_TextSetCharRecord(TAG * t,SWFFONT * font,U8 * s,int scale,U8 gbits,U8 abits);
598
599 int swf_TextPrintDefineText(TAG * t,SWFFONT * f);
600 // Prints text defined in tag t with font f to stdout
601
602 void swf_FontPrepareForEditText(SWFFONT * f);
603
604 /* notice: if you set the fontid, make sure you call swf_FontPrepareForEditText() for the font first */
605 void swf_SetEditText(TAG*tag, U16 flags, SRECT r, char*text, RGBA*color,
606         int maxlength, U16 font, U16 height, EditTextLayout*layout, char*variable);
607
608 SRECT swf_SetDefineText(TAG*tag, SWFFONT*font, RGBA*rgb, char*text, int scale);
609
610 void swf_DrawText(drawer_t*draw, SWFFONT*font, int size, char*text);
611
612 // swffont.c
613
614 SWFFONT* swf_LoadTrueTypeFont(char*filename);
615 SWFFONT* swf_LoadT1Font(char*filename);
616 SWFFONT* swf_LoadFont(char*filename);
617
618 void swf_SetLoadFontParameters(int scale, int skip_unused, int full_unicode);
619
620 // swfdump.c
621
622 void swf_DumpHeader(FILE * f,SWF * swf);
623 void swf_DumpMatrix(FILE * f,MATRIX * m);
624 void swf_DumpTag(FILE * f,TAG * t);
625 void swf_DumpSWF(FILE * f,SWF*swf);
626 void swf_DumpGradient(FILE* f, GRADIENT*gradient);
627 char* swf_TagGetName(TAG*tag);
628 void swf_DumpFont(SWFFONT * font);
629
630 // swfbutton.c
631
632 // Button States
633
634 #define BS_HIT          0x08
635 #define BS_DOWN         0x04
636 #define BS_OVER         0x02
637 #define BS_UP           0x01
638
639 // Button Conditions
640
641 /* missing: IDLE_OUTDOWN
642             OUTDOWN_OVERUP
643             OVERUP_OUTDOWN
644 */
645 #define BC_OVERDOWN_IDLE        0x0100
646 #define BC_IDLE_OVERDOWN        0x0080
647 #define BC_OUTDOWN_IDLE         0x0040
648 #define BC_OUTDOWN_OVERDOWN     0x0020
649 #define BC_OVERDOWN_OUTDOWN     0x0010
650 #define BC_OVERDOWN_OVERUP      0x0008
651 #define BC_OVERUP_OVERDOWN      0x0004
652 #define BC_OVERUP_IDLE          0x0002
653 #define BC_IDLE_OVERUP          0x0001
654
655 #define BC_KEY(c) (c<<9)
656
657 #define BC_CURSORLEFT           0x0200
658 #define BC_CURSORRIGHT          0x0400
659 #define BC_POS1                 0x0600
660 #define BC_END                  0x0800
661 #define BC_INSERT               0x0a00
662 #define BC_DELETE               0x0c00
663 #define BC_CLEAR                0x0e00
664 #define BC_BACKSPACE            0x1000
665 #define BC_ENTER                0x1a00
666 #define BC_CURSORUP             0x1c00
667 #define BC_CURSORDOWN           0x1e00
668 #define BC_PAGEUP               0x2000
669 #define BC_PAGEDOWN             0x2200
670 #define BC_TAB                  0x2400
671 #define BC_ESCAPE               0x3600
672 #define BC_SPACE                0x4000
673
674 /* these are probably only valid with linux:
675    Ctrl-A        0x0200
676    Ctrl-X        0x3000
677    Ctrl-Y        0x3200
678    Ctrl-Z        0x3400
679    Escape/Ctrl-[ 0x3600
680    Ctrl-\        0x3800
681    Ctrl-]        0x3a00
682    Ctrl-^        0x3c00
683    Ctrl-/        0x3e00
684    */
685
686 /* everything above 0x4000 is standard ascii:
687    0x4000 ' ' 0x4200 '!' 0x4600 '#' 0x4800 '$' 0x4a00 '%' 0x4c00 '&' ...
688    0x6000 '0' ... 0x7200 '9'
689    0x8000 '@'
690    0x8200 'A' ...  0xb400 'Z'
691    ...
692    0xfc00 '~'
693  */
694
695 // Button Flag
696
697 #define BF_TRACKMENU            0x01
698
699 int swf_ButtonSetRecord(TAG * t,U8 state,U16 id,U16 layer,MATRIX * m,CXFORM * cx);
700 int swf_ButtonSetCondition(TAG * t,U16 condition); // for DefineButton2
701 int swf_ButtonSetFlags(TAG * t,U8 flags);  // necessary for DefineButton2
702 int swf_ButtonPostProcess(TAG * t,int anz_action); // Set all offsets in DefineButton2-Tags (how many conditions to process)
703
704 // swfbits.c
705
706 int swf_ImageHasAlpha(RGBA*img, int width, int height);
707 int swf_ImageGetNumberOfPaletteEntries(RGBA*img, int width, int height, RGBA*palette);
708
709 typedef int JPEGBITS;
710 JPEGBITS * swf_SetJPEGBitsStart(TAG * t,int width,int height,int quality); // deprecated
711 int swf_SetJPEGBitsLines(JPEGBITS * jpegbits,U8 ** data,int n); // deprecated
712 int swf_SetJPEGBitsLine(JPEGBITS * jpegbits,U8 * data); // deprecated
713 int swf_SetJPEGBitsFinish(JPEGBITS * jpegbits); // deprecated
714
715 void swf_GetJPEGSize(char * fname, int*width, int*height);
716
717 int swf_SetJPEGBits(TAG * t,char * fname,int quality);
718 void swf_SetJPEGBits2(TAG * t,U16 width,U16 height,RGBA * bitmap,int quality);
719 int swf_SetJPEGBits3(TAG * tag,U16 width,U16 height,RGBA* bitmap, int quality);
720 RGBA* swf_JPEG2TagToImage(TAG*tag, int*width, int*height);
721 void swf_RemoveJPEGTables(SWF*swf);
722
723 void swf_SaveJPEG(char*filename, RGBA*pixels, int width, int height, int quality);
724
725 #define BYTES_PER_SCANLINE(width) ((width+3)&0xfffffffc)
726
727 #define BMF_8BIT        3               // Bitmap formats
728 #define BMF_16BIT       4
729 #define BMF_32BIT       5
730
731 int swf_SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_flags);
732 int swf_SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palette,U16 ncolors);
733 int swf_SetLosslessBitsGrayscale(TAG * t,U16 width,U16 height,U8 * bitmap);
734 void swf_SetLosslessImage(TAG*tag, RGBA*data, int width, int height); //WARNING: will change tag->id
735
736 RGBA* swf_DefineLosslessBitsTagToImage(TAG*tag, int*width, int*height);
737
738 RGBA* swf_ExtractImage(TAG*tag, int*dwidth, int*dheight);
739 RGBA* swf_ImageScale(RGBA*data, int width, int height, int newwidth, int newheight);
740 TAG* swf_AddImage(TAG*tag, int bitid, RGBA*mem, int width, int height, int quality);
741
742 // swfsound.c
743 void swf_SetSoundStreamHead(TAG*tag, int avgnumsamples);
744 void swf_SetSoundStreamBlock(TAG*tag, S16*samples, int seek, char first); /* expects 2304 samples */
745 void swf_SetSoundDefine(TAG*tag, S16*samples, int num);
746 void swf_SetSoundDefineMP3(TAG*tag, U8* data, unsigned length,
747                            unsigned SampRate,
748                            unsigned Channels,
749                            unsigned NumFrames);
750 void swf_SetSoundInfo(TAG*tag, SOUNDINFO*info);
751
752 // swftools.c
753
754 void swf_Optimize(SWF*swf);
755 U8 swf_isDefiningTag(TAG * t);
756 U8 swf_isPseudoDefiningTag(TAG * t);
757 U8 swf_isAllowedSpriteTag(TAG * t);
758 U8 swf_isImageTag(TAG*tag);
759 U8 swf_isShapeTag(TAG*tag);
760 U8 swf_isTextTag(TAG*tag);
761 U8 swf_isFontTag(TAG*tag);
762 U8 swf_isPlaceTag(TAG*tag);
763
764 U16 swf_GetDefineID(TAG * t);
765 SRECT swf_GetDefineBBox(TAG * t);
766 void swf_SetDefineBBox(TAG * t, SRECT r);
767
768 void swf_SetDefineID(TAG * t, U16 newid);
769 U16 swf_GetPlaceID(TAG * t); //PLACEOBJECT, PLACEOBJECT2 (sometimes), REMOVEOBJECT
770 int swf_GetDepth(TAG * t); //PLACEOBJECT,PLACEOBJECT2,REMOVEOBJECT,REMOVEOBJECT2,SETTABINDEX
771 char* swf_GetName(TAG * t); //PLACEOBJECT2, FRAMELABEL
772 MATRIX * swf_MatrixJoin(MATRIX * d,MATRIX * s1,MATRIX * s2);
773 MATRIX * swf_MatrixMapTriangle(MATRIX * m,int dx,int dy,
774                     int x0,int y0,int x1,int y1,int x2,int y2);
775 int swf_GetNumUsedIDs(TAG * t);
776 void swf_GetUsedIDs(TAG * t, int * positions);
777 void swf_Relocate(SWF*swf, char*bitmap); // bitmap is 65536 bytes, bitmap[a]==0 means id a is free
778 void swf_RelocateDepth(SWF*swf, char*bitmap); // bitmap is 65536 bytes, bitmap[d]==0 means depth d is free
779
780 TAG* swf_Concatenate (TAG*list1,TAG*list2); // warning: both list1 and list2 are invalid after this call.
781
782 RGBA swf_GetSWFBackgroundColor(SWF*swf);
783
784 // swfcgi.c
785
786 void swf_uncgi();  // same behaviour as Steven Grimm's uncgi-library
787
788 // swfaction.c
789
790 typedef struct _ActionTAG
791 { U8            op;
792   U16           len;
793   U8 *          data;
794
795   struct _ActionTAG * next;
796   struct _ActionTAG * prev;
797
798   struct _ActionTAG * parent;
799   U8 tmp[8]; // store small operands here.
800 } ActionTAG;
801
802 typedef struct _ActionMarker
803 {
804   ActionTAG* atag;
805 } ActionMarker;
806
807 ActionTAG* swf_ActionGet(TAG*tag);
808 void swf_ActionFree(ActionTAG*tag);
809 void swf_ActionSet(TAG*tag, ActionTAG*actions);
810 void swf_DumpActions(ActionTAG*atag, char*prefix);
811 void swf_ActionEnumerateURLs(ActionTAG*atag, char*(*callback)(char*));
812 void swf_ActionEnumerateTargets(ActionTAG*atag, char*(*callback)(char*));
813 void swf_ActionEnumerateStrings(ActionTAG*atag, char*(*callback)(char*));
814
815 // using action/actioncompiler.h:
816 ActionTAG* swf_ActionCompile(const char* source, int version);
817
818 ActionTAG* action_End(ActionTAG*atag);
819 ActionTAG* action_NextFrame(ActionTAG*atag);
820 ActionTAG* action_PreviousFrame(ActionTAG*atag);
821 ActionTAG* action_Play(ActionTAG*atag);
822 ActionTAG* action_Stop(ActionTAG*atag);
823 ActionTAG* action_ToggleQuality(ActionTAG*atag);
824 ActionTAG* action_StopSounds(ActionTAG*atag);
825 ActionTAG* action_Add(ActionTAG*atag);
826 ActionTAG* action_Subtract(ActionTAG*atag);
827 ActionTAG* action_Multiply(ActionTAG*atag);
828 ActionTAG* action_Divide(ActionTAG*atag);
829 ActionTAG* action_Equals(ActionTAG*atag);
830 ActionTAG* action_Less(ActionTAG*atag);
831 ActionTAG* action_And(ActionTAG*atag);
832 ActionTAG* action_Or(ActionTAG*atag);
833 ActionTAG* action_Not(ActionTAG*atag);
834 ActionTAG* action_StringEquals(ActionTAG*atag);
835 ActionTAG* action_StringLength(ActionTAG*atag);
836 ActionTAG* action_StringExtract(ActionTAG*atag);
837 ActionTAG* action_Pop(ActionTAG*atag);
838 ActionTAG* action_ToInteger(ActionTAG*atag);
839 ActionTAG* action_GetVariable(ActionTAG*atag);
840 ActionTAG* action_SetVariable(ActionTAG*atag);
841 ActionTAG* action_SetTarget2(ActionTAG*atag);
842 ActionTAG* action_StringAdd(ActionTAG*atag);
843 ActionTAG* action_GetProperty(ActionTAG*atag);
844 ActionTAG* action_SetProperty(ActionTAG*atag);
845 ActionTAG* action_CloneSprite(ActionTAG*atag);
846 ActionTAG* action_RemoveSprite(ActionTAG*atag);
847 ActionTAG* action_Trace(ActionTAG*atag);
848 ActionTAG* action_StartDrag(ActionTAG*atag);
849 ActionTAG* action_EndDrag(ActionTAG*atag);
850 ActionTAG* action_StringLess(ActionTAG*atag);
851 ActionTAG* action_RandomNumber(ActionTAG*atag);
852 ActionTAG* action_MBStringLength(ActionTAG*atag);
853 ActionTAG* action_CharToAscii(ActionTAG*atag);
854 ActionTAG* action_AsciiToChar(ActionTAG*atag);
855 ActionTAG* action_GetTime(ActionTAG*atag);
856 ActionTAG* action_MBStringExtract(ActionTAG*atag);
857 ActionTAG* action_MBCharToAscii(ActionTAG*atag);
858 ActionTAG* action_MBAsciiToChar(ActionTAG*atag);
859 ActionTAG* action_Delete(ActionTAG*atag);
860 ActionTAG* action_Delete2(ActionTAG*atag);
861 ActionTAG* action_DefineLocal(ActionTAG*atag);
862 ActionTAG* action_CallFunction(ActionTAG*atag);
863 ActionTAG* action_Return(ActionTAG*atag);
864 ActionTAG* action_Modulo(ActionTAG*atag);
865 ActionTAG* action_NewObject(ActionTAG*atag);
866 ActionTAG* action_DefineLocal2(ActionTAG*atag);
867 ActionTAG* action_InitArray(ActionTAG*atag);
868 ActionTAG* action_Makehash(ActionTAG*atag);
869 ActionTAG* action_TypeOf(ActionTAG*atag);
870 ActionTAG* action_TargetPath(ActionTAG*atag);
871 ActionTAG* action_Enumerate(ActionTAG*atag);
872 ActionTAG* action_Add2(ActionTAG*atag);
873 ActionTAG* action_Less2(ActionTAG*atag);
874 ActionTAG* action_Equals2(ActionTAG*atag);
875 ActionTAG* action_ToNumber(ActionTAG*atag);
876 ActionTAG* action_ToString(ActionTAG*atag);
877 ActionTAG* action_PushDuplicate(ActionTAG*atag);
878 ActionTAG* action_StackSwap(ActionTAG*atag);
879 ActionTAG* action_GetMember(ActionTAG*atag);
880 ActionTAG* action_SetMember(ActionTAG*atag);
881 ActionTAG* action_Increment(ActionTAG*atag);
882 ActionTAG* action_Decrement(ActionTAG*atag);
883 ActionTAG* action_CallMethod(ActionTAG*atag);
884 ActionTAG* action_NewMethod(ActionTAG*atag);
885 ActionTAG* action_BitAnd(ActionTAG*atag);
886 ActionTAG* action_BitOr(ActionTAG*atag);
887 ActionTAG* action_BitXor(ActionTAG*atag);
888 ActionTAG* action_BitLShift(ActionTAG*atag);
889 ActionTAG* action_BitRShift(ActionTAG*atag);
890 ActionTAG* action_BitURShift(ActionTAG*atag);
891 ActionTAG* action_GotoFrame(ActionTAG*atag, U16 frame);
892 ActionTAG* action_GetUrl(ActionTAG*atag, const char* url, char* label);
893 ActionTAG* action_StoreRegister(ActionTAG*atag, U8 reg);
894 ActionTAG* action_Constantpool(ActionTAG*atag, char* constantpool);
895 ActionTAG* action_WaitForFrame(ActionTAG*atag, U16 frame, U8 skip);
896 ActionTAG* action_SetTarget(ActionTAG*atag, char* target);
897 ActionTAG* action_GotoLabel(ActionTAG*atag, char* label);
898 ActionTAG* action_WaitForFrame2(ActionTAG*atag, U8 skip);
899 ActionTAG* action_With(ActionTAG*atag, char*object);
900 ActionTAG* action_PushString(ActionTAG*atag, const char*str);
901 ActionTAG* action_PushFloat(ActionTAG*atag, float f);
902 ActionTAG* action_PushNULL(ActionTAG*atag);
903 ActionTAG* action_PushRegister(ActionTAG*atag, U8 reg);
904 ActionTAG* action_PushBoolean(ActionTAG*atag, char c);
905 ActionTAG* action_PushDouble(ActionTAG*atag, double d);
906 ActionTAG* action_PushInt(ActionTAG*atag, int i);
907 ActionTAG* action_PushLookup(ActionTAG*atag, U8 index);
908 ActionTAG* action_Jump(ActionTAG*atag, U16 branch);
909 ActionTAG* action_GetUrl2(ActionTAG*atag, U8 method);
910 ActionTAG* action_DefineFunction(ActionTAG*atag, U8*data, int len);
911 ActionTAG* action_If(ActionTAG*atag, U16 branch);
912 ActionTAG* action_Call(ActionTAG*atag);
913 ActionTAG* action_GotoFrame2(ActionTAG*atag, U8 method);
914 ActionMarker action_setMarker(ActionTAG*atag);
915 void action_fixjump(ActionMarker m1, ActionMarker m2);
916
917 // swfobject.c
918
919 // The following 3 routines only use placeobject2:
920
921 extern char*blendModeNames[];
922
923 int swf_ObjectPlace(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name);
924 int swf_ObjectPlaceClip(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name, U16 clipaction);
925 int swf_ObjectPlaceBlend(TAG * t,U16 id,U16 depth,MATRIX * m,CXFORM * cx,U8 * name, U8 blendmode);
926 int swf_ObjectMove(TAG * t,U16 depth,MATRIX * m,CXFORM * cx);
927
928 typedef struct _SWFPLACEOBJECT {
929     U16 depth;
930     U16 id; // may be 0
931     char move; //true: move/replace character, false: set character
932     MATRIX matrix;
933     CXFORM cxform;
934     U16 ratio;
935     U8*name;
936     U16 clipdepth;
937     ActionTAG* actions;
938     U8 blendmode;
939     FILTERLIST*filters;
940 } SWFPLACEOBJECT;
941
942 void swf_SetPlaceObject(TAG * t,SWFPLACEOBJECT* obj);
943 void swf_GetPlaceObject(TAG * t,SWFPLACEOBJECT* obj);
944 void swf_PlaceObjectFree(SWFPLACEOBJECT* obj);
945
946 // swfvideo.c
947
948 typedef struct _VIDEOSTREAM
949 {
950     int width;
951     int height;
952     int linex;
953
954     int owidth;
955     int oheight;
956     int olinex;
957
958     int frame;
959     YUV*oldpic;
960     YUV*current;
961     int bbx;
962     int bby;
963     int*mvdx;
964     int*mvdy;
965     int quant;
966
967     /* modifyable: */
968     int do_motion; //enable motion compensation (slow!)
969
970 } VIDEOSTREAM;
971
972 void swf_SetVideoStreamDefine(TAG*tag, VIDEOSTREAM*stream, U16 frames, U16 width, U16 height);
973 void swf_SetVideoStreamIFrame(TAG*tag, VIDEOSTREAM*s, RGBA*pic, int quant/* 1-31, 1=best quality, 31=best compression*/);
974 void swf_SetVideoStreamBlackFrame(TAG*tag, VIDEOSTREAM*s);
975 void swf_SetVideoStreamPFrame(TAG*tag, VIDEOSTREAM*s, RGBA*pic, int quant/* 1-31, 1=best quality, 31=best compression*/);
976 void swf_SetVideoStreamMover(TAG*tag, VIDEOSTREAM*s, signed char* movex, signed char* movey, void** image, int quant);
977 void swf_VideoStreamClear(VIDEOSTREAM*stream);
978
979 // swfrender.c
980
981 typedef struct RENDERBUF
982 {
983     int width;
984     int height;
985     int posx,posy;
986     void*internal;
987 } RENDERBUF;
988
989 void swf_Render_Init(RENDERBUF*buf, int posx, int posy, int width, int height, int antialize, int multiply);
990 void swf_Render_SetBackground(RENDERBUF*buf, RGBA*img, int width, int height);
991 void swf_Render_SetBackgroundColor(RENDERBUF*buf, RGBA color);
992 RGBA* swf_Render(RENDERBUF*dest);
993 void swf_RenderShape(RENDERBUF*dest, SHAPE2*shape, MATRIX*m, CXFORM*c, U16 depth,U16 clipdepth);
994 void swf_RenderSWF(RENDERBUF*buf, SWF*swf);
995 void swf_Render_AddImage(RENDERBUF*buf, U16 id, RGBA*img, int width, int height); /* img is non-premultiplied */
996 void swf_Render_ClearCanvas(RENDERBUF*dest);
997 void swf_Render_Delete(RENDERBUF*dest);
998
999 // swffilter.c
1000
1001 #define FILTERTYPE_DROPSHADOW 0
1002 #define FILTERTYPE_BLUR 1
1003 #define FILTERTYPE_GLOW 2
1004 #define FILTERTYPE_BEVEL 3
1005 #define FILTERTYPE_GRADIENTGLOW 4
1006 #define FILTERTYPE_CONVOLUTION 5
1007 #define FILTERTYPE_COLORMATRIX 6
1008 #define FILTERTYPE_GRADIENTBEVEL 7
1009
1010 extern char*filtername[];
1011
1012 typedef struct _FILTER_GRADIENTGLOW {
1013     U8 type;
1014     GRADIENT*gradient;
1015     double blurx;
1016     double blury;
1017     double angle;
1018     double distance;
1019     float strength;
1020     char innershadow;
1021     char knockout;
1022     char composite;
1023     char ontop;
1024     int passes;
1025 } FILTER_GRADIENTGLOW;
1026
1027 typedef struct _FILTER_DROPSHADOW {
1028     U8 type;
1029     RGBA color;
1030     double blurx;
1031     double blury;
1032     double angle;
1033     double distance;
1034     float strength;
1035     char innershadow;
1036     char knockout;
1037     char composite;
1038     int passes;
1039 } FILTER_DROPSHADOW;
1040
1041 typedef struct _FILTER_BEVEL {
1042     U8 type;
1043     RGBA shadow;
1044     RGBA highlight;
1045     double blurx;
1046     double blury;
1047     double angle;
1048     double distance;
1049     float strength;
1050     char innershadow;
1051     char knockout;
1052     char composite;
1053     char ontop;
1054     int passes;
1055 } FILTER_BEVEL;
1056
1057 typedef struct _FILTER_BLUR {
1058     U8 type;
1059     double blurx;
1060     double blury;
1061     int passes;
1062 } FILTER_BLUR;
1063
1064 void swf_SetFilter(TAG*tag, FILTER*f);
1065 FILTER*swf_GetFilter(TAG*tag);
1066 FILTER*swf_NewFilter(U8 type);
1067
1068 void AVM2_InsertStops(SWF*swf);
1069
1070 #ifdef __cplusplus
1071 }
1072 #endif
1073
1074 #endif
1075