summaryrefslogtreecommitdiff
path: root/libavcodec/atrac.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/atrac.c')
-rw-r--r--libavcodec/atrac.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/atrac.c b/libavcodec/atrac.c
index 1f7a69e2f8..6c1b1f19ce 100644
--- a/libavcodec/atrac.c
+++ b/libavcodec/atrac.c
@@ -32,7 +32,7 @@
#include "dsputil.h"
#include "atrac.h"
-float sf_table[64];
+float ff_atrac_sf_table[64];
static float qmf_window[48];
static const float qmf_48tap_half[24] = {
@@ -54,9 +54,9 @@ void atrac_generate_tables(void)
float s;
/* Generate scale factors */
- if (!sf_table[63])
+ if (!ff_atrac_sf_table[63])
for (i=0 ; i<64 ; i++)
- sf_table[i] = pow(2.0, (i - 15) / 3.0);
+ ff_atrac_sf_table[i] = pow(2.0, (i - 15) / 3.0);
/* Generate the QMF window. */
if (!qmf_window[47])