Mercurial > libavcodec.hg
diff aacenc.h @ 10199:38ab367d4231 libavcodec
Merge FFTContext and MDCTContext
| author | mru |
|---|---|
| date | Sun, 20 Sep 2009 17:30:20 +0000 |
| parents | 7f42ae22c351 |
| children | 34a65026fa06 |
line wrap: on
line diff
--- a/aacenc.h Sun Sep 20 17:18:59 2009 +0000 +++ b/aacenc.h Sun Sep 20 17:30:20 2009 +0000 @@ -49,8 +49,8 @@ */ typedef struct AACEncContext { PutBitContext pb; - MDCTContext mdct1024; ///< long (1024 samples) frame transform context - MDCTContext mdct128; ///< short (128 samples) frame transform context + FFTContext mdct1024; ///< long (1024 samples) frame transform context + FFTContext mdct128; ///< short (128 samples) frame transform context DSPContext dsp; DECLARE_ALIGNED_16(FFTSample, output[2048]); ///< temporary buffer for MDCT input coefficients int16_t* samples; ///< saved preprocessed input
