diff aac.h @ 8413:6f40f7d77263 libavcodec

AAC: Fix AAC prediction when used in conjunction with the CPE Patch by Alex Converse (alex converse gmail com)
author superdump
date Sun, 21 Dec 2008 05:28:14 +0000
parents e06b2b848b74
children e9d9d946f213
line wrap: on
line diff
--- a/aac.h	Sun Dec 21 05:08:32 2008 +0000
+++ b/aac.h	Sun Dec 21 05:28:14 2008 +0000
@@ -163,7 +163,6 @@
     int predictor_initialized;
     int predictor_reset_group;
     uint8_t prediction_used[41];
-    PredictorState predictor_state[MAX_PREDICTORS];
 } IndividualChannelStream;
 
 /**
@@ -226,6 +225,7 @@
     DECLARE_ALIGNED_16(float, coeffs[1024]);  ///< coefficients for IMDCT
     DECLARE_ALIGNED_16(float, saved[512]);    ///< overlap
     DECLARE_ALIGNED_16(float, ret[1024]);     ///< PCM output
+    PredictorState predictor_state[MAX_PREDICTORS];
 } SingleChannelElement;
 
 /**