[FFmpeg-cvslog] nellymoserdec: use NELLY_BUF_LEN instead of 128

Justin Ruggles git at videolan.org
Mon Oct 3 01:17:03 CEST 2011


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Wed Sep 14 12:28:41 2011 -0400| [32b484464cf68ddc072ebd4ed29a8aed7a51070b] | committer: Justin Ruggles

nellymoserdec: use NELLY_BUF_LEN instead of 128

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=32b484464cf68ddc072ebd4ed29a8aed7a51070b
---

 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;



More information about the ffmpeg-cvslog mailing list