diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-01-30 20:15:48 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2009-01-30 20:15:48 +0000 |
commit | 686025404486c751c808aa7441da19cacef637b4 (patch) | |
tree | b07c0ab6665aaf6c6c8d081c65a1b4d8832b70a4 /libavcodec/fft.c | |
parent | 9d52d54df35d43b149ed1d1607fc95948df70f8c (diff) | |
download | ffmpeg-686025404486c751c808aa7441da19cacef637b4.tar.gz |
Add the rdft family of transforms (fft/ifft of an all real sequence) to dsputil.
Originally committed as revision 16864 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft.c')
-rw-r--r-- | libavcodec/fft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fft.c b/libavcodec/fft.c index db79fc90e9..47ecdb48de 100644 --- a/libavcodec/fft.c +++ b/libavcodec/fft.c @@ -42,7 +42,7 @@ DECLARE_ALIGNED_16(FFTSample, ff_cos_8192[4096]); DECLARE_ALIGNED_16(FFTSample, ff_cos_16384[8192]); DECLARE_ALIGNED_16(FFTSample, ff_cos_32768[16384]); DECLARE_ALIGNED_16(FFTSample, ff_cos_65536[32768]); -static FFTSample *ff_cos_tabs[] = { +FFTSample *ff_cos_tabs[] = { ff_cos_16, ff_cos_32, ff_cos_64, ff_cos_128, ff_cos_256, ff_cos_512, ff_cos_1024, ff_cos_2048, ff_cos_4096, ff_cos_8192, ff_cos_16384, ff_cos_32768, ff_cos_65536, }; |