[FFmpeg-soc] [soc]: r3643 - nellyenc/nellymoserenc.c
bwolowiec
subversion at mplayerhq.hu
Wed Aug 27 12:05:33 CEST 2008
Author: bwolowiec
Date: Wed Aug 27 12:05:33 2008
New Revision: 3643
Log:
cosmetic. reorder variables in NellyMoserEncodeContext
Modified:
nellyenc/nellymoserenc.c
Modified: nellyenc/nellymoserenc.c
==============================================================================
--- nellyenc/nellymoserenc.c (original)
+++ nellyenc/nellymoserenc.c Wed Aug 27 12:05:33 2008
@@ -48,17 +48,14 @@
typedef struct NellyMoserEncodeContext {
AVCodecContext* avctx;
int last_frame;
- int bits[NELLY_BUF_LEN];
-
- DECLARE_ALIGNED_16(float,buf[2*NELLY_SAMPLES]);
int bufsize;
-
+ int bits[NELLY_BUF_LEN];
+ float pows[NELLY_FILL_LEN];
DSPContext dsp;
MDCTContext mdct_ctx;
- float pows[NELLY_FILL_LEN];
- DECLARE_ALIGNED_16(float,mdct_out[NELLY_SAMPLES]);
-
LPFilterContext lp;
+ DECLARE_ALIGNED_16(float,mdct_out[NELLY_SAMPLES]);
+ DECLARE_ALIGNED_16(float,buf[2*NELLY_SAMPLES]);
} NellyMoserEncodeContext;
static DECLARE_ALIGNED_16(float,sine_window[NELLY_SAMPLES]);
More information about the FFmpeg-soc
mailing list