summaryrefslogtreecommitdiff
path: root/libavcodec/nellymoserdec.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-09-14 12:28:41 -0400
committerJustin Ruggles <justin.ruggles@gmail.com>2011-10-02 10:19:04 -0400
commit32b484464cf68ddc072ebd4ed29a8aed7a51070b (patch)
tree7aeed2b88947b4f831f48ed2bf7439c4db6529b7 /libavcodec/nellymoserdec.c
parentded0800d44662391995a3c00b6c136fb781fee6b (diff)
nellymoserdec: use NELLY_BUF_LEN instead of 128
Diffstat (limited to 'libavcodec/nellymoserdec.c')
-rw-r--r--libavcodec/nellymoserdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c
index bd3ab99166..d7d1abab25 100644
--- a/libavcodec/nellymoserdec.c
+++ b/libavcodec/nellymoserdec.c
@@ -48,7 +48,7 @@
typedef struct NellyMoserDecodeContext {
AVCodecContext* avctx;
DECLARE_ALIGNED(32, float, float_buf)[NELLY_SAMPLES];
- float state[128];
+ float state[NELLY_BUF_LEN];
AVLFG random_state;
GetBitContext gb;
float scale_bias;