[FFmpeg-cvslog] r11022 - trunk/libavcodec/nellymoserdec.c

alex subversion
Wed Nov 14 16:21:42 CET 2007


Author: alex
Date: Wed Nov 14 16:21:42 2007
New Revision: 11022

Log:
Make sine_window static. Acked by Benjamin Larsson

Modified:
   trunk/libavcodec/nellymoserdec.c

Modified: trunk/libavcodec/nellymoserdec.c
==============================================================================
--- trunk/libavcodec/nellymoserdec.c	(original)
+++ trunk/libavcodec/nellymoserdec.c	Wed Nov 14 16:21:42 2007
@@ -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)




More information about the ffmpeg-cvslog mailing list