diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2008-08-14 04:41:02 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2008-08-14 04:41:02 +0000 |
commit | 75ac287517088afb085fd9ae740b87764b6ff90f (patch) | |
tree | 281f0c2d4564bad84e5aa5eaf668dd93d62e2238 | |
parent | ebceaa1cd5f17e7fea0ac87dde0f45fd360ff457 (diff) | |
download | ffmpeg-75ac287517088afb085fd9ae740b87764b6ff90f.tar.gz |
missing prototype
Originally committed as revision 14750 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/fft_3dn2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/i386/fft_3dn2.c b/libavcodec/i386/fft_3dn2.c index b380572595..f474f6efa9 100644 --- a/libavcodec/i386/fft_3dn2.c +++ b/libavcodec/i386/fft_3dn2.c @@ -39,6 +39,7 @@ DECLARE_ALIGNED_8(static const int, m1m1[2]) = { 1<<31, 1<<31 }; #endif void ff_fft_dispatch_3dn2(FFTComplex *z, int nbits); +void ff_fft_dispatch_interleave_3dn2(FFTComplex *z, int nbits); void ff_fft_calc_3dn2(FFTContext *s, FFTComplex *z) { |