Browse code

Mark qmf_window table static to atrac.c unit.

The table is not used anywhere else on libavcodec.

Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 53493f9a8176009fc514c386ee31cafcafc8539a)

Diego Elio Pettenò authored on 2011/01/25 08:36:09
Showing 2 changed files
... ...
@@ -33,7 +33,7 @@
33 33
 #include "atrac.h"
34 34
 
35 35
 float sf_table[64];
36
-float qmf_window[48];
36
+static float qmf_window[48];
37 37
 
38 38
 static const float qmf_48tap_half[24] = {
39 39
    -0.00001461907, -0.00009205479,-0.000056157569,0.00030117269,
... ...
@@ -30,7 +30,6 @@
30 30
 
31 31
 
32 32
 extern float sf_table[64];
33
-extern float qmf_window[48];
34 33
 
35 34
 void atrac_generate_tables(void);
36 35
 void atrac_iqmf (float *inlo, float *inhi, unsigned int nIn, float *pOut, float *delayBuf, float *temp);