summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/atrac.c2
-rw-r--r--libavcodec/atrac.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/atrac.c b/libavcodec/atrac.c
index e398cee7b8..1f7a69e2f8 100644
--- a/libavcodec/atrac.c
+++ b/libavcodec/atrac.c
@@ -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,
diff --git a/libavcodec/atrac.h b/libavcodec/atrac.h
index 0732da0740..acaa4ce041 100644
--- a/libavcodec/atrac.h
+++ b/libavcodec/atrac.h
@@ -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);