[FFmpeg-soc] [soc]: r1753 - in eac3: ac3tab.c ac3tab.h

jbr subversion at mplayerhq.hu
Wed Jan 2 01:09:59 CET 2008


Author: jbr
Date: Wed Jan  2 01:09:59 2008
New Revision: 1753

Log:
wrap unused tables in #if 0

Modified:
   eac3/ac3tab.c
   eac3/ac3tab.h

Modified: eac3/ac3tab.c
==============================================================================
--- eac3/ac3tab.c	(original)
+++ eac3/ac3tab.c	Wed Jan  2 01:09:59 2008
@@ -1336,6 +1336,7 @@ const uint8_t ff_eac3_frm_expstr[32][6] 
 const uint8_t ff_eac3_default_cpl_band_struct[18] =
 { 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1 };
 
+#if 0
 /**
  * Table E2.15 Default Spectral Extension Banding Structure
  */
@@ -1387,6 +1388,7 @@ const float ff_eac3_spxattentab[32][3] =
     {0.238710401, 0.056982656, 0.013602353},
     {0.227930622, 0.051952369, 0.011841536}
 };
+#endif
 
 /**
  * Table of bin locations for rematrixing bands

Modified: eac3/ac3tab.h
==============================================================================
--- eac3/ac3tab.h	(original)
+++ eac3/ac3tab.h	Wed Jan  2 01:09:59 2008
@@ -48,9 +48,11 @@ extern const uint8_t ff_eac3_gaq_gk[4][3
 extern const int16_t (*ff_eac3_vq_hebap[8])[6];
 extern const uint8_t ff_eac3_frm_expstr[32][6];
 extern const uint8_t ff_eac3_default_cpl_band_struct[18];
+#if 0
 extern const uint8_t ff_eac3_defspxbndstrc[17];
 extern const uint8_t ff_eac3_defecplbndstrc[22];
 extern const float   ff_eac3_spxattentab[32][3];
+#endif
 
 extern const uint8_t ff_ac3_rematrix_band_tab[5];
 



More information about the FFmpeg-soc mailing list