summaryrefslogtreecommitdiff
path: root/src/opus_multistream_encoder.c
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2013-10-28 21:48:50 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2013-10-28 21:48:50 -0400
commitc2b34412113a56eefc602782dd59482c083c3173 (patch)
treef4b806c80531080716020fa975992b222dcbf1b5 /src/opus_multistream_encoder.c
parent0fb0fd715cc85a7c4d710a94d740a1ece11ad275 (diff)
downloadopus-c2b34412113a56eefc602782dd59482c083c3173.tar.gz
Fixes DISABLE_FLOAT_API build
Diffstat (limited to 'src/opus_multistream_encoder.c')
-rw-r--r--src/opus_multistream_encoder.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/opus_multistream_encoder.c b/src/opus_multistream_encoder.c
index f711e267..f2832280 100644
--- a/src/opus_multistream_encoder.c
+++ b/src/opus_multistream_encoder.c
@@ -715,7 +715,11 @@ static int opus_multistream_encode_native
delay_compensation -= Fs/400;
frame_size = compute_frame_size(pcm, analysis_frame_size,
st->variable_duration, channels, Fs, st->bitrate_bps,
- delay_compensation, downmix, st->subframe_mem);
+ delay_compensation, downmix
+#ifndef DISABLE_FLOAT_API
+ , st->subframe_mem
+#endif
+ );
}
if (400*frame_size < Fs)