From 69abbf4662453350324bf2ac989f499d0d0ddabf Mon Sep 17 00:00:00 2001 From: Jean-Marc Valin Date: Sun, 28 Aug 2011 02:12:31 -0400 Subject: [PATCH] Fixes a trivial multistream fixed-point bug --- src/opus_multistream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opus_multistream.c b/src/opus_multistream.c index 604bbd97..69ba8dfa 100644 --- a/src/opus_multistream.c +++ b/src/opus_multistream.c @@ -211,7 +211,7 @@ int opus_multistream_encode( int opus_multistream_encode_float( #endif OpusMSEncoder *st, /* Encoder state */ - const float *pcm, /* Input signal (interleaved if 2 channels). length is frame_size*channels */ + const opus_val16 *pcm, /* Input signal (interleaved if 2 channels). length is frame_size*channels */ int frame_size, /* Number of samples per frame of input signal */ unsigned char *data, /* Output payload (no more than max_data_bytes long) */ int max_data_bytes /* Allocated memory for payload; don't use for controlling bitrate */