summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2016-07-24 22:16:29 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2016-07-24 22:16:29 -0400
commit76596ad93a7869e6b877dc44cefda45cde1b3e8b (patch)
tree1322dd6c7335777b86f14d29f9495a1d8d48e238
parentc544b1238cf4f07b02f8f30ea761f41c1389a594 (diff)
downloadopus-76596ad93a7869e6b877dc44cefda45cde1b3e8b.tar.gz
Fixes comment
-rw-r--r--celt/quant_bands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/celt/quant_bands.c b/celt/quant_bands.c
index 6333f1b0..56101b1c 100644
--- a/celt/quant_bands.c
+++ b/celt/quant_bands.c
@@ -553,7 +553,7 @@ void amp2Log2(const CELTMode *m, int effEnd, int end,
celt_log2(bandE[i+c*m->nbEBands])
- SHL16((opus_val16)eMeans[i],6);
#ifdef FIXED_POINT
- /* Compensate for bandLogE[] being Q12 but celt_log2() taking a Q14 input. */
+ /* Compensate for bandE[] being Q12 but celt_log2() taking a Q14 input. */
bandLogE[i+c*m->nbEBands] += QCONST16(2.f, DB_SHIFT);
#endif
}