summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2013-11-15 01:57:25 -0500
committerJean-Marc Valin <jmvalin@jmvalin.ca>2013-11-15 01:57:25 -0500
commit1b28e0cae55f66f76fdd7fae433c392a039565ff (patch)
treebeb42a6a4fdd7739c8d18beddca96722dda44ae8
parente83d2aa3f7e61cdea146f580c99fda7d3593a3ff (diff)
downloadopus-1b28e0cae55f66f76fdd7fae433c392a039565ff.tar.gz
Oops, missing semicolon on RESTORE_STACK in previous commit
-rw-r--r--celt/celt_encoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/celt/celt_encoder.c b/celt/celt_encoder.c
index 6c5e5cdc..93562c8f 100644
--- a/celt/celt_encoder.c
+++ b/celt/celt_encoder.c
@@ -1306,7 +1306,7 @@ int celt_encode_with_ec(CELTEncoder * OPUS_RESTRICT st, const opus_val16 * pcm,
tf_estimate = 0;
if (nbCompressedBytes<2 || pcm==NULL)
{
- RESTORE_STACK
+ RESTORE_STACK;
return OPUS_BAD_ARG;
}
@@ -1316,7 +1316,7 @@ int celt_encode_with_ec(CELTEncoder * OPUS_RESTRICT st, const opus_val16 * pcm,
break;
if (LM>mode->maxLM)
{
- RESTORE_STACK
+ RESTORE_STACK;
return OPUS_BAD_ARG;
}
M=1<<LM;
@@ -1350,7 +1350,7 @@ int celt_encode_with_ec(CELTEncoder * OPUS_RESTRICT st, const opus_val16 * pcm,
int c0 = toOpus(compressed[0]);
if (c0<0)
{
- RESTORE_STACK
+ RESTORE_STACK;
return OPUS_BAD_ARG;
}
compressed[0] = c0;