Displaying 2 results from an estimated 2 matches for "oldeband".
Did you mean:
  oldeland
  
2009 Dec 02
1
bug found in CELT 0.6.1, fix proposed.
...t_word16 q;   /* dB */
           celt_word16 x;   /* dB */
           celt_word16 f;   /* Q8 */
!          celt_word16 mean =  (i < E_MEANS_SIZE) ? MULT16_16_Q15(Q15ONE-coef,eMeans[i]) : 0;
           x = eBands[i+c*m->nbEBands];
  #ifdef FIXED_POINT
           f = x-mean -MULT16_16_Q15(coef,oldEBands[i+c*m->nbEBands])-prev[c];
--- 112,118 ----
           celt_word16 q;   /* dB */
           celt_word16 x;   /* dB */
           celt_word16 f;   /* Q8 */
!          celt_word16 mean = MULT16_16_Q15(Q15ONE-coef,eMeans[i]);
           x = eBands[i+c*m->nbEBands];
  #ifdef FIXED_POINT...
2011 Mar 03
0
[PATCH] Eliminate the ec_int32 and ec_uint32 typedefs.
...((((celt_uint32)1U)<<EC_CODE_BITS-1)-1<<1|1)
 
 #endif
diff --git a/libcelt/quant_bands.c b/libcelt/quant_bands.c
index 9aa05fe..e007dcb 100644
--- a/libcelt/quant_bands.c
+++ b/libcelt/quant_bands.c
@@ -155,7 +155,7 @@ static int intra_decision(const celt_word16 *eBands, celt_word16 *oldEBands, int
 
 static int quant_coarse_energy_impl(const CELTMode *m, int start, int end,
       const celt_word16 *eBands, celt_word16 *oldEBands,
-      ec_int32 budget, ec_int32 tell,
+      celt_int32 budget, celt_int32 tell,
       const unsigned char *prob_model, celt_word16 *error, ec_enc *enc,...