summaryrefslogtreecommitdiff
path: root/libavcodec/nellymoserdec.c
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2007-11-14 15:21:42 +0000
committerAlex Beregszaszi <alex@rtfs.hu>2007-11-14 15:21:42 +0000
commitb64fa5b42629e5872074f03db6f499c11b96e161 (patch)
tree10a3beef73f9130fa5a71b8ac7eb6a3a2597a50d /libavcodec/nellymoserdec.c
parentcd15bbc9731550825a96bc79d93fea4f0f2e58e7 (diff)
Make sine_window static. Acked by Benjamin Larsson
Originally committed as revision 11022 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/nellymoserdec.c')
-rw-r--r--libavcodec/nellymoserdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c
index 7679f25c2c..80b420cec2 100644
--- a/libavcodec/nellymoserdec.c
+++ b/libavcodec/nellymoserdec.c
@@ -103,7 +103,7 @@ typedef struct NellyMoserDecodeContext {
DECLARE_ALIGNED_16(float,imdct_out[NELLY_BUF_LEN * 2]);
} NellyMoserDecodeContext;
-DECLARE_ALIGNED_16(float,sine_window[128]);
+static DECLARE_ALIGNED_16(float,sine_window[128]);
static inline int signed_shift(int i, int shift) {
if (shift > 0)