added "compressed" field in header.
[swftools.git] / lib / rfxswf.h
index 41f2770..e7a11d1 100644 (file)
@@ -145,6 +145,7 @@ typedef struct _ActionMarker
 
 typedef struct _SWF
 { U8            fileVersion;
+  U8           compressed;     // SWF or SWC?
   U32           fileSize;       // valid after load and save
   SRECT         movieSize;
   U16           frameRate;
@@ -588,10 +589,14 @@ int swf_SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_fla
 int swf_SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palette,U16 ncolors);
 int swf_SetLosslessBitsGrayscale(TAG * t,U16 width,U16 height,U8 * bitmap);
 
+#ifndef RFXSWF_DISABLESOUND
+
 // swfsound.c
 void swf_SetSoundStreamHead(TAG*tag, U16 avgnumsamples);
 void swf_SetSoundStreamBlock(TAG*tag, S16*samples, int numsamples, char first);
 
+#endif // RFXSWF_DISABLESOUND
+
 // swftools.c
 
 U8 swf_isDefiningTag(TAG * t);