Balance parentheses in opus_multistream.c.

This makes simple syntax highlighters (e.g., vim) stop complaining
 because they don't parse the #ifdef's.
This commit is contained in:
Timothy B. Terriberry 2012-09-06 09:30:06 -07:00
parent 12190653b2
commit 84dd1cf9b7

View file

@ -224,10 +224,11 @@ OpusMSEncoder *opus_multistream_encoder_create(
/* Max size in case the encoder decides to return three frames */ /* Max size in case the encoder decides to return three frames */
#define MS_FRAME_TMP (3*1275+7) #define MS_FRAME_TMP (3*1275+7)
#ifdef FIXED_POINT #ifdef FIXED_POINT
int opus_multistream_encode( int opus_multistream_encode
#else #else
int opus_multistream_encode_float( int opus_multistream_encode_float
#endif #endif
(
OpusMSEncoder *st, OpusMSEncoder *st,
const opus_val16 *pcm, const opus_val16 *pcm,
int frame_size, int frame_size,