shithub: opus

Download patch

ref: 079b91695099adacffc3dd7d5f6c4ae1e7515bdf
parent: 1e9fb6291c03ada2508d87740c91d833073b3a34
author: Jean-Marc Valin <[email protected]>
date: Mon Feb 14 08:54:59 EST 2011

using "end" rather than nbEBands for trim_offset[]

--- a/libcelt/rate.c
+++ b/libcelt/rate.c
@@ -568,7 +568,7 @@
       /* Below this threshold, we're sure not to allocate any PVQ bits */
       thresh[j] = IMAX((C)<<BITRES, (3*(m->eBands[j+1]-m->eBands[j])<<LM<<BITRES)>>4);
       /* Tilt of the allocation curve */
-      trim_offset[j] = C*(m->eBands[j+1]-m->eBands[j])*(alloc_trim-5-LM)*(m->nbEBands-j-1)
+      trim_offset[j] = C*(m->eBands[j+1]-m->eBands[j])*(alloc_trim-5-LM)*(end-j-1)
             <<(LM+BITRES)>>6;
       /* Giving less resolution to single-coefficient bands because they get
          more benefit from having one coarse value per coefficient*/