Commit 32b48446 authored by Justin Ruggles's avatar Justin Ruggles

nellymoserdec: use NELLY_BUF_LEN instead of 128

parent ded0800d
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment