Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2012-10-24 22:20:43 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2012-10-24 22:20:43 +0400
commit6930d90c341fca347f3fdc1e10c43f3265174aed (patch)
tree47e29579a69409f81f55d87e7ccfe785ea9b2bc6
parent1cdfd1b12b80e7cbd618732b7b1c79a15fb0b576 (diff)
oops... fixes a C89 issue
-rw-r--r--celt/celt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/celt/celt.c b/celt/celt.c
index 8d10c0fa..09f9164a 100644
--- a/celt/celt.c
+++ b/celt/celt.c
@@ -509,11 +509,11 @@ static void preemphasis(const opus_val16 * OPUS_RESTRICT pcmp, celt_sig * OPUS_R
int i;
opus_val16 coef0, coef1;
celt_sig m;
+ int Nu;
coef0 = coef[0];
coef1 = coef[1];
- int Nu;
Nu = N/upsample;
if (upsample!=1)