From 4156343ba2d500f053cf47fb4754e4da5d7a85da Mon Sep 17 00:00:00 2001 From: kramm Date: Mon, 20 May 2002 12:02:31 +0000 Subject: [PATCH] swf_SetSoundStreamBlock now doesn't have a framesize parameter anymore. (fixed to 2304) --- lib/rfxswf.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 -- 1.7.10.4