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-09-15 11:09:35 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2012-09-15 11:09:35 +0400
commit454d3d595923306503fdcf083258f9558742d30d (patch)
tree32b559beec7cabe3aba900cdc82a69b2d8f9a54e
parent027ff070f0bf322eb6f940001e7c78f10a8ee0f4 (diff)
s/SHL/SHL16/
-rw-r--r--celt/celt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/celt/celt.c b/celt/celt.c
index 96080c08..58168d96 100644
--- a/celt/celt.c
+++ b/celt/celt.c
@@ -1422,7 +1422,7 @@ int celt_encode_with_ec(CELTEncoder * restrict st, const opus_val16 * pcm, int f
compute_band_energies(st->mode, freq2, bandE2, effEnd, C, M);
amp2Log2(st->mode, effEnd, st->end, bandE2, bandLogE2, C);
for (i=0;i<C*st->mode->nbEBands;i++)
- bandLogE2[i] += HALF16(SHL(LM, DB_SHIFT));
+ bandLogE2[i] += HALF16(SHL16(LM, DB_SHIFT));
} else {
for (i=0;i<C*st->mode->nbEBands;i++)
bandLogE2[i] = bandLogE[i];