Mark qmf_window table static to atrac.c unit.
authorDiego Elio Pettenò <flameeyes@gmail.com>
Mon, 24 Jan 2011 23:36:09 +0000 (00:36 +0100)
committerMans Rullgard <mans@mansr.com>
Mon, 24 Jan 2011 23:42:23 +0000 (23:42 +0000)
The table is not used anywhere else on libavcodec.

Signed-off-by: Mans Rullgard <mans@mansr.com>
libavcodec/atrac.c
libavcodec/atrac.h

index e398cee..1f7a69e 100644 (file)
@@ -33,7 +33,7 @@
 #include "atrac.h"
 
 float sf_table[64];
-float qmf_window[48];
+static float qmf_window[48];
 
 static const float qmf_48tap_half[24] = {
    -0.00001461907, -0.00009205479,-0.000056157569,0.00030117269,
index 0732da0..acaa4ce 100644 (file)
@@ -30,7 +30,6 @@
 
 
 extern float sf_table[64];
-extern float qmf_window[48];
 
 void atrac_generate_tables(void);
 void atrac_iqmf (float *inlo, float *inhi, unsigned int nIn, float *pOut, float *delayBuf, float *temp);