summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy B. Terriberry <tterribe@xiph.org>2012-09-06 09:30:06 -0700
committerTimothy B. Terriberry <tterribe@xiph.org>2012-09-06 09:30:06 -0700
commit84dd1cf9b701d45124770b795656a98aa53222dd (patch)
tree503b855644ff3179909168bf22b7a0f993c65760
parent12190653b2008346d3149d9a32d7e1dff42835d7 (diff)
downloadopus-84dd1cf9b701d45124770b795656a98aa53222dd.tar.gz
Balance parentheses in opus_multistream.c.
This makes simple syntax highlighters (e.g., vim) stop complaining because they don't parse the #ifdef's.
-rw-r--r--src/opus_multistream.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/opus_multistream.c b/src/opus_multistream.c
index a38b1210..623e0835 100644
--- a/src/opus_multistream.c
+++ b/src/opus_multistream.c
@@ -224,10 +224,11 @@ OpusMSEncoder *opus_multistream_encoder_create(
/* Max size in case the encoder decides to return three frames */
#define MS_FRAME_TMP (3*1275+7)
#ifdef FIXED_POINT
-int opus_multistream_encode(
+int opus_multistream_encode
#else
-int opus_multistream_encode_float(
+int opus_multistream_encode_float
#endif
+(
OpusMSEncoder *st,
const opus_val16 *pcm,
int frame_size,