[FFmpeg-soc] [soc]: r3543 - nellyenc/nellymoserenc.c
bwolowiec
subversion at mplayerhq.hu
Fri Aug 22 23:43:30 CEST 2008
Author: bwolowiec
Date: Fri Aug 22 23:43:30 2008
New Revision: 3543
Log:
Correct float_buf size
Modified:
nellyenc/nellymoserenc.c
Modified: nellyenc/nellymoserenc.c
==============================================================================
--- nellyenc/nellymoserenc.c (original)
+++ nellyenc/nellymoserenc.c Fri Aug 22 23:43:30 2008
@@ -90,7 +90,7 @@ static inline int put_bits2_count(PutBit
typedef struct NellyMoserEncodeContext {
AVCodecContext* avctx;
- DECLARE_ALIGNED_16(float,float_buf[2*NELLY_SAMPLES]); // NELLY_SAMPLES
+ DECLARE_ALIGNED_16(float,float_buf[3*NELLY_BUF_LEN]);
float buf[1024*64]; //FIXME (use any better solution)
int bufsize;
More information about the FFmpeg-soc
mailing list