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:
parent
12190653b2
commit
84dd1cf9b7
1 changed files with 3 additions and 2 deletions
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue