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]);
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to