Browse Source

Make sine_window static. Acked by Benjamin Larsson

Originally committed as revision 11022 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Alex Beregszaszi 17 years ago
parent
commit
b64fa5b426
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/nellymoserdec.c

+ 1
- 1
libavcodec/nellymoserdec.c 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)


Loading…
Cancel
Save