From: kramm Date: Mon, 20 May 2002 12:02:31 +0000 (+0000) Subject: swf_SetSoundStreamBlock now doesn't have a framesize parameter anymore. X-Git-Tag: release-0-3-0-preview~12 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=4156343ba2d500f053cf47fb4754e4da5d7a85da swf_SetSoundStreamBlock now doesn't have a framesize parameter anymore. (fixed to 2304) --- diff --git a/lib/rfxswf.h b/lib/rfxswf.h index 139488f..9edaea0 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -601,8 +601,9 @@ 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); +void swf_SetSoundStreamHead(TAG*tag, int avgnumsamples); +/* expects 2304 samples */ +void swf_SetSoundStreamBlock(TAG*tag, S16*samples, char first); #endif // RFXSWF_DISABLESOUND