shithub: opus

Download patch

ref: 9134e96cb24fa3a4c5249e3940a163d889fe692d
parent: 81af25950f061aa18339c23ae07846d72a49e3d3
author: Jean-Marc Valin <[email protected]>
date: Tue Jan 7 12:50:46 EST 2014

Fixes SMALL_FOOTPRINT for float

--- a/celt/celt_decoder.c
+++ b/celt/celt_decoder.c
@@ -51,6 +51,9 @@
 #include "celt_lpc.h"
 #include "vq.h"
 
+#if defined(SMALL_FOOTPRINT) && defined(FIXED_POINT)
+#define NORM_ALIASING_HACK
+#endif
 /**********************************************************************/
 /*                                                                    */
 /*                             DECODER                                */
@@ -458,7 +461,7 @@
    if (noise_based)
    {
       /* Noise-based PLC/CNG */
-#ifdef SMALL_FOOTPRINT
+#ifdef NORM_ALIASING_HACK
       celt_norm *X;
 #else
       VARDECL(celt_norm, X);
@@ -471,7 +474,7 @@
       end = st->end;
       effEnd = IMAX(start, IMIN(end, mode->effEBands));
 
-#ifdef SMALL_FOOTPRINT
+#ifdef NORM_ALIASING_HACK
       /* This is an ugly hack that breaks aliasing rules and would be easily broken,
          but it saves almost 4kB of stack. */
       X = (celt_norm*)(out_syn[C-1]+overlap/2);
@@ -731,7 +734,7 @@
    int spread_decision;
    opus_int32 bits;
    ec_dec _dec;
-#ifdef SMALL_FOOTPRINT
+#ifdef NORM_ALIASING_HACK
    celt_norm *X;
 #else
    VARDECL(celt_norm, X);
@@ -980,7 +983,7 @@
    /* Decode fixed codebook */
    ALLOC(collapse_masks, C*nbEBands, unsigned char);
 
-#ifdef SMALL_FOOTPRINT
+#ifdef NORM_ALIASING_HACK
    /* This is an ugly hack that breaks aliasing rules and would be easily broken,
       but it saves almost 4kB of stack. */
    X = (celt_norm*)(out_syn[CC-1]+overlap/2);