Module: libav Branch: master Commit: 32b484464cf68ddc072ebd4ed29a8aed7a51070b
Author: Justin Ruggles <[email protected]> Committer: Justin Ruggles <[email protected]> Date: Wed Sep 14 12:28:41 2011 -0400 nellymoserdec: use NELLY_BUF_LEN instead of 128 --- libavcodec/nellymoserdec.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index bd3ab99..d7d1aba 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; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
