changeset 5916:353fca09cb72 libavcodec

Make sine_window static. Acked by Benjamin Larsson
author alex
date Wed, 14 Nov 2007 15:21:42 +0000
parents 4528d63fbc8e
children 282860fe5844
files nellymoserdec.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nellymoserdec.c	Wed Nov 14 08:22:15 2007 +0000
+++ b/nellymoserdec.c	Wed Nov 14 15:21:42 2007 +0000
@@ -103,7 +103,7 @@
     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)