diff options
author | Måns Rullgård <mans@mansr.com> | 2009-09-20 17:30:20 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-09-20 17:30:20 +0000 |
commit | 01b2214758ce2bc664bb4468f11ac0f041a337c1 (patch) | |
tree | 521c649aa1fb7c812e6db5191737cdb7ac413e7b /libavcodec/atrac3.c | |
parent | ec129499b85e3d33a750d49862a73c2d19f61490 (diff) | |
download | ffmpeg-01b2214758ce2bc664bb4468f11ac0f041a337c1.tar.gz |
Merge FFTContext and MDCTContext
Originally committed as revision 19931 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/atrac3.c')
-rw-r--r-- | libavcodec/atrac3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c index 2b956ec428..84bfe136bd 100644 --- a/libavcodec/atrac3.c +++ b/libavcodec/atrac3.c @@ -123,7 +123,7 @@ static DECLARE_ALIGNED_16(float,mdct_window[512]); static VLC spectral_coeff_tab[7]; static float gain_tab1[16]; static float gain_tab2[31]; -static MDCTContext mdct_ctx; +static FFTContext mdct_ctx; static DSPContext dsp; |