shithub: opus

Download patch

ref: 5ea2e7f2671c601ab9cfe79efe287d44553fd1c2
parent: d125c264e458455c8e713cd06d52a231fc32fe18
author: Jean-Marc Valin <[email protected]>
date: Fri Sep 19 13:49:21 EDT 2008

Dividing by a constant is never good

--- a/libcelt/quant_bands.c
+++ b/libcelt/quant_bands.c
@@ -85,6 +85,7 @@
 #endif
 
 static const celt_word16_t base_resolution = QCONST16(6.f,8);
+static const celt_word16_t base_resolution_1 = QCONST16(0.1666667f,15);
 
 int *quant_prob_alloc(const CELTMode *m)
 {
@@ -124,11 +125,13 @@
       celt_word16_t f;   /* Q8 */
       celt_word16_t mean = MULT16_16_Q15(Q15ONE-coef,eMeans[i]);
       x = amp2dB(eBands[i]);
-      f = EXTRACT16(celt_div(SHL32(EXTEND32(x-mean-MULT16_16_Q15(coef,oldEBands[i])-prev),8),base_resolution));
 #ifdef FIXED_POINT
+      f = MULT16_16_Q15(x-mean-MULT16_16_Q15(coef,oldEBands[i])-prev,base_resolution_1);
       /* Rounding to nearest integer here is really important! */
       qi = (f+128)>>8;
 #else
+      f = (x-mean-coef*oldEBands[i]-prev)*base_resolution_1;
+      /* Rounding to nearest integer here is really important! */
       qi = (int)floor(.5+f);
 #endif
       /* If we don't have enough bits to encode all the energy, just assume something safe.