summaryrefslogtreecommitdiff
path: root/libavcodec/aac.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r--libavcodec/aac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h
index dab85b990d..d2f81f2ecb 100644
--- a/libavcodec/aac.h
+++ b/libavcodec/aac.h
@@ -163,7 +163,6 @@ typedef struct {
int predictor_initialized;
int predictor_reset_group;
uint8_t prediction_used[41];
- PredictorState predictor_state[MAX_PREDICTORS];
} IndividualChannelStream;
/**
@@ -226,6 +225,7 @@ typedef struct {
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;
/**