1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-25 10:51:49 +02:00

Make sine_window static. Acked by Benjamin Larsson

Originally committed as revision 11022 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Alex Beregszaszi 2007-11-14 15:21:42 +00:00
parent cd15bbc973
commit b64fa5b426

View File

@ -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)