shithub: opus

Download patch

ref: 84dd1cf9b701d45124770b795656a98aa53222dd
parent: 12190653b2008346d3149d9a32d7e1dff42835d7
author: Timothy B. Terriberry <[email protected]>
date: Thu Sep 6 05:30:06 EDT 2012

Balance parentheses in opus_multistream.c.

This makes simple syntax highlighters (e.g., vim) stop complaining
 because they don't parse the #ifdef's.

--- a/src/opus_multistream.c
+++ b/src/opus_multistream.c
@@ -224,10 +224,11 @@
 /* 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,