From b64fa5b42629e5872074f03db6f499c11b96e161 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi <alex@rtfs.hu> Date: Wed, 14 Nov 2007 15:21:42 +0000 Subject: [PATCH] Make sine_window static. Acked by Benjamin Larsson Originally committed as revision 11022 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/nellymoserdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index 7679f25c2cd..80b420cec23 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) -- GitLab