diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-01-25 00:36:09 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-26 03:43:29 +0100 |
commit | f7e5cc0a2cc736af8543c256fb761d26f3249d9e (patch) | |
tree | e7ea5e2a6b53de242f6ac5488e8ab5cf74cc30ca /libavcodec/atrac.c | |
parent | e243ed656c445e504d2e1fa83ad28c7f61209b8b (diff) | |
download | ffmpeg-f7e5cc0a2cc736af8543c256fb761d26f3249d9e.tar.gz |
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)
Diffstat (limited to 'libavcodec/atrac.c')
-rw-r--r-- | libavcodec/atrac.c | 2 |
1 files changed, 1 insertions, 1 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, |