Browse Source

nellymoserdec: use NELLY_BUF_LEN instead of 128

tags/n0.9
Justin Ruggles 14 years ago
parent
commit
32b484464c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/nellymoserdec.c

+ 1
- 1
libavcodec/nellymoserdec.c View File

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


Loading…
Cancel
Save